diff options
87 files changed, 13730 insertions, 15195 deletions
diff --git a/client/package.json b/client/package.json index ffe7df4cd..afa0efe13 100644 --- a/client/package.json +++ b/client/package.json | |||
@@ -128,7 +128,6 @@ | |||
128 | "typescript": "~4.3.4", | 128 | "typescript": "~4.3.4", |
129 | "video.js": "^7", | 129 | "video.js": "^7", |
130 | "videojs-contextmenu-pt": "^5.4.1", | 130 | "videojs-contextmenu-pt": "^5.4.1", |
131 | "videojs-contrib-quality-levels": "^2.0.9", | ||
132 | "videojs-dock": "^2.0.2", | 131 | "videojs-dock": "^2.0.2", |
133 | "videojs-hotkeys": "^0.2.27", | 132 | "videojs-hotkeys": "^0.2.27", |
134 | "videostream": "~3.2.1", | 133 | "videostream": "~3.2.1", |
diff --git a/client/src/app/core/routing/menu-guard.service.ts b/client/src/app/core/routing/menu-guard.service.ts index 8c5bbfde9..58ad31cf4 100644 --- a/client/src/app/core/routing/menu-guard.service.ts +++ b/client/src/app/core/routing/menu-guard.service.ts | |||
@@ -4,11 +4,10 @@ import { MenuService } from '../menu' | |||
4 | import { ScreenService } from '../wrappers' | 4 | import { ScreenService } from '../wrappers' |
5 | 5 | ||
6 | abstract class MenuGuard implements CanActivate, CanDeactivate<any> { | 6 | abstract class MenuGuard implements CanActivate, CanDeactivate<any> { |
7 | display = true | ||
8 | canDeactivate = this.canActivate | 7 | canDeactivate = this.canActivate |
9 | 8 | ||
10 | constructor (protected menu: MenuService, protected screen: ScreenService, display: boolean) { | 9 | constructor (protected menu: MenuService, protected screen: ScreenService, protected display: boolean) { |
11 | this.display = display | 10 | |
12 | } | 11 | } |
13 | 12 | ||
14 | canActivate (): boolean { | 13 | canActivate (): boolean { |
diff --git a/client/src/app/helpers/utils/url.ts b/client/src/app/helpers/utils/url.ts index 82d9cc11b..b3cded8f4 100644 --- a/client/src/app/helpers/utils/url.ts +++ b/client/src/app/helpers/utils/url.ts | |||
@@ -1,19 +1,5 @@ | |||
1 | import { environment } from '../../../environments/environment' | 1 | import { environment } from '../../../environments/environment' |
2 | 2 | ||
3 | // Thanks: https://stackoverflow.com/questions/901115/how-can-i-get-query-string-values-in-javascript | ||
4 | function getParameterByName (name: string, url: string) { | ||
5 | if (!url) url = window.location.href | ||
6 | name = name.replace(/[[\]]/g, '\\$&') | ||
7 | |||
8 | const regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)') | ||
9 | const results = regex.exec(url) | ||
10 | |||
11 | if (!results) return null | ||
12 | if (!results[2]) return '' | ||
13 | |||
14 | return decodeURIComponent(results[2].replace(/\+/g, ' ')) | ||
15 | } | ||
16 | |||
17 | function getAbsoluteAPIUrl () { | 3 | function getAbsoluteAPIUrl () { |
18 | let absoluteAPIUrl = environment.hmr === true | 4 | let absoluteAPIUrl = environment.hmr === true |
19 | ? 'http://localhost:9000' | 5 | ? 'http://localhost:9000' |
@@ -64,7 +50,6 @@ function objectToFormData (obj: any, form?: FormData, namespace?: string) { | |||
64 | } | 50 | } |
65 | 51 | ||
66 | export { | 52 | export { |
67 | getParameterByName, | ||
68 | objectToFormData, | 53 | objectToFormData, |
69 | getAbsoluteAPIUrl, | 54 | getAbsoluteAPIUrl, |
70 | getAbsoluteEmbedUrl | 55 | getAbsoluteEmbedUrl |
diff --git a/client/src/app/shared/shared-forms/markdown-textarea.component.ts b/client/src/app/shared/shared-forms/markdown-textarea.component.ts index 8f51d47df..80ca6690f 100644 --- a/client/src/app/shared/shared-forms/markdown-textarea.component.ts +++ b/client/src/app/shared/shared-forms/markdown-textarea.component.ts | |||
@@ -132,8 +132,6 @@ export class MarkdownTextareaComponent implements ControlValueAccessor, OnInit { | |||
132 | const result = await this.customMarkdownRenderer(text) | 132 | const result = await this.customMarkdownRenderer(text) |
133 | 133 | ||
134 | if (result instanceof HTMLElement) { | 134 | if (result instanceof HTMLElement) { |
135 | html = '' | ||
136 | |||
137 | const wrapperElement = this.previewElement.nativeElement as HTMLElement | 135 | const wrapperElement = this.previewElement.nativeElement as HTMLElement |
138 | wrapperElement.innerHTML = '' | 136 | wrapperElement.innerHTML = '' |
139 | wrapperElement.appendChild(result) | 137 | wrapperElement.appendChild(result) |
diff --git a/client/src/assets/player/p2p-media-loader/hls-plugin.ts b/client/src/assets/player/p2p-media-loader/hls-plugin.ts index a1b07aea6..17b9aba97 100644 --- a/client/src/assets/player/p2p-media-loader/hls-plugin.ts +++ b/client/src/assets/player/p2p-media-loader/hls-plugin.ts | |||
@@ -1,9 +1,9 @@ | |||
1 | // Thanks https://github.com/streamroot/videojs-hlsjs-plugin | 1 | // Thanks https://github.com/streamroot/videojs-hlsjs-plugin |
2 | // We duplicated this plugin to choose the hls.js version we want, because streamroot only provide a bundled file | 2 | // We duplicated this plugin to choose the hls.js version we want, because streamroot only provide a bundled file |
3 | 3 | ||
4 | import Hlsjs, { ErrorData, HlsConfig, Level, ManifestLoadedData } from 'hls.js' | 4 | import Hlsjs, { ErrorData, HlsConfig, Level, LevelSwitchingData, ManifestParsedData } from 'hls.js' |
5 | import videojs from 'video.js' | 5 | import videojs from 'video.js' |
6 | import { HlsjsConfigHandlerOptions, QualityLevelRepresentation, QualityLevels, VideoJSTechHLS } from '../peertube-videojs-typings' | 6 | import { HlsjsConfigHandlerOptions, PeerTubeResolution, VideoJSTechHLS } from '../peertube-videojs-typings' |
7 | 7 | ||
8 | type ErrorCounts = { | 8 | type ErrorCounts = { |
9 | [ type: string ]: number | 9 | [ type: string ]: number |
@@ -102,15 +102,10 @@ class Html5Hlsjs { | |||
102 | private dvrDuration: number = null | 102 | private dvrDuration: number = null |
103 | private edgeMargin: number = null | 103 | private edgeMargin: number = null |
104 | 104 | ||
105 | private handlers: { [ id in 'play' | 'playing' | 'textTracksChange' | 'audioTracksChange' ]: EventListener } = { | 105 | private handlers: { [ id in 'play' ]: EventListener } = { |
106 | play: null, | 106 | play: null |
107 | playing: null, | ||
108 | textTracksChange: null, | ||
109 | audioTracksChange: null | ||
110 | } | 107 | } |
111 | 108 | ||
112 | private uiTextTrackHandled = false | ||
113 | |||
114 | constructor (vjs: typeof videojs, source: videojs.Tech.SourceObject, tech: videojs.Tech) { | 109 | constructor (vjs: typeof videojs, source: videojs.Tech.SourceObject, tech: videojs.Tech) { |
115 | this.vjs = vjs | 110 | this.vjs = vjs |
116 | this.source = source | 111 | this.source = source |
@@ -177,10 +172,6 @@ class Html5Hlsjs { | |||
177 | // See comment for `initialize` method. | 172 | // See comment for `initialize` method. |
178 | dispose () { | 173 | dispose () { |
179 | this.videoElement.removeEventListener('play', this.handlers.play) | 174 | this.videoElement.removeEventListener('play', this.handlers.play) |
180 | this.videoElement.removeEventListener('playing', this.handlers.playing) | ||
181 | |||
182 | this.player.textTracks().removeEventListener('change', this.handlers.textTracksChange) | ||
183 | this.uiTextTrackHandled = false | ||
184 | 175 | ||
185 | this.hls.destroy() | 176 | this.hls.destroy() |
186 | } | 177 | } |
@@ -281,11 +272,7 @@ class Html5Hlsjs { | |||
281 | } | 272 | } |
282 | } | 273 | } |
283 | 274 | ||
284 | private switchQuality (qualityId: number) { | 275 | private buildLevelLabel (level: Level) { |
285 | this.hls.currentLevel = qualityId | ||
286 | } | ||
287 | |||
288 | private _levelLabel (level: Level) { | ||
289 | if (this.player.srOptions_.levelLabelHandler) { | 276 | if (this.player.srOptions_.levelLabelHandler) { |
290 | return this.player.srOptions_.levelLabelHandler(level as any) | 277 | return this.player.srOptions_.levelLabelHandler(level as any) |
291 | } | 278 | } |
@@ -294,167 +281,37 @@ class Html5Hlsjs { | |||
294 | if (level.width) return Math.round(level.width * 9 / 16) + 'p' | 281 | if (level.width) return Math.round(level.width * 9 / 16) + 'p' |
295 | if (level.bitrate) return (level.bitrate / 1000) + 'kbps' | 282 | if (level.bitrate) return (level.bitrate / 1000) + 'kbps' |
296 | 283 | ||
297 | return 0 | 284 | return '0' |
298 | } | ||
299 | |||
300 | private _relayQualityChange (qualityLevels: QualityLevels) { | ||
301 | // Determine if it is "Auto" (all tracks enabled) | ||
302 | let isAuto = true | ||
303 | |||
304 | for (let i = 0; i < qualityLevels.length; i++) { | ||
305 | if (!qualityLevels[i]._enabled) { | ||
306 | isAuto = false | ||
307 | break | ||
308 | } | ||
309 | } | ||
310 | |||
311 | // Interact with ME | ||
312 | if (isAuto) { | ||
313 | this.hls.currentLevel = -1 | ||
314 | return | ||
315 | } | ||
316 | |||
317 | // Find ID of highest enabled track | ||
318 | let selectedTrack: number | ||
319 | |||
320 | for (selectedTrack = qualityLevels.length - 1; selectedTrack >= 0; selectedTrack--) { | ||
321 | if (qualityLevels[selectedTrack]._enabled) { | ||
322 | break | ||
323 | } | ||
324 | } | ||
325 | |||
326 | this.hls.currentLevel = selectedTrack | ||
327 | } | ||
328 | |||
329 | private _handleQualityLevels () { | ||
330 | if (!this.metadata) return | ||
331 | |||
332 | const qualityLevels = this.player.qualityLevels?.() | ||
333 | if (!qualityLevels) return | ||
334 | |||
335 | for (let i = 0; i < this.metadata.levels.length; i++) { | ||
336 | const details = this.metadata.levels[i] | ||
337 | const representation: QualityLevelRepresentation = { | ||
338 | id: i, | ||
339 | width: details.width, | ||
340 | height: details.height, | ||
341 | bandwidth: details.bitrate, | ||
342 | bitrate: details.bitrate, | ||
343 | _enabled: true | ||
344 | } | ||
345 | |||
346 | const self = this | ||
347 | representation.enabled = function (this: QualityLevels, level: number, toggle?: boolean) { | ||
348 | // Brightcove switcher works TextTracks-style (enable tracks that it wants to ABR on) | ||
349 | if (typeof toggle === 'boolean') { | ||
350 | this[level]._enabled = toggle | ||
351 | self._relayQualityChange(this) | ||
352 | } | ||
353 | |||
354 | return this[level]._enabled | ||
355 | } | ||
356 | |||
357 | qualityLevels.addQualityLevel(representation) | ||
358 | } | ||
359 | } | 285 | } |
360 | 286 | ||
361 | private _notifyVideoQualities () { | 287 | private _notifyVideoQualities () { |
362 | if (!this.metadata) return | 288 | if (!this.metadata) return |
363 | const cleanTracklist = [] | ||
364 | 289 | ||
365 | if (this.metadata.levels.length > 1) { | 290 | const resolutions: PeerTubeResolution[] = [] |
366 | const autoLevel = { | ||
367 | id: -1, | ||
368 | label: 'auto', | ||
369 | selected: this.hls.manualLevel === -1 | ||
370 | } | ||
371 | cleanTracklist.push(autoLevel) | ||
372 | } | ||
373 | 291 | ||
374 | this.metadata.levels.forEach((level, index) => { | 292 | this.metadata.levels.forEach((level, index) => { |
375 | // Don't write in level (shared reference with Hls.js) | 293 | resolutions.push({ |
376 | const quality = { | ||
377 | id: index, | 294 | id: index, |
378 | selected: index === this.hls.manualLevel, | 295 | height: level.height, |
379 | label: this._levelLabel(level) | 296 | width: level.width, |
380 | } | 297 | bitrate: level.bitrate, |
381 | 298 | label: this.buildLevelLabel(level), | |
382 | cleanTracklist.push(quality) | 299 | selected: level.id === this.hls.manualLevel, |
300 | |||
301 | selectCallback: () => { | ||
302 | this.hls.currentLevel = index | ||
303 | } | ||
304 | }) | ||
383 | }) | 305 | }) |
384 | 306 | ||
385 | const payload = { | 307 | resolutions.push({ |
386 | qualityData: { video: cleanTracklist }, | 308 | id: -1, |
387 | qualitySwitchCallback: this.switchQuality.bind(this) | 309 | label: this.player.localize('Auto'), |
388 | } | 310 | selected: true, |
389 | 311 | selectCallback: () => this.hls.currentLevel = -1 | |
390 | this.tech.trigger('loadedqualitydata', payload) | 312 | }) |
391 | |||
392 | // Self-de-register so we don't raise the payload multiple times | ||
393 | this.videoElement.removeEventListener('playing', this.handlers.playing) | ||
394 | } | ||
395 | |||
396 | private _updateSelectedAudioTrack () { | ||
397 | const playerAudioTracks = this.tech.audioTracks() | ||
398 | for (let j = 0; j < playerAudioTracks.length; j++) { | ||
399 | // FIXME: typings | ||
400 | if ((playerAudioTracks[j] as any).enabled) { | ||
401 | this.hls.audioTrack = j | ||
402 | break | ||
403 | } | ||
404 | } | ||
405 | } | ||
406 | |||
407 | private _onAudioTracks () { | ||
408 | const hlsAudioTracks = this.hls.audioTracks | ||
409 | const playerAudioTracks = this.tech.audioTracks() | ||
410 | |||
411 | if (hlsAudioTracks.length > 1 && playerAudioTracks.length === 0) { | ||
412 | // Add Hls.js audio tracks if not added yet | ||
413 | for (let i = 0; i < hlsAudioTracks.length; i++) { | ||
414 | playerAudioTracks.addTrack(new this.vjs.AudioTrack({ | ||
415 | id: i.toString(), | ||
416 | kind: 'alternative', | ||
417 | label: hlsAudioTracks[i].name || hlsAudioTracks[i].lang, | ||
418 | language: hlsAudioTracks[i].lang, | ||
419 | enabled: i === this.hls.audioTrack | ||
420 | })) | ||
421 | } | ||
422 | |||
423 | // Handle audio track change event | ||
424 | this.handlers.audioTracksChange = this._updateSelectedAudioTrack.bind(this) | ||
425 | playerAudioTracks.addEventListener('change', this.handlers.audioTracksChange) | ||
426 | } | ||
427 | } | ||
428 | |||
429 | private _getTextTrackLabel (textTrack: TextTrack) { | ||
430 | // Label here is readable label and is optional (used in the UI so if it is there it should be different) | ||
431 | return textTrack.label ? textTrack.label : textTrack.language | ||
432 | } | ||
433 | |||
434 | private _isSameTextTrack (track1: TextTrack, track2: TextTrack) { | ||
435 | return this._getTextTrackLabel(track1) === this._getTextTrackLabel(track2) && | ||
436 | track1.kind === track2.kind | ||
437 | } | ||
438 | |||
439 | private _updateSelectedTextTrack () { | ||
440 | const playerTextTracks = this.player.textTracks() | ||
441 | let activeTrack: TextTrack = null | ||
442 | |||
443 | for (let j = 0; j < playerTextTracks.length; j++) { | ||
444 | if (playerTextTracks[j].mode === 'showing') { | ||
445 | activeTrack = playerTextTracks[j] | ||
446 | break | ||
447 | } | ||
448 | } | ||
449 | 313 | ||
450 | const hlsjsTracks = this.videoElement.textTracks | 314 | this.player.peertubeResolutions().add(resolutions) |
451 | for (let k = 0; k < hlsjsTracks.length; k++) { | ||
452 | if (hlsjsTracks[k].kind === 'subtitles' || hlsjsTracks[k].kind === 'captions') { | ||
453 | hlsjsTracks[k].mode = activeTrack && this._isSameTextTrack(hlsjsTracks[k], activeTrack) | ||
454 | ? 'showing' | ||
455 | : 'disabled' | ||
456 | } | ||
457 | } | ||
458 | } | 315 | } |
459 | 316 | ||
460 | private _startLoad () { | 317 | private _startLoad () { |
@@ -472,97 +329,10 @@ class Html5Hlsjs { | |||
472 | return result | 329 | return result |
473 | } | 330 | } |
474 | 331 | ||
475 | private _filterDisplayableTextTracks (textTracks: TextTrackList) { | 332 | private _onMetaData (_event: any, data: ManifestParsedData) { |
476 | const displayableTracks = [] | ||
477 | |||
478 | // Filter out tracks that is displayable (captions or subtitles) | ||
479 | for (let idx = 0; idx < textTracks.length; idx++) { | ||
480 | if (textTracks[idx].kind === 'subtitles' || textTracks[idx].kind === 'captions') { | ||
481 | displayableTracks.push(textTracks[idx]) | ||
482 | } | ||
483 | } | ||
484 | |||
485 | return displayableTracks | ||
486 | } | ||
487 | |||
488 | private _updateTextTrackList () { | ||
489 | const displayableTracks = this._filterDisplayableTextTracks(this.videoElement.textTracks) | ||
490 | const playerTextTracks = this.player.textTracks() | ||
491 | |||
492 | // Add stubs to make the caption switcher shows up | ||
493 | // Adding the Hls.js text track in will make us have double captions | ||
494 | for (let idx = 0; idx < displayableTracks.length; idx++) { | ||
495 | let isAdded = false | ||
496 | |||
497 | for (let jdx = 0; jdx < playerTextTracks.length; jdx++) { | ||
498 | if (this._isSameTextTrack(displayableTracks[idx], playerTextTracks[jdx])) { | ||
499 | isAdded = true | ||
500 | break | ||
501 | } | ||
502 | } | ||
503 | |||
504 | if (!isAdded) { | ||
505 | const hlsjsTextTrack = displayableTracks[idx] | ||
506 | this.player.addRemoteTextTrack({ | ||
507 | kind: hlsjsTextTrack.kind as videojs.TextTrack.Kind, | ||
508 | label: this._getTextTrackLabel(hlsjsTextTrack), | ||
509 | language: hlsjsTextTrack.language, | ||
510 | srclang: hlsjsTextTrack.language | ||
511 | }, false) | ||
512 | } | ||
513 | } | ||
514 | |||
515 | // Handle UI switching | ||
516 | this._updateSelectedTextTrack() | ||
517 | |||
518 | if (!this.uiTextTrackHandled) { | ||
519 | this.handlers.textTracksChange = this._updateSelectedTextTrack.bind(this) | ||
520 | playerTextTracks.addEventListener('change', this.handlers.textTracksChange) | ||
521 | |||
522 | this.uiTextTrackHandled = true | ||
523 | } | ||
524 | } | ||
525 | |||
526 | private _onMetaData (_event: any, data: ManifestLoadedData) { | ||
527 | // This could arrive before 'loadedqualitydata' handlers is registered, remember it so we can raise it later | 333 | // This could arrive before 'loadedqualitydata' handlers is registered, remember it so we can raise it later |
528 | this.metadata = data as any | 334 | this.metadata = data |
529 | this._handleQualityLevels() | 335 | this._notifyVideoQualities() |
530 | } | ||
531 | |||
532 | private _createCueHandler (captionConfig: any) { | ||
533 | return { | ||
534 | newCue: (track: any, startTime: number, endTime: number, captionScreen: { rows: any[] }) => { | ||
535 | let row: any | ||
536 | let cue: VTTCue | ||
537 | let text: string | ||
538 | const VTTCue = (window as any).VTTCue || (window as any).TextTrackCue | ||
539 | |||
540 | for (let r = 0; r < captionScreen.rows.length; r++) { | ||
541 | row = captionScreen.rows[r] | ||
542 | text = '' | ||
543 | |||
544 | if (!row.isEmpty()) { | ||
545 | for (let c = 0; c < row.chars.length; c++) { | ||
546 | text += row.chars[c].ucharj | ||
547 | } | ||
548 | |||
549 | cue = new VTTCue(startTime, endTime, text.trim()) | ||
550 | |||
551 | // typeof null === 'object' | ||
552 | if (captionConfig != null && typeof captionConfig === 'object') { | ||
553 | // Copy client overridden property into the cue object | ||
554 | const configKeys = Object.keys(captionConfig) | ||
555 | |||
556 | for (let k = 0; k < configKeys.length; k++) { | ||
557 | cue[configKeys[k]] = captionConfig[configKeys[k]] | ||
558 | } | ||
559 | } | ||
560 | track.addCue(cue) | ||
561 | if (endTime === startTime) track.addCue(new VTTCue(endTime + 5, '')) | ||
562 | } | ||
563 | } | ||
564 | } | ||
565 | } | ||
566 | } | 336 | } |
567 | 337 | ||
568 | private _initHlsjs () { | 338 | private _initHlsjs () { |
@@ -577,11 +347,6 @@ class Html5Hlsjs { | |||
577 | this.hlsjsConfig.autoStartLoad = false | 347 | this.hlsjsConfig.autoStartLoad = false |
578 | } | 348 | } |
579 | 349 | ||
580 | const captionConfig = srOptions_?.captionConfig || techOptions.captionConfig | ||
581 | if (captionConfig) { | ||
582 | this.hlsjsConfig.cueHandler = this._createCueHandler(captionConfig) | ||
583 | } | ||
584 | |||
585 | // If the user explicitly sets autoStartLoad to false, we're not going to enter the if block above | 350 | // If the user explicitly sets autoStartLoad to false, we're not going to enter the if block above |
586 | // That's why we have a separate if block here to set the 'play' listener | 351 | // That's why we have a separate if block here to set the 'play' listener |
587 | if (this.hlsjsConfig.autoStartLoad === false) { | 352 | if (this.hlsjsConfig.autoStartLoad === false) { |
@@ -589,17 +354,12 @@ class Html5Hlsjs { | |||
589 | this.videoElement.addEventListener('play', this.handlers.play) | 354 | this.videoElement.addEventListener('play', this.handlers.play) |
590 | } | 355 | } |
591 | 356 | ||
592 | // _notifyVideoQualities sometimes runs before the quality picker event handler is registered -> no video switcher | ||
593 | this.handlers.playing = this._notifyVideoQualities.bind(this) | ||
594 | this.videoElement.addEventListener('playing', this.handlers.playing) | ||
595 | |||
596 | this.hls = new Hlsjs(this.hlsjsConfig) | 357 | this.hls = new Hlsjs(this.hlsjsConfig) |
597 | 358 | ||
598 | this._executeHooksFor('beforeinitialize') | 359 | this._executeHooksFor('beforeinitialize') |
599 | 360 | ||
600 | this.hls.on(Hlsjs.Events.ERROR, (event, data) => this._onError(event, data)) | 361 | this.hls.on(Hlsjs.Events.ERROR, (event, data) => this._onError(event, data)) |
601 | this.hls.on(Hlsjs.Events.AUDIO_TRACKS_UPDATED, () => this._onAudioTracks()) | 362 | this.hls.on(Hlsjs.Events.MANIFEST_PARSED, (event, data) => this._onMetaData(event, data)) |
602 | this.hls.on(Hlsjs.Events.MANIFEST_PARSED, (event, data) => this._onMetaData(event, data as any)) // FIXME: typings | ||
603 | this.hls.on(Hlsjs.Events.LEVEL_LOADED, (event, data) => { | 363 | this.hls.on(Hlsjs.Events.LEVEL_LOADED, (event, data) => { |
604 | // The DVR plugin will auto seek to "live edge" on start up | 364 | // The DVR plugin will auto seek to "live edge" on start up |
605 | if (this.hlsjsConfig.liveSyncDuration) { | 365 | if (this.hlsjsConfig.liveSyncDuration) { |
@@ -612,12 +372,25 @@ class Html5Hlsjs { | |||
612 | this.dvrDuration = data.details.totalduration | 372 | this.dvrDuration = data.details.totalduration |
613 | this._duration = this.isLive ? Infinity : data.details.totalduration | 373 | this._duration = this.isLive ? Infinity : data.details.totalduration |
614 | }) | 374 | }) |
375 | |||
615 | this.hls.once(Hlsjs.Events.FRAG_LOADED, () => { | 376 | this.hls.once(Hlsjs.Events.FRAG_LOADED, () => { |
616 | // Emit custom 'loadedmetadata' event for parity with `videojs-contrib-hls` | 377 | // Emit custom 'loadedmetadata' event for parity with `videojs-contrib-hls` |
617 | // Ref: https://github.com/videojs/videojs-contrib-hls#loadedmetadata | 378 | // Ref: https://github.com/videojs/videojs-contrib-hls#loadedmetadata |
618 | this.tech.trigger('loadedmetadata') | 379 | this.tech.trigger('loadedmetadata') |
619 | }) | 380 | }) |
620 | 381 | ||
382 | this.hls.on(Hlsjs.Events.LEVEL_SWITCHING, (_e, data: LevelSwitchingData) => { | ||
383 | const resolutionId = this.hls.autoLevelEnabled | ||
384 | ? -1 | ||
385 | : data.level | ||
386 | |||
387 | const autoResolutionChosenId = this.hls.autoLevelEnabled | ||
388 | ? data.level | ||
389 | : -1 | ||
390 | |||
391 | this.player.peertubeResolutions().select({ id: resolutionId, autoResolutionChosenId, byEngine: true }) | ||
392 | }) | ||
393 | |||
621 | this.hls.attachMedia(this.videoElement) | 394 | this.hls.attachMedia(this.videoElement) |
622 | 395 | ||
623 | this.hls.loadSource(this.source.src) | 396 | this.hls.loadSource(this.source.src) |
diff --git a/client/src/assets/player/p2p-media-loader/p2p-media-loader-plugin.ts b/client/src/assets/player/p2p-media-loader/p2p-media-loader-plugin.ts index acd40636e..d917fda03 100644 --- a/client/src/assets/player/p2p-media-loader/p2p-media-loader-plugin.ts +++ b/client/src/assets/player/p2p-media-loader/p2p-media-loader-plugin.ts | |||
@@ -116,14 +116,6 @@ class P2pMediaLoaderPlugin extends Plugin { | |||
116 | const options = this.player.tech(true).options_ as any | 116 | const options = this.player.tech(true).options_ as any |
117 | this.p2pEngine = options.hlsjsConfig.loader.getEngine() | 117 | this.p2pEngine = options.hlsjsConfig.loader.getEngine() |
118 | 118 | ||
119 | this.hlsjs.on(Hlsjs.Events.LEVEL_SWITCHING, (_: any, data: any) => { | ||
120 | this.trigger('resolutionChange', { auto: this.hlsjs.autoLevelEnabled, resolutionId: data.height }) | ||
121 | }) | ||
122 | |||
123 | this.hlsjs.on(Hlsjs.Events.MANIFEST_LOADED, (_: any, data: any) => { | ||
124 | this.trigger('resolutionsLoaded') | ||
125 | }) | ||
126 | |||
127 | this.p2pEngine.on(Events.SegmentError, (segment: Segment, err) => { | 119 | this.p2pEngine.on(Events.SegmentError, (segment: Segment, err) => { |
128 | console.error('Segment error.', segment, err) | 120 | console.error('Segment error.', segment, err) |
129 | 121 | ||
diff --git a/client/src/assets/player/peertube-player-manager.ts b/client/src/assets/player/peertube-player-manager.ts index f3c21fc4c..230d6298b 100644 --- a/client/src/assets/player/peertube-player-manager.ts +++ b/client/src/assets/player/peertube-player-manager.ts | |||
@@ -1,13 +1,13 @@ | |||
1 | import 'videojs-hotkeys/videojs.hotkeys' | 1 | import 'videojs-hotkeys/videojs.hotkeys' |
2 | import 'videojs-dock' | 2 | import 'videojs-dock' |
3 | import 'videojs-contextmenu-pt' | 3 | import 'videojs-contextmenu-pt' |
4 | import 'videojs-contrib-quality-levels' | ||
5 | import './upnext/end-card' | 4 | import './upnext/end-card' |
6 | import './upnext/upnext-plugin' | 5 | import './upnext/upnext-plugin' |
7 | import './stats/stats-card' | 6 | import './stats/stats-card' |
8 | import './stats/stats-plugin' | 7 | import './stats/stats-plugin' |
9 | import './bezels/bezels-plugin' | 8 | import './bezels/bezels-plugin' |
10 | import './peertube-plugin' | 9 | import './peertube-plugin' |
10 | import './peertube-resolutions-plugin' | ||
11 | import './videojs-components/next-previous-video-button' | 11 | import './videojs-components/next-previous-video-button' |
12 | import './videojs-components/p2p-info-button' | 12 | import './videojs-components/p2p-info-button' |
13 | import './videojs-components/peertube-link-button' | 13 | import './videojs-components/peertube-link-button' |
diff --git a/client/src/assets/player/peertube-plugin.ts b/client/src/assets/player/peertube-plugin.ts index b4841b235..9b4dc9bd5 100644 --- a/client/src/assets/player/peertube-plugin.ts +++ b/client/src/assets/player/peertube-plugin.ts | |||
@@ -1,4 +1,3 @@ | |||
1 | import './videojs-components/settings-menu-button' | ||
2 | import videojs from 'video.js' | 1 | import videojs from 'video.js' |
3 | import { timeToInt } from '@shared/core-utils' | 2 | import { timeToInt } from '@shared/core-utils' |
4 | import { | 3 | import { |
@@ -10,7 +9,7 @@ import { | |||
10 | saveVideoWatchHistory, | 9 | saveVideoWatchHistory, |
11 | saveVolumeInStore | 10 | saveVolumeInStore |
12 | } from './peertube-player-local-storage' | 11 | } from './peertube-player-local-storage' |
13 | import { PeerTubePluginOptions, ResolutionUpdateData, UserWatching, VideoJSCaption } from './peertube-videojs-typings' | 12 | import { PeerTubePluginOptions, UserWatching, VideoJSCaption } from './peertube-videojs-typings' |
14 | import { isMobile } from './utils' | 13 | import { isMobile } from './utils' |
15 | 14 | ||
16 | const Plugin = videojs.getPlugin('plugin') | 15 | const Plugin = videojs.getPlugin('plugin') |
@@ -27,7 +26,6 @@ class PeerTubePlugin extends Plugin { | |||
27 | 26 | ||
28 | private videoViewInterval: any | 27 | private videoViewInterval: any |
29 | private userWatchingVideoInterval: any | 28 | private userWatchingVideoInterval: any |
30 | private lastResolutionChange: ResolutionUpdateData | ||
31 | 29 | ||
32 | private isLive: boolean | 30 | private isLive: boolean |
33 | 31 | ||
@@ -54,22 +52,6 @@ class PeerTubePlugin extends Plugin { | |||
54 | this.player.ready(() => { | 52 | this.player.ready(() => { |
55 | const playerOptions = this.player.options_ | 53 | const playerOptions = this.player.options_ |
56 | 54 | ||
57 | if (options.mode === 'webtorrent') { | ||
58 | this.player.webtorrent().on('resolutionChange', (_: any, d: any) => this.handleResolutionChange(d)) | ||
59 | this.player.webtorrent().on('autoResolutionChange', (_: any, d: any) => this.trigger('autoResolutionChange', d)) | ||
60 | } | ||
61 | |||
62 | if (options.mode === 'p2p-media-loader') { | ||
63 | this.player.p2pMediaLoader().on('resolutionChange', (_: any, d: any) => this.handleResolutionChange(d)) | ||
64 | } | ||
65 | |||
66 | this.player.tech(true).on('loadedqualitydata', () => { | ||
67 | setTimeout(() => { | ||
68 | // Replay a resolution change, now we loaded all quality data | ||
69 | if (this.lastResolutionChange) this.handleResolutionChange(this.lastResolutionChange) | ||
70 | }, 0) | ||
71 | }) | ||
72 | |||
73 | const volume = getStoredVolume() | 55 | const volume = getStoredVolume() |
74 | if (volume !== undefined) this.player.volume(volume) | 56 | if (volume !== undefined) this.player.volume(volume) |
75 | 57 | ||
@@ -97,7 +79,7 @@ class PeerTubePlugin extends Plugin { | |||
97 | }) | 79 | }) |
98 | } | 80 | } |
99 | 81 | ||
100 | this.player.textTracks().on('change', () => { | 82 | this.player.textTracks().addEventListener('change', () => { |
101 | const showing = this.player.textTracks().tracks_.find(t => { | 83 | const showing = this.player.textTracks().tracks_.find(t => { |
102 | return t.kind === 'captions' && t.mode === 'showing' | 84 | return t.kind === 'captions' && t.mode === 'showing' |
103 | }) | 85 | }) |
@@ -216,22 +198,6 @@ class PeerTubePlugin extends Plugin { | |||
216 | return fetch(url, { method: 'PUT', body, headers }) | 198 | return fetch(url, { method: 'PUT', body, headers }) |
217 | } | 199 | } |
218 | 200 | ||
219 | private handleResolutionChange (data: ResolutionUpdateData) { | ||
220 | this.lastResolutionChange = data | ||
221 | |||
222 | const qualityLevels = this.player.qualityLevels() | ||
223 | |||
224 | for (let i = 0; i < qualityLevels.length; i++) { | ||
225 | if (qualityLevels[i].height === data.resolutionId) { | ||
226 | data.id = qualityLevels[i].id | ||
227 | break | ||
228 | } | ||
229 | } | ||
230 | |||
231 | console.log('Resolution changed.', data) | ||
232 | this.trigger('resolutionChange', data) | ||
233 | } | ||
234 | |||
235 | private listenControlBarMouse () { | 201 | private listenControlBarMouse () { |
236 | this.player.controlBar.on('mouseenter', () => { | 202 | this.player.controlBar.on('mouseenter', () => { |
237 | this.mouseInControlBar = true | 203 | this.mouseInControlBar = true |
diff --git a/client/src/assets/player/peertube-resolutions-plugin.ts b/client/src/assets/player/peertube-resolutions-plugin.ts new file mode 100644 index 000000000..cc36f18f3 --- /dev/null +++ b/client/src/assets/player/peertube-resolutions-plugin.ts | |||
@@ -0,0 +1,88 @@ | |||
1 | import videojs from 'video.js' | ||
2 | import { PeerTubeResolution } from './peertube-videojs-typings' | ||
3 | |||
4 | const Plugin = videojs.getPlugin('plugin') | ||
5 | |||
6 | class PeerTubeResolutionsPlugin extends Plugin { | ||
7 | private currentSelection: PeerTubeResolution | ||
8 | private resolutions: PeerTubeResolution[] = [] | ||
9 | |||
10 | private autoResolutionChosenId: number | ||
11 | private autoResolutionEnabled = true | ||
12 | |||
13 | add (resolutions: PeerTubeResolution[]) { | ||
14 | for (const r of resolutions) { | ||
15 | this.resolutions.push(r) | ||
16 | } | ||
17 | |||
18 | this.currentSelection = this.getSelected() | ||
19 | |||
20 | this.sort() | ||
21 | this.trigger('resolutionsAdded') | ||
22 | } | ||
23 | |||
24 | getResolutions () { | ||
25 | return this.resolutions | ||
26 | } | ||
27 | |||
28 | getSelected () { | ||
29 | return this.resolutions.find(r => r.selected) | ||
30 | } | ||
31 | |||
32 | getAutoResolutionChosen () { | ||
33 | return this.resolutions.find(r => r.id === this.autoResolutionChosenId) | ||
34 | } | ||
35 | |||
36 | select (options: { | ||
37 | id: number | ||
38 | byEngine: boolean | ||
39 | autoResolutionChosenId?: number | ||
40 | }) { | ||
41 | const { id, autoResolutionChosenId, byEngine } = options | ||
42 | |||
43 | if (this.currentSelection?.id === id && this.autoResolutionChosenId === autoResolutionChosenId) return | ||
44 | |||
45 | this.autoResolutionChosenId = autoResolutionChosenId | ||
46 | |||
47 | for (const r of this.resolutions) { | ||
48 | r.selected = r.id === id | ||
49 | |||
50 | if (r.selected) { | ||
51 | this.currentSelection = r | ||
52 | |||
53 | if (!byEngine) r.selectCallback() | ||
54 | } | ||
55 | } | ||
56 | |||
57 | this.trigger('resolutionChanged') | ||
58 | } | ||
59 | |||
60 | disableAutoResolution () { | ||
61 | this.autoResolutionEnabled = false | ||
62 | this.trigger('autoResolutionEnabledChanged') | ||
63 | } | ||
64 | |||
65 | enabledAutoResolution () { | ||
66 | this.autoResolutionEnabled = true | ||
67 | this.trigger('autoResolutionEnabledChanged') | ||
68 | } | ||
69 | |||
70 | isAutoResolutionEnabeld () { | ||
71 | return this.autoResolutionEnabled | ||
72 | } | ||
73 | |||
74 | private sort () { | ||
75 | this.resolutions.sort((a, b) => { | ||
76 | if (a.id === -1) return 1 | ||
77 | if (b.id === -1) return -1 | ||
78 | |||
79 | if (a.height > b.height) return -1 | ||
80 | if (a.height === b.height) return 0 | ||
81 | return 1 | ||
82 | }) | ||
83 | } | ||
84 | |||
85 | } | ||
86 | |||
87 | videojs.registerPlugin('peertubeResolutions', PeerTubeResolutionsPlugin) | ||
88 | export { PeerTubeResolutionsPlugin } | ||
diff --git a/client/src/assets/player/peertube-videojs-typings.ts b/client/src/assets/player/peertube-videojs-typings.ts index 97828c802..bd6db4ffc 100644 --- a/client/src/assets/player/peertube-videojs-typings.ts +++ b/client/src/assets/player/peertube-videojs-typings.ts | |||
@@ -1,6 +1,3 @@ | |||
1 | // FIXME: lint | ||
2 | /* eslint-disable @typescript-eslint/ban-types */ | ||
3 | |||
4 | import { HlsConfig, Level } from 'hls.js' | 1 | import { HlsConfig, Level } from 'hls.js' |
5 | import videojs from 'video.js' | 2 | import videojs from 'video.js' |
6 | import { VideoFile, VideoPlaylist, VideoPlaylistElement } from '@shared/models' | 3 | import { VideoFile, VideoPlaylist, VideoPlaylistElement } from '@shared/models' |
@@ -8,11 +5,12 @@ import { P2pMediaLoaderPlugin } from './p2p-media-loader/p2p-media-loader-plugin | |||
8 | import { RedundancyUrlManager } from './p2p-media-loader/redundancy-url-manager' | 5 | import { RedundancyUrlManager } from './p2p-media-loader/redundancy-url-manager' |
9 | import { PlayerMode } from './peertube-player-manager' | 6 | import { PlayerMode } from './peertube-player-manager' |
10 | import { PeerTubePlugin } from './peertube-plugin' | 7 | import { PeerTubePlugin } from './peertube-plugin' |
8 | import { PeerTubeResolutionsPlugin } from './peertube-resolutions-plugin' | ||
11 | import { PlaylistPlugin } from './playlist/playlist-plugin' | 9 | import { PlaylistPlugin } from './playlist/playlist-plugin' |
12 | import { EndCardOptions } from './upnext/end-card' | ||
13 | import { StatsCardOptions } from './stats/stats-card' | 10 | import { StatsCardOptions } from './stats/stats-card' |
14 | import { WebTorrentPlugin } from './webtorrent/webtorrent-plugin' | ||
15 | import { StatsForNerdsPlugin } from './stats/stats-plugin' | 11 | import { StatsForNerdsPlugin } from './stats/stats-plugin' |
12 | import { EndCardOptions } from './upnext/end-card' | ||
13 | import { WebTorrentPlugin } from './webtorrent/webtorrent-plugin' | ||
16 | 14 | ||
17 | declare module 'video.js' { | 15 | declare module 'video.js' { |
18 | 16 | ||
@@ -37,16 +35,15 @@ declare module 'video.js' { | |||
37 | 35 | ||
38 | p2pMediaLoader (): P2pMediaLoaderPlugin | 36 | p2pMediaLoader (): P2pMediaLoaderPlugin |
39 | 37 | ||
38 | peertubeResolutions (): PeerTubeResolutionsPlugin | ||
39 | |||
40 | contextmenuUI (options: any): any | 40 | contextmenuUI (options: any): any |
41 | 41 | ||
42 | bezels (): void | 42 | bezels (): void |
43 | 43 | ||
44 | stats (options?: StatsCardOptions): StatsForNerdsPlugin | 44 | stats (options?: StatsCardOptions): StatsForNerdsPlugin |
45 | 45 | ||
46 | qualityLevels (): QualityLevels | ||
47 | |||
48 | textTracks (): TextTrackList & { | 46 | textTracks (): TextTrackList & { |
49 | on: Function | ||
50 | tracks_: (TextTrack & { id: string, label: string, src: string })[] | 47 | tracks_: (TextTrack & { id: string, label: string, src: string })[] |
51 | } | 48 | } |
52 | 49 | ||
@@ -69,24 +66,16 @@ export interface HlsjsConfigHandlerOptions { | |||
69 | levelLabelHandler?: (level: Level) => string | 66 | levelLabelHandler?: (level: Level) => string |
70 | } | 67 | } |
71 | 68 | ||
72 | type QualityLevelRepresentation = { | 69 | type PeerTubeResolution = { |
73 | id: number | 70 | id: number |
74 | height: number | ||
75 | 71 | ||
72 | height?: number | ||
76 | label?: string | 73 | label?: string |
77 | width?: number | 74 | width?: number |
78 | bandwidth?: number | ||
79 | bitrate?: number | 75 | bitrate?: number |
80 | 76 | ||
81 | enabled?: Function | 77 | selected: boolean |
82 | _enabled: boolean | 78 | selectCallback: () => void |
83 | } | ||
84 | |||
85 | type QualityLevels = QualityLevelRepresentation[] & { | ||
86 | selectedIndex: number | ||
87 | selectedIndex_: number | ||
88 | |||
89 | addQualityLevel (representation: QualityLevelRepresentation): void | ||
90 | } | 79 | } |
91 | 80 | ||
92 | type VideoJSCaption = { | 81 | type VideoJSCaption = { |
@@ -131,7 +120,7 @@ type PlaylistPluginOptions = { | |||
131 | 120 | ||
132 | type NextPreviousVideoButtonOptions = { | 121 | type NextPreviousVideoButtonOptions = { |
133 | type: 'next' | 'previous' | 122 | type: 'next' | 'previous' |
134 | handler: Function | 123 | handler: () => void |
135 | isDisabled: () => boolean | 124 | isDisabled: () => boolean |
136 | } | 125 | } |
137 | 126 | ||
@@ -214,7 +203,7 @@ type PlayerNetworkInfo = { | |||
214 | type PlaylistItemOptions = { | 203 | type PlaylistItemOptions = { |
215 | element: VideoPlaylistElement | 204 | element: VideoPlaylistElement |
216 | 205 | ||
217 | onClicked: Function | 206 | onClicked: () => void |
218 | } | 207 | } |
219 | 208 | ||
220 | export { | 209 | export { |
@@ -229,9 +218,8 @@ export { | |||
229 | PeerTubePluginOptions, | 218 | PeerTubePluginOptions, |
230 | WebtorrentPluginOptions, | 219 | WebtorrentPluginOptions, |
231 | P2PMediaLoaderPluginOptions, | 220 | P2PMediaLoaderPluginOptions, |
221 | PeerTubeResolution, | ||
232 | VideoJSPluginOptions, | 222 | VideoJSPluginOptions, |
233 | LoadedQualityData, | 223 | LoadedQualityData, |
234 | QualityLevelRepresentation, | 224 | PeerTubeLinkButtonOptions |
235 | PeerTubeLinkButtonOptions, | ||
236 | QualityLevels | ||
237 | } | 225 | } |
diff --git a/client/src/assets/player/utils.ts b/client/src/assets/player/utils.ts index f2e9adb14..cbca1065f 100644 --- a/client/src/assets/player/utils.ts +++ b/client/src/assets/player/utils.ts | |||
@@ -1,4 +1,3 @@ | |||
1 | import { escapeHTML } from '@shared/core-utils/renderer' | ||
2 | import { VideoFile } from '@shared/models' | 1 | import { VideoFile } from '@shared/models' |
3 | 2 | ||
4 | function toTitleCase (str: string) { | 3 | function toTitleCase (str: string) { |
@@ -44,14 +43,15 @@ function isMobile () { | |||
44 | } | 43 | } |
45 | 44 | ||
46 | function buildVideoOrPlaylistEmbed (embedUrl: string, embedTitle: string) { | 45 | function buildVideoOrPlaylistEmbed (embedUrl: string, embedTitle: string) { |
47 | const title = escapeHTML(embedTitle) | 46 | const iframe = document.createElement('iframe') |
48 | 47 | ||
49 | return '<iframe width="560" height="315" ' + | 48 | iframe.title = embedTitle |
50 | 'sandbox="allow-same-origin allow-scripts allow-popups" ' + | 49 | iframe.src = embedUrl |
51 | 'title="' + title + '" ' + | 50 | iframe.frameBorder = '0' |
52 | 'src="' + embedUrl + '" ' + | 51 | iframe.allowFullscreen = true |
53 | 'frameborder="0" allowfullscreen>' + | 52 | iframe.sandbox.add('allow-same-origin', 'allow-scripts', 'allow-popups') |
54 | '</iframe>' | 53 | |
54 | return iframe.outerHTML | ||
55 | } | 55 | } |
56 | 56 | ||
57 | function videoFileMaxByResolution (files: VideoFile[]) { | 57 | function videoFileMaxByResolution (files: VideoFile[]) { |
diff --git a/client/src/assets/player/videojs-components/resolution-menu-button.ts b/client/src/assets/player/videojs-components/resolution-menu-button.ts index 98e7f56fc..8bd5b4f03 100644 --- a/client/src/assets/player/videojs-components/resolution-menu-button.ts +++ b/client/src/assets/player/videojs-components/resolution-menu-button.ts | |||
@@ -1,6 +1,4 @@ | |||
1 | import videojs from 'video.js' | 1 | import videojs from 'video.js' |
2 | |||
3 | import { LoadedQualityData } from '../peertube-videojs-typings' | ||
4 | import { ResolutionMenuItem } from './resolution-menu-item' | 2 | import { ResolutionMenuItem } from './resolution-menu-item' |
5 | 3 | ||
6 | const Menu = videojs.getComponent('Menu') | 4 | const Menu = videojs.getComponent('Menu') |
@@ -13,9 +11,12 @@ class ResolutionMenuButton extends MenuButton { | |||
13 | 11 | ||
14 | this.controlText('Quality') | 12 | this.controlText('Quality') |
15 | 13 | ||
16 | player.tech(true).on('loadedqualitydata', (e: any, data: any) => this.buildQualities(data)) | 14 | player.peertubeResolutions().on('resolutionsAdded', () => this.buildQualities()) |
17 | 15 | ||
18 | player.peertube().on('resolutionChange', () => setTimeout(() => this.trigger('updateLabel'), 0)) | 16 | // For parent |
17 | player.peertubeResolutions().on('resolutionChanged', () => { | ||
18 | setTimeout(() => this.trigger('labelUpdated')) | ||
19 | }) | ||
19 | } | 20 | } |
20 | 21 | ||
21 | createEl () { | 22 | createEl () { |
@@ -58,20 +59,8 @@ class ResolutionMenuButton extends MenuButton { | |||
58 | }) | 59 | }) |
59 | } | 60 | } |
60 | 61 | ||
61 | private buildQualities (data: LoadedQualityData) { | 62 | private buildQualities () { |
62 | // The automatic resolution item will need other labels | 63 | for (const d of this.player().peertubeResolutions().getResolutions()) { |
63 | const labels: { [ id: number ]: string } = {} | ||
64 | |||
65 | data.qualityData.video.sort((a, b) => { | ||
66 | if (a.id > b.id) return -1 | ||
67 | if (a.id === b.id) return 0 | ||
68 | return 1 | ||
69 | }) | ||
70 | |||
71 | for (const d of data.qualityData.video) { | ||
72 | // Skip auto resolution, we'll add it ourselves | ||
73 | if (d.id === -1) continue | ||
74 | |||
75 | const label = d.label === '0p' | 64 | const label = d.label === '0p' |
76 | ? this.player().localize('Audio-only') | 65 | ? this.player().localize('Audio-only') |
77 | : d.label | 66 | : d.label |
@@ -81,25 +70,11 @@ class ResolutionMenuButton extends MenuButton { | |||
81 | { | 70 | { |
82 | id: d.id, | 71 | id: d.id, |
83 | label, | 72 | label, |
84 | selected: d.selected, | 73 | selected: d.selected |
85 | callback: data.qualitySwitchCallback | ||
86 | }) | 74 | }) |
87 | ) | 75 | ) |
88 | |||
89 | labels[d.id] = d.label | ||
90 | } | 76 | } |
91 | 77 | ||
92 | this.menu.addChild(new ResolutionMenuItem( | ||
93 | this.player_, | ||
94 | { | ||
95 | id: -1, | ||
96 | label: this.player_.localize('Auto'), | ||
97 | labels, | ||
98 | callback: data.qualitySwitchCallback, | ||
99 | selected: true // By default, in auto mode | ||
100 | } | ||
101 | )) | ||
102 | |||
103 | for (const m of this.menu.children()) { | 78 | for (const m of this.menu.children()) { |
104 | this.addClickListener(m) | 79 | this.addClickListener(m) |
105 | } | 80 | } |
diff --git a/client/src/assets/player/videojs-components/resolution-menu-item.ts b/client/src/assets/player/videojs-components/resolution-menu-item.ts index c1f502600..6047f52f7 100644 --- a/client/src/assets/player/videojs-components/resolution-menu-item.ts +++ b/client/src/assets/player/videojs-components/resolution-menu-item.ts | |||
@@ -1,82 +1,72 @@ | |||
1 | import videojs from 'video.js' | 1 | import videojs from 'video.js' |
2 | import { AutoResolutionUpdateData, ResolutionUpdateData } from '../peertube-videojs-typings' | ||
3 | 2 | ||
4 | const MenuItem = videojs.getComponent('MenuItem') | 3 | const MenuItem = videojs.getComponent('MenuItem') |
5 | 4 | ||
6 | export interface ResolutionMenuItemOptions extends videojs.MenuItemOptions { | 5 | export interface ResolutionMenuItemOptions extends videojs.MenuItemOptions { |
7 | labels?: { [id: number]: string } | ||
8 | id: number | 6 | id: number |
9 | callback: (resolutionId: number, type: 'video') => void | ||
10 | } | 7 | } |
11 | 8 | ||
12 | class ResolutionMenuItem extends MenuItem { | 9 | class ResolutionMenuItem extends MenuItem { |
13 | private readonly resolutionId: number | 10 | private readonly resolutionId: number |
14 | private readonly label: string | 11 | private readonly label: string |
15 | // Only used for the automatic item | ||
16 | private readonly labels: { [id: number]: string } | ||
17 | private readonly callback: (resolutionId: number, type: 'video') => void | ||
18 | 12 | ||
19 | private autoResolutionPossible: boolean | 13 | private autoResolutionEnabled: boolean |
20 | private currentResolutionLabel: string | 14 | private autoResolutionChosen: string |
21 | 15 | ||
22 | constructor (player: videojs.Player, options?: ResolutionMenuItemOptions) { | 16 | constructor (player: videojs.Player, options?: ResolutionMenuItemOptions) { |
23 | options.selectable = true | 17 | options.selectable = true |
24 | 18 | ||
25 | super(player, options) | 19 | super(player, options) |
26 | 20 | ||
27 | this.autoResolutionPossible = true | 21 | this.autoResolutionEnabled = true |
28 | this.currentResolutionLabel = '' | 22 | this.autoResolutionChosen = '' |
29 | 23 | ||
30 | this.resolutionId = options.id | 24 | this.resolutionId = options.id |
31 | this.label = options.label | 25 | this.label = options.label |
32 | this.labels = options.labels | ||
33 | this.callback = options.callback | ||
34 | 26 | ||
35 | player.peertube().on('resolutionChange', (_: any, data: ResolutionUpdateData) => this.updateSelection(data)) | 27 | player.peertubeResolutions().on('resolutionChanged', () => this.updateSelection()) |
36 | 28 | ||
37 | // We only want to disable the "Auto" item | 29 | // We only want to disable the "Auto" item |
38 | if (this.resolutionId === -1) { | 30 | if (this.resolutionId === -1) { |
39 | player.peertube().on('autoResolutionChange', (_: any, data: AutoResolutionUpdateData) => this.updateAutoResolution(data)) | 31 | player.peertubeResolutions().on('autoResolutionEnabledChanged', () => this.updateAutoResolution()) |
40 | } | 32 | } |
41 | } | 33 | } |
42 | 34 | ||
43 | handleClick (event: any) { | 35 | handleClick (event: any) { |
44 | // Auto button disabled? | 36 | // Auto button disabled? |
45 | if (this.autoResolutionPossible === false && this.resolutionId === -1) return | 37 | if (this.autoResolutionEnabled === false && this.resolutionId === -1) return |
46 | 38 | ||
47 | super.handleClick(event) | 39 | super.handleClick(event) |
48 | 40 | ||
49 | this.callback(this.resolutionId, 'video') | 41 | this.player().peertubeResolutions().select({ id: this.resolutionId, byEngine: false }) |
50 | } | 42 | } |
51 | 43 | ||
52 | updateSelection (data: ResolutionUpdateData) { | 44 | updateSelection () { |
53 | if (this.resolutionId === -1) { | 45 | const selectedResolution = this.player().peertubeResolutions().getSelected() |
54 | this.currentResolutionLabel = this.labels[data.id] | ||
55 | } | ||
56 | 46 | ||
57 | // Automatic resolution only | 47 | if (this.resolutionId === -1) { |
58 | if (data.auto === true) { | 48 | this.autoResolutionChosen = this.player().peertubeResolutions().getAutoResolutionChosen()?.label |
59 | this.selected(this.resolutionId === -1) | ||
60 | return | ||
61 | } | 49 | } |
62 | 50 | ||
63 | this.selected(this.resolutionId === data.id) | 51 | this.selected(this.resolutionId === selectedResolution.id) |
64 | } | 52 | } |
65 | 53 | ||
66 | updateAutoResolution (data: AutoResolutionUpdateData) { | 54 | updateAutoResolution () { |
55 | const enabled = this.player().peertubeResolutions().isAutoResolutionEnabeld() | ||
56 | |||
67 | // Check if the auto resolution is enabled or not | 57 | // Check if the auto resolution is enabled or not |
68 | if (data.possible === false) { | 58 | if (enabled === false) { |
69 | this.addClass('disabled') | 59 | this.addClass('disabled') |
70 | } else { | 60 | } else { |
71 | this.removeClass('disabled') | 61 | this.removeClass('disabled') |
72 | } | 62 | } |
73 | 63 | ||
74 | this.autoResolutionPossible = data.possible | 64 | this.autoResolutionEnabled = enabled |
75 | } | 65 | } |
76 | 66 | ||
77 | getLabel () { | 67 | getLabel () { |
78 | if (this.resolutionId === -1) { | 68 | if (this.resolutionId === -1) { |
79 | return this.label + ' <small>' + this.currentResolutionLabel + '</small>' | 69 | return this.label + ' <small>' + this.autoResolutionChosen + '</small>' |
80 | } | 70 | } |
81 | 71 | ||
82 | return this.label | 72 | return this.label |
diff --git a/client/src/assets/player/videojs-components/settings-menu-item.ts b/client/src/assets/player/videojs-components/settings-menu-item.ts index 1871d41f8..48fed0fd9 100644 --- a/client/src/assets/player/videojs-components/settings-menu-item.ts +++ b/client/src/assets/player/videojs-components/settings-menu-item.ts | |||
@@ -248,7 +248,7 @@ class SettingsMenuItem extends MenuItem { | |||
248 | } | 248 | } |
249 | 249 | ||
250 | build () { | 250 | build () { |
251 | this.subMenu.on('updateLabel', () => { | 251 | this.subMenu.on('labelUpdated', () => { |
252 | this.update() | 252 | this.update() |
253 | }) | 253 | }) |
254 | this.subMenu.on('menuChanged', () => { | 254 | this.subMenu.on('menuChanged', () => { |
diff --git a/client/src/assets/player/webtorrent/webtorrent-plugin.ts b/client/src/assets/player/webtorrent/webtorrent-plugin.ts index 0587ddee6..1a1cd7f1a 100644 --- a/client/src/assets/player/webtorrent/webtorrent-plugin.ts +++ b/client/src/assets/player/webtorrent/webtorrent-plugin.ts | |||
@@ -9,7 +9,7 @@ import { | |||
9 | getStoredVolume, | 9 | getStoredVolume, |
10 | saveAverageBandwidth | 10 | saveAverageBandwidth |
11 | } from '../peertube-player-local-storage' | 11 | } from '../peertube-player-local-storage' |
12 | import { LoadedQualityData, PlayerNetworkInfo, WebtorrentPluginOptions } from '../peertube-videojs-typings' | 12 | import { PeerTubeResolution, PlayerNetworkInfo, WebtorrentPluginOptions } from '../peertube-videojs-typings' |
13 | import { getRtcConfig, isIOS, videoFileMaxByResolution, videoFileMinByResolution } from '../utils' | 13 | import { getRtcConfig, isIOS, videoFileMaxByResolution, videoFileMinByResolution } from '../utils' |
14 | import { PeertubeChunkStore } from './peertube-chunk-store' | 14 | import { PeertubeChunkStore } from './peertube-chunk-store' |
15 | import { renderVideo } from './video-renderer' | 15 | import { renderVideo } from './video-renderer' |
@@ -175,11 +175,10 @@ class WebTorrentPlugin extends Plugin { | |||
175 | return done() | 175 | return done() |
176 | }) | 176 | }) |
177 | 177 | ||
178 | this.changeQuality() | 178 | this.selectAppropriateResolution(true) |
179 | this.trigger('resolutionChange', { auto: this.autoResolution, resolutionId: this.currentVideoFile.resolution.id }) | ||
180 | } | 179 | } |
181 | 180 | ||
182 | updateResolution (resolutionId: number, delay = 0) { | 181 | updateEngineResolution (resolutionId: number, delay = 0) { |
183 | // Remember player state | 182 | // Remember player state |
184 | const currentTime = this.player.currentTime() | 183 | const currentTime = this.player.currentTime() |
185 | const isPaused = this.player.paused() | 184 | const isPaused = this.player.paused() |
@@ -219,17 +218,10 @@ class WebTorrentPlugin extends Plugin { | |||
219 | } | 218 | } |
220 | } | 219 | } |
221 | 220 | ||
222 | enableAutoResolution () { | 221 | disableAutoResolution () { |
223 | this.autoResolution = true | ||
224 | this.trigger('resolutionChange', { auto: this.autoResolution, resolutionId: this.getCurrentResolutionId() }) | ||
225 | } | ||
226 | |||
227 | disableAutoResolution (forbid = false) { | ||
228 | if (forbid === true) this.autoResolutionPossible = false | ||
229 | |||
230 | this.autoResolution = false | 222 | this.autoResolution = false |
231 | this.trigger('autoResolutionChange', { possible: this.autoResolutionPossible }) | 223 | this.autoResolutionPossible = false |
232 | this.trigger('resolutionChange', { auto: this.autoResolution, resolutionId: this.getCurrentResolutionId() }) | 224 | this.player.peertubeResolutions().disableAutoResolution() |
233 | } | 225 | } |
234 | 226 | ||
235 | isAutoResolutionPossible () { | 227 | isAutoResolutionPossible () { |
@@ -244,6 +236,22 @@ class WebTorrentPlugin extends Plugin { | |||
244 | return this.currentVideoFile | 236 | return this.currentVideoFile |
245 | } | 237 | } |
246 | 238 | ||
239 | changeQuality (id: number) { | ||
240 | if (id === -1) { | ||
241 | if (this.autoResolutionPossible === true) { | ||
242 | this.autoResolution = true | ||
243 | |||
244 | this.selectAppropriateResolution(false) | ||
245 | } | ||
246 | |||
247 | return | ||
248 | } | ||
249 | |||
250 | this.autoResolution = false | ||
251 | this.updateEngineResolution(id) | ||
252 | this.selectAppropriateResolution(false) | ||
253 | } | ||
254 | |||
247 | private addTorrent ( | 255 | private addTorrent ( |
248 | magnetOrTorrentUrl: string, | 256 | magnetOrTorrentUrl: string, |
249 | previousVideoFile: VideoFile, | 257 | previousVideoFile: VideoFile, |
@@ -466,7 +474,7 @@ class WebTorrentPlugin extends Plugin { | |||
466 | } | 474 | } |
467 | 475 | ||
468 | if (changeResolution === true) { | 476 | if (changeResolution === true) { |
469 | this.updateResolution(file.resolution.id, changeResolutionDelay) | 477 | this.updateEngineResolution(file.resolution.id, changeResolutionDelay) |
470 | 478 | ||
471 | // Wait some seconds in observation of our new resolution | 479 | // Wait some seconds in observation of our new resolution |
472 | this.isAutoResolutionObservation = true | 480 | this.isAutoResolutionObservation = true |
@@ -516,7 +524,7 @@ class WebTorrentPlugin extends Plugin { | |||
516 | private fallbackToHttp (options: PlayOptions, done?: (err?: Error) => void) { | 524 | private fallbackToHttp (options: PlayOptions, done?: (err?: Error) => void) { |
517 | const paused = this.player.paused() | 525 | const paused = this.player.paused() |
518 | 526 | ||
519 | this.disableAutoResolution(true) | 527 | this.disableAutoResolution() |
520 | 528 | ||
521 | this.flushVideoFile(this.currentVideoFile, true) | 529 | this.flushVideoFile(this.currentVideoFile, true) |
522 | this.torrent = null | 530 | this.torrent = null |
@@ -528,7 +536,7 @@ class WebTorrentPlugin extends Plugin { | |||
528 | this.player.src = this.savePlayerSrcFunction | 536 | this.player.src = this.savePlayerSrcFunction |
529 | this.player.src(httpUrl) | 537 | this.player.src(httpUrl) |
530 | 538 | ||
531 | this.changeQuality() | 539 | this.selectAppropriateResolution(true) |
532 | 540 | ||
533 | // We changed the source, so reinit captions | 541 | // We changed the source, so reinit captions |
534 | this.player.trigger('sourcechange') | 542 | this.player.trigger('sourcechange') |
@@ -601,32 +609,22 @@ class WebTorrentPlugin extends Plugin { | |||
601 | } | 609 | } |
602 | 610 | ||
603 | private buildQualities () { | 611 | private buildQualities () { |
604 | const qualityLevelsPayload = [] | 612 | const resolutions: PeerTubeResolution[] = this.videoFiles.map(file => ({ |
605 | 613 | id: file.resolution.id, | |
606 | for (const file of this.videoFiles) { | 614 | label: this.buildQualityLabel(file), |
607 | const representation = { | 615 | height: file.resolution.id, |
608 | id: file.resolution.id, | 616 | selected: false, |
609 | label: this.buildQualityLabel(file), | 617 | selectCallback: () => this.changeQuality(file.resolution.id) |
610 | height: file.resolution.id, | 618 | })) |
611 | _enabled: true | 619 | |
612 | } | 620 | resolutions.push({ |
613 | 621 | id: -1, | |
614 | this.player.qualityLevels().addQualityLevel(representation) | 622 | label: this.player.localize('Auto'), |
615 | 623 | selected: true, | |
616 | qualityLevelsPayload.push({ | 624 | selectCallback: () => this.changeQuality(-1) |
617 | id: representation.id, | 625 | }) |
618 | label: representation.label, | ||
619 | selected: false | ||
620 | }) | ||
621 | } | ||
622 | 626 | ||
623 | const payload: LoadedQualityData = { | 627 | this.player.peertubeResolutions().add(resolutions) |
624 | qualitySwitchCallback: (d: any) => this.qualitySwitchCallback(d), | ||
625 | qualityData: { | ||
626 | video: qualityLevelsPayload | ||
627 | } | ||
628 | } | ||
629 | this.player.tech(true).trigger('loadedqualitydata', payload) | ||
630 | } | 628 | } |
631 | 629 | ||
632 | private buildQualityLabel (file: VideoFile) { | 630 | private buildQualityLabel (file: VideoFile) { |
@@ -639,29 +637,16 @@ class WebTorrentPlugin extends Plugin { | |||
639 | return label | 637 | return label |
640 | } | 638 | } |
641 | 639 | ||
642 | private qualitySwitchCallback (id: number) { | 640 | private selectAppropriateResolution (byEngine: boolean) { |
643 | if (id === -1) { | 641 | const resolution = this.autoResolution |
644 | if (this.autoResolutionPossible === true) this.enableAutoResolution() | 642 | ? -1 |
645 | return | 643 | : this.getCurrentResolutionId() |
646 | } | ||
647 | |||
648 | this.disableAutoResolution() | ||
649 | this.updateResolution(id) | ||
650 | } | ||
651 | |||
652 | private changeQuality () { | ||
653 | const resolutionId = this.currentVideoFile.resolution.id as number | ||
654 | const qualityLevels = this.player.qualityLevels() | ||
655 | 644 | ||
656 | if (resolutionId === -1) { | 645 | const autoResolutionChosen = this.autoResolution |
657 | qualityLevels.selectedIndex = -1 | 646 | ? this.getCurrentResolutionId() |
658 | return | 647 | : undefined |
659 | } | ||
660 | 648 | ||
661 | for (let i = 0; i < qualityLevels.length; i++) { | 649 | this.player.peertubeResolutions().select({ id: resolution, autoResolutionChosenId: autoResolutionChosen, byEngine }) |
662 | const q = qualityLevels[i] | ||
663 | if (q.height === resolutionId) qualityLevels.selectedIndex_ = i | ||
664 | } | ||
665 | } | 650 | } |
666 | } | 651 | } |
667 | 652 | ||
diff --git a/client/src/locale/angular.ar.xlf b/client/src/locale/angular.ar.xlf index a64bf6cfd..9535d9e94 100644 --- a/client/src/locale/angular.ar.xlf +++ b/client/src/locale/angular.ar.xlf | |||
@@ -5,65 +5,64 @@ | |||
5 | <trans-unit id="219462505467671767" datatype="html"> | 5 | <trans-unit id="219462505467671767" datatype="html"> |
6 | <source>Close the left menu</source> | 6 | <source>Close the left menu</source> |
7 | <target state="translated">أغلق القائمة اليسرى</target> | 7 | <target state="translated">أغلق القائمة اليسرى</target> |
8 | 8 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">133</context></context-group> | |
9 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit> | 9 | </trans-unit> |
10 | <trans-unit id="3455550526898419928" datatype="html"> | 10 | <trans-unit id="3455550526898419928" datatype="html"> |
11 | <source>Open the left menu</source> | 11 | <source>Open the left menu</source> |
12 | <target state="translated">افتح القائمة اليسرى</target> | 12 | <target state="translated">افتح القائمة اليسرى</target> |
13 | 13 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">135</context></context-group> | |
14 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit> | 14 | </trans-unit> |
15 | <trans-unit id="187187500641108332" datatype="html"> | 15 | <trans-unit id="187187500641108332" datatype="html"> |
16 | <source><x id="INTERPOLATION" equiv-text="{{ action.label }}"/> </source> | 16 | <source><x id="INTERPOLATION" equiv-text="{{ action.label }}"/> </source> |
17 | <target> | 17 | <target> |
18 | <x id="INTERPOLATION" equiv-text="{{ action.label }}"/> | 18 | <x id="INTERPOLATION" equiv-text="{{ action.label }}"/> |
19 | </target> | 19 | </target> |
20 | 20 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">77</context></context-group> | |
21 | 21 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">105</context></context-group> | |
22 | 22 | <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> | |
23 | 23 | <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> | |
24 | 24 | <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> | |
25 | 25 | <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> | |
26 | 26 | <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> | |
27 | 27 | <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> | |
28 | 28 | <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> | |
29 | 29 | <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> | |
30 | 30 | <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> | |
31 | 31 | </trans-unit> | |
32 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">77</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><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-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> | ||
33 | <trans-unit id="1486537403020619891" datatype="html"> | 32 | <trans-unit id="1486537403020619891" datatype="html"> |
34 | <source>My watch history</source> | 33 | <source>My watch history</source> |
35 | <target state="translated">سجل مشاهداتي</target> | 34 | <target state="translated">سجل مشاهداتي</target> |
36 | 35 | <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> | |
37 | 36 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">68</context></context-group> | |
38 | <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">68</context></context-group></trans-unit> | 37 | </trans-unit> |
39 | <trans-unit id="7022070615528435141" datatype="html"> | 38 | <trans-unit id="7022070615528435141" datatype="html"> |
40 | <source>Delete</source> | 39 | <source>Delete</source> |
41 | <target>احذف</target> | 40 | <target>احذف</target> |
42 | 41 | <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> | |
43 | 42 | <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">88</context></context-group> | |
44 | 43 | <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">92</context></context-group> | |
45 | 44 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">95</context></context-group> | |
46 | 45 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">164</context></context-group> | |
47 | 46 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">81</context></context-group> | |
48 | 47 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">195</context></context-group> | |
49 | 48 | <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> | |
50 | 49 | <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> | |
51 | 50 | <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> | |
52 | 51 | <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> | |
53 | 52 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">117</context></context-group> | |
54 | 53 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">144</context></context-group> | |
55 | 54 | <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> | |
56 | 55 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">178</context></context-group> | |
57 | 56 | <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> | |
58 | 57 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">145</context></context-group> | |
59 | 58 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">388</context></context-group> | |
60 | 59 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">423</context></context-group> | |
61 | 60 | <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> | |
62 | 61 | <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> | |
63 | 62 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">87</context></context-group> | |
64 | 63 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">208</context></context-group> | |
65 | 64 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">308</context></context-group> | |
66 | <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">88</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">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">164</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">81</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">195</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">117</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">144</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">185</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">178</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">145</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">388</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">423</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-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">87</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">208</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">308</context></context-group></trans-unit> | 65 | </trans-unit> |
67 | <trans-unit id="158575725114802951" datatype="html"> | 66 | <trans-unit id="158575725114802951" datatype="html"> |
68 | <source>Only live videos</source> | 67 | <source>Only live videos</source> |
69 | <target state="translated">مقاطع الفيديو المباشرة فقط</target> | 68 | <target state="translated">مقاطع الفيديو المباشرة فقط</target> |
@@ -189,7 +188,7 @@ | |||
189 | </trans-unit> | 188 | </trans-unit> |
190 | <trans-unit id="5504059606863599420" datatype="html"> | 189 | <trans-unit id="5504059606863599420" datatype="html"> |
191 | <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> | 190 | <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> |
192 | <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> | 191 | <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> |
193 | <context-group purpose="location"> | 192 | <context-group purpose="location"> |
194 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 193 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
195 | <context context-type="linenumber">164</context> | 194 | <context context-type="linenumber">164</context> |
@@ -207,7 +206,7 @@ | |||
207 | </trans-unit> | 206 | </trans-unit> |
208 | <trans-unit id="363592786729553688" datatype="html"> | 207 | <trans-unit id="363592786729553688" datatype="html"> |
209 | <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> | 208 | <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> |
210 | <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> | 209 | <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> |
211 | <context-group purpose="location"> | 210 | <context-group purpose="location"> |
212 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 211 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
213 | <context context-type="linenumber">198,199</context> | 212 | <context context-type="linenumber">198,199</context> |
@@ -215,7 +214,7 @@ | |||
215 | </trans-unit> | 214 | </trans-unit> |
216 | <trans-unit id="5055099158245592648" datatype="html"> | 215 | <trans-unit id="5055099158245592648" datatype="html"> |
217 | <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> | 216 | <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> |
218 | <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> | 217 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [href]="notification.peertubeVersionLink" target="_blank" rel="noopener noreferer">"/>تتوفر نسخة أحدث من <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> بيرتيوب: <x id="INTERPOLATION" equiv-text="{{ notification.peertube.latestVersion }}"/> </target> |
219 | <context-group purpose="location"> | 218 | <context-group purpose="location"> |
220 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 219 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
221 | <context context-type="linenumber">206,207</context> | 220 | <context context-type="linenumber">206,207</context> |
@@ -239,10 +238,10 @@ | |||
239 | <trans-unit id="5500467336262464724" datatype="html"> | 238 | <trans-unit id="5500467336262464724" datatype="html"> |
240 | <source><x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> subscribers </source> | 239 | <source><x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> subscribers </source> |
241 | <target><x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> مشترك </target> | 240 | <target><x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> مشترك </target> |
242 | 241 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">25</context></context-group> | |
243 | 242 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">55</context></context-group> | |
244 | 243 | <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> | |
245 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/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> | 244 | </trans-unit> |
246 | <trans-unit id="31472093355465024" datatype="html"> | 245 | <trans-unit id="31472093355465024" datatype="html"> |
247 | <source>Upload a new avatar</source> | 246 | <source>Upload a new avatar</source> |
248 | <target state="translated">ارفع صورة رمزية جديدة</target> | 247 | <target state="translated">ارفع صورة رمزية جديدة</target> |
@@ -257,11 +256,12 @@ | |||
257 | <trans-unit id="8461609631969932886" datatype="html"> | 256 | <trans-unit id="8461609631969932886" datatype="html"> |
258 | <source>Hide</source> | 257 | <source>Hide</source> |
259 | <target state="translated">أخفِ</target> | 258 | <target state="translated">أخفِ</target> |
260 | 259 | <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> | |
261 | 260 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.html</context><context context-type="linenumber">11</context></context-group> | |
262 | 261 | <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> | |
263 | 262 | <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> | |
264 | <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/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> | 263 | <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> |
264 | </trans-unit> | ||
265 | <trans-unit id="8461842260159597706" datatype="html"> | 265 | <trans-unit id="8461842260159597706" datatype="html"> |
266 | <source>Show</source> | 266 | <source>Show</source> |
267 | <target state="translated">اعرض</target> | 267 | <target state="translated">اعرض</target> |
@@ -297,13 +297,11 @@ | |||
297 | <trans-unit id="3768927257183755959" datatype="html"> | 297 | <trans-unit id="3768927257183755959" datatype="html"> |
298 | <source>Save</source> | 298 | <source>Save</source> |
299 | <target>احفظ</target> | 299 | <target>احفظ</target> |
300 | 300 | <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> | |
301 | 301 | <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> | |
302 | 302 | <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> | |
303 | 303 | <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">82</context></context-group> | |
304 | 304 | </trans-unit> | |
305 | |||
306 | <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">82</context></context-group></trans-unit> | ||
307 | <trans-unit id="7377817702119089263" datatype="html"> | 305 | <trans-unit id="7377817702119089263" datatype="html"> |
308 | <source>Default policy on videos containing sensitive content</source> | 306 | <source>Default policy on videos containing sensitive content</source> |
309 | <target>السياسة الفيديوهات ذات المحتوى الحساس</target> | 307 | <target>السياسة الفيديوهات ذات المحتوى الحساس</target> |
@@ -347,39 +345,39 @@ | |||
347 | <trans-unit id="2658703380934466003" datatype="html"> | 345 | <trans-unit id="2658703380934466003" datatype="html"> |
348 | <source>Add a new language</source> | 346 | <source>Add a new language</source> |
349 | <target state="translated">أضف لغة جديدة</target> | 347 | <target state="translated">أضف لغة جديدة</target> |
350 | 348 | <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> | |
351 | 349 | <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> | |
352 | <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> | 350 | </trans-unit> |
353 | <trans-unit id="8953934448427251062" datatype="html"> | 351 | <trans-unit id="8953934448427251062" datatype="html"> |
354 | <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> | 352 | <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> |
355 | <target>يشير <x id="START_LINK"/>نظام المشاركة<x id="CLOSE_LINK"/> إلى أنه يمكن إرسال بعض المعلومات الفنية حول نظامك (مثل عنوان IP) إلى الأقران الآخرين ، ولكنه يساعد بشكل كبير في تقليل حمل الخادم.</target> | 353 | <target>يشير <x id="START_LINK"/>نظام المشاركة<x id="CLOSE_LINK"/> إلى أنه يمكن إرسال بعض المعلومات الفنية حول نظامك (مثل عنوان IP) إلى الأقران الآخرين ، ولكنه يساعد بشكل كبير في تقليل حمل الخادم.</target> |
356 | 354 | <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> | |
357 | <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> | 355 | </trans-unit> |
358 | <trans-unit id="34094919610906740" datatype="html"> | 356 | <trans-unit id="34094919610906740" datatype="html"> |
359 | <source>Help share videos being played</source> | 357 | <source>Help share videos being played</source> |
360 | <target>المساهمة في نشر الفيديوهات</target> | 358 | <target>المساهمة في نشر الفيديوهات</target> |
361 | 359 | <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> | |
362 | <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> | 360 | </trans-unit> |
363 | <trans-unit id="6236140336967052987" datatype="html"> | 361 | <trans-unit id="6236140336967052987" datatype="html"> |
364 | <source>When on a video page, directly start playing the video.</source> | 362 | <source>When on a video page, directly start playing the video.</source> |
365 | <target>عندما تكون في صفحة فيديو ، شغِل الفيديو.</target> | 363 | <target>عندما تكون في صفحة فيديو ، شغِل الفيديو.</target> |
366 | 364 | <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> | |
367 | <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> | 365 | </trans-unit> |
368 | <trans-unit id="9135112681389493865" datatype="html"> | 366 | <trans-unit id="9135112681389493865" datatype="html"> |
369 | <source>Automatically play videos</source> | 367 | <source>Automatically play videos</source> |
370 | <target>شغّل الفيديوهات تلقائيا</target> | 368 | <target>شغّل الفيديوهات تلقائيا</target> |
371 | 369 | <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> | |
372 | <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> | 370 | </trans-unit> |
373 | <trans-unit id="575474399125992547" datatype="html"> | 371 | <trans-unit id="575474399125992547" datatype="html"> |
374 | <source>When a video ends, follow up with the next suggested video.</source> | 372 | <source>When a video ends, follow up with the next suggested video.</source> |
375 | <target>عندما ينتهي الفيديو ، شغّل الفيديو المقترح التالي.</target> | 373 | <target>عندما ينتهي الفيديو ، شغّل الفيديو المقترح التالي.</target> |
376 | 374 | <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> | |
377 | <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> | 375 | </trans-unit> |
378 | <trans-unit id="2701970773087072815" datatype="html"> | 376 | <trans-unit id="2701970773087072815" datatype="html"> |
379 | <source>Automatically start playing the next video</source> | 377 | <source>Automatically start playing the next video</source> |
380 | <target>شغّل الفيديو التالي تلقائيا</target> | 378 | <target>شغّل الفيديو التالي تلقائيا</target> |
381 | 379 | <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> | |
382 | <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> | 380 | </trans-unit> |
383 | <trans-unit id="6286037250766429054" datatype="html"> | 381 | <trans-unit id="6286037250766429054" datatype="html"> |
384 | <source>yes</source> | 382 | <source>yes</source> |
385 | <target>نعم</target> | 383 | <target>نعم</target> |
@@ -458,10 +456,11 @@ | |||
458 | <trans-unit id="2602586221576511475" datatype="html"> | 456 | <trans-unit id="2602586221576511475" datatype="html"> |
459 | <source>Video quota</source> | 457 | <source>Video quota</source> |
460 | <target>حصة الفيديو</target> | 458 | <target>حصة الفيديو</target> |
461 | 459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> | |
462 | 460 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> | |
463 | 461 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">113</context></context-group> | |
464 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/users/user-list/user-list.component.ts</context><context context-type="linenumber">113</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> | 462 | <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> |
463 | </trans-unit> | ||
465 | <trans-unit id="1502595455339510144" datatype="html"> | 464 | <trans-unit id="1502595455339510144" datatype="html"> |
466 | <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 465 | <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
467 | <target>غير محدود <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> في اليوم الواحد)<x id="CLOSE_TAG_NG_CONTAINER"/></target> | 466 | <target>غير محدود <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> في اليوم الواحد)<x id="CLOSE_TAG_NG_CONTAINER"/></target> |
@@ -502,14 +501,14 @@ | |||
502 | <trans-unit id="4580988005648117665" datatype="html"> | 501 | <trans-unit id="4580988005648117665" datatype="html"> |
503 | <source>Search</source> | 502 | <source>Search</source> |
504 | <target>ابحث</target> | 503 | <target>ابحث</target> |
505 | 504 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">5</context></context-group> | |
506 | 505 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">12</context></context-group> | |
507 | 506 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">260</context></context-group> | |
508 | 507 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">8</context></context-group> | |
509 | 508 | <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> | |
510 | 509 | <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> | |
511 | 510 | <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> | |
512 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">5</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">260</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> | 511 | </trans-unit> |
513 | <trans-unit id="8630916846096019339" datatype="html"> | 512 | <trans-unit id="8630916846096019339" datatype="html"> |
514 | <source>Users can resolve distant content</source> | 513 | <source>Users can resolve distant content</source> |
515 | <target>يمكن للمستخدمين من تحليل المحتوى البعيد</target> | 514 | <target>يمكن للمستخدمين من تحليل المحتوى البعيد</target> |
@@ -523,8 +522,9 @@ | |||
523 | <trans-unit id="2906587845957718064" datatype="html"> | 522 | <trans-unit id="2906587845957718064" datatype="html"> |
524 | <source>Local</source> | 523 | <source>Local</source> |
525 | <target>المحلية</target> | 524 | <target>المحلية</target> |
526 | 525 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">4</context></context-group> | |
527 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.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-filters.model.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> | 526 | <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> |
527 | </trans-unit> | ||
528 | <trans-unit id="1670306451865226564" datatype="html"> | 528 | <trans-unit id="1670306451865226564" datatype="html"> |
529 | <source>users</source> | 529 | <source>users</source> |
530 | <target>مستخدمون</target> | 530 | <target>مستخدمون</target> |
@@ -557,8 +557,10 @@ | |||
557 | <target state="translated">الفديرالية</target> | 557 | <target state="translated">الفديرالية</target> |
558 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</context></context-group> | 558 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</context></context-group> |
559 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">58</context></context-group> | 559 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">58</context></context-group> |
560 | </trans-unit><trans-unit id="8726138323871139597" datatype="html"> | 560 | </trans-unit> |
561 | <source>Following</source><target state="new">Following</target> | 561 | <trans-unit id="8726138323871139597" datatype="html"> |
562 | <source>Following</source> | ||
563 | <target state="translated">يتابع</target> | ||
562 | <context-group purpose="location"> | 564 | <context-group purpose="location"> |
563 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | 565 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> |
564 | <context context-type="linenumber">29</context> | 566 | <context context-type="linenumber">29</context> |
@@ -571,8 +573,10 @@ | |||
571 | <context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context> | 573 | <context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context> |
572 | <context context-type="linenumber">28</context> | 574 | <context context-type="linenumber">28</context> |
573 | </context-group> | 575 | </context-group> |
574 | </trans-unit><trans-unit id="4914577418256256836" datatype="html"> | 576 | </trans-unit> |
575 | <source>Followers</source><target state="new">Followers</target> | 577 | <trans-unit id="4914577418256256836" datatype="html"> |
578 | <source>Followers</source> | ||
579 | <target state="translated">متابِعون</target> | ||
576 | <context-group purpose="location"> | 580 | <context-group purpose="location"> |
577 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | 581 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> |
578 | <context context-type="linenumber">34</context> | 582 | <context context-type="linenumber">34</context> |
@@ -595,35 +599,35 @@ | |||
595 | <trans-unit id="2605931708025789621" datatype="html"> | 599 | <trans-unit id="2605931708025789621" datatype="html"> |
596 | <source>The upload failed</source> | 600 | <source>The upload failed</source> |
597 | <target state="translated">فشل الرفع</target> | 601 | <target state="translated">فشل الرفع</target> |
598 | 602 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">12</context></context-group> | |
599 | <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> | 603 | </trans-unit> |
600 | <trans-unit id="1447760976255144968" datatype="html"> | 604 | <trans-unit id="1447760976255144968" datatype="html"> |
601 | <source>The connection was interrupted</source> | 605 | <source>The connection was interrupted</source> |
602 | <target state="translated">قُطع الاتصال</target> | 606 | <target state="translated">قُطع الاتصال</target> |
603 | 607 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">16</context></context-group> | |
604 | <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> | 608 | </trans-unit> |
605 | <trans-unit id="4499233456830047129" datatype="html"> | 609 | <trans-unit id="4499233456830047129" datatype="html"> |
606 | <source>The server encountered an error</source> | 610 | <source>The server encountered an error</source> |
607 | <target state="translated">خطأ على مستوى الخادم</target> | 611 | <target state="translated">خطأ على مستوى الخادم</target> |
608 | 612 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">19</context></context-group> | |
609 | <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> | 613 | </trans-unit> |
610 | <trans-unit id="3334825601859787496" datatype="html"> | 614 | <trans-unit id="3334825601859787496" datatype="html"> |
611 | <source>Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</source> | 615 | <source>Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</source> |
612 | <target state="new">Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</target> | 616 | <target state="new">Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</target> |
613 | 617 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">22</context></context-group> | |
614 | <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> | 618 | </trans-unit> |
615 | <trans-unit id="8530934870279569179" datatype="html"> | 619 | <trans-unit id="8530934870279569179" datatype="html"> |
616 | <source>Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</source> | 620 | <source>Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</source> |
617 | <target state="translated">حجم ملف <x id="PH" equiv-text="name"/> كبير ( حد الحجم: <x id="PH_1" equiv-text="maxFileSize"/>)</target> | 621 | <target state="translated">حجم ملف <x id="PH" equiv-text="name"/> كبير ( حد الحجم: <x id="PH_1" equiv-text="maxFileSize"/>)</target> |
618 | 622 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">26</context></context-group> | |
619 | <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> | 623 | </trans-unit> |
620 | <trans-unit id="2392488717875840729" datatype="html"> | 624 | <trans-unit id="2392488717875840729" datatype="html"> |
621 | <source>User</source> | 625 | <source>User</source> |
622 | <target state="translated">مستخدم</target> | 626 | <target state="translated">مستخدم</target> |
623 | 627 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group> | |
624 | 628 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">27</context></context-group> | |
625 | 629 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group> | |
626 | <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">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group></trans-unit> | 630 | </trans-unit> |
627 | <trans-unit id="9005121595859995793" datatype="html"> | 631 | <trans-unit id="9005121595859995793" datatype="html"> |
628 | <source>Configuration warning!</source> | 632 | <source>Configuration warning!</source> |
629 | <target>تحذير التكوين!</target> | 633 | <target>تحذير التكوين!</target> |
@@ -656,7 +660,7 @@ | |||
656 | </trans-unit> | 660 | </trans-unit> |
657 | <trans-unit id="1909672990242291785" datatype="html"> | 661 | <trans-unit id="1909672990242291785" datatype="html"> |
658 | <source>How you plan to pay for keeping your instance running</source> | 662 | <source>How you plan to pay for keeping your instance running</source> |
659 | <target state="new">How you plan to pay for keeping your instance running</target> | 663 | <target state="translated">كيف تخطط لتمويل مصاريف مثيل الخادم</target> |
660 | <context-group purpose="location"> | 664 | <context-group purpose="location"> |
661 | <context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context> | 665 | <context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context> |
662 | <context context-type="linenumber">18</context> | 666 | <context context-type="linenumber">18</context> |
@@ -715,81 +719,84 @@ | |||
715 | <trans-unit id="1516969129397662377" datatype="html"> | 719 | <trans-unit id="1516969129397662377" datatype="html"> |
716 | <source>Welcome to PeerTube, dear administrator!</source> | 720 | <source>Welcome to PeerTube, dear administrator!</source> |
717 | <target>مرحبًا بك في بيرتيوب ، مديرنا العزيز!</target> | 721 | <target>مرحبًا بك في بيرتيوب ، مديرنا العزيز!</target> |
718 | 722 | <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> | |
719 | <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> | 723 | </trans-unit> |
720 | <trans-unit id="807030720531713957" datatype="html"> | 724 | <trans-unit id="807030720531713957" datatype="html"> |
721 | <source>CLI documentation</source> | 725 | <source>CLI documentation</source> |
722 | <target>وثائق CLI</target> | 726 | <target>وثائق CLI</target> |
723 | 727 | <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> | |
724 | <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> | 728 | </trans-unit> |
725 | <trans-unit id="199127249622290422" datatype="html"> | 729 | <trans-unit id="199127249622290422" datatype="html"> |
726 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> | 730 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> |
727 | <target>ارفع أو استورد ملفات الفيديو ،راجع السجلات، نظف أدلة التخزين، أو أعد تعيين كلمة مرور المستخدم ...</target> | 731 | <target>ارفع أو استورد ملفات الفيديو ،راجع السجلات، نظف أدلة التخزين، أو أعد تعيين كلمة مرور المستخدم ...</target> |
728 | 732 | <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> | |
729 | <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> | 733 | </trans-unit> |
730 | <trans-unit id="249453844439446209" datatype="html"> | 734 | <trans-unit id="249453844439446209" datatype="html"> |
731 | <source>Administer documentation</source> | 735 | <source>Administer documentation</source> |
732 | <target>توثيق الإدارة</target> | 736 | <target>توثيق الإدارة</target> |
733 | 737 | <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> | |
734 | <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> | 738 | </trans-unit> |
735 | <trans-unit id="5910950876330656326" datatype="html"> | 739 | <trans-unit id="5910950876330656326" datatype="html"> |
736 | <source>Managing users, following other instances, dealing with spammers...</source> | 740 | <source>Managing users, following other instances, dealing with spammers...</source> |
737 | <target>إدارة المستخدمين ، متابعة مثيلات الخادم الأخرى ، التعامل مع مرسلي الرسائل غير المرغوب فيها ...</target> | 741 | <target>إدارة المستخدمين ، متابعة مثيلات الخادم الأخرى ، التعامل مع مرسلي الرسائل غير المرغوب فيها ...</target> |
738 | 742 | <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> | |
739 | <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> | 743 | </trans-unit> |
740 | <trans-unit id="879127294610588497" datatype="html"> | 744 | <trans-unit id="879127294610588497" datatype="html"> |
741 | <source>Use documentation</source> | 745 | <source>Use documentation</source> |
742 | <target>وثائق الاستخدام</target> | 746 | <target>وثائق الاستخدام</target> |
743 | 747 | <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> | |
744 | <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> | 748 | </trans-unit> |
745 | <trans-unit id="3848077896245199337" datatype="html"> | 749 | <trans-unit id="3848077896245199337" datatype="html"> |
746 | <source>Setup your account, managing video playlists, discover third-party applications...</source> | 750 | <source>Setup your account, managing video playlists, discover third-party applications...</source> |
747 | <target>قم بإعداد حسابك ، وإدارة قوائم تشغيل الفيديو ، واكتشاف تطبيقات الطرف الثالث ...</target> | 751 | <target>قم بإعداد حسابك ، وإدارة قوائم تشغيل الفيديو ، واكتشاف تطبيقات الطرف الثالث ...</target> |
748 | 752 | <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> | |
749 | <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> | 753 | </trans-unit> |
750 | <trans-unit id="6284442506490785579" datatype="html"> | 754 | <trans-unit id="6284442506490785579" datatype="html"> |
751 | <source>Useful links</source> | 755 | <source>Useful links</source> |
752 | <target>روابط مفيدة</target> | 756 | <target>روابط مفيدة</target> |
753 | 757 | <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> | |
754 | <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> | 758 | </trans-unit> |
755 | <trans-unit id="5170617864166788170" datatype="html"> | 759 | <trans-unit id="5170617864166788170" datatype="html"> |
756 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> | 760 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> |
757 | <target>موقع PeerTube الرسمي (الأخبار ، الدعم ، المساهمة ...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></target> | 761 | <target>موقع PeerTube الرسمي (الأخبار ، الدعم ، المساهمة ...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></target> |
758 | 762 | <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> | |
759 | <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> | 763 | </trans-unit> |
760 | <trans-unit id="4614992717645869756" datatype="html"> | 764 | <trans-unit id="4614992717645869756" datatype="html"> |
761 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> | 765 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> |
762 | <target>أضف مثيل الخادم الخاص بك الى فهرس PeerTube العام: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></target> | 766 | <target>أضف مثيل الخادم الخاص بك الى فهرس PeerTube العام: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></target> |
763 | 767 | <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> | |
764 | <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> | 768 | </trans-unit> |
765 | <trans-unit id="2081626998027585315" datatype="html"> | 769 | <trans-unit id="2081626998027585315" datatype="html"> |
766 | <source>It's time to configure your instance!</source> | 770 | <source>It's time to configure your instance!</source> |
767 | <target>حان الوقت تكوين مثيل الخادم الخاص بك!</target> | 771 | <target>حان الوقت تكوين مثيل الخادم الخاص بك!</target> |
768 | 772 | <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> | |
769 | <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> | 773 | </trans-unit> |
770 | <trans-unit id="5083058563861587027" datatype="html"> | 774 | <trans-unit id="5083058563861587027" datatype="html"> |
771 | <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> | 775 | <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> |
772 | <target>أختيارك <x id="START_TAG_STRONG"/>اسما لمثيل الخادم<x id="CLOSE_TAG_STRONG"/> واعدادك <x id="START_TAG_STRONG"/>لوصف<x id="CLOSE_TAG_STRONG"/> ، تحدد فيه من <x id="START_TAG_STRONG"/>أنت<x id="CLOSE_TAG_STRONG"/> ، لماذا <x id="START_TAG_STRONG"/>قمت بأنشاء هذا المثيل<x id="CLOSE_TAG_STRONG"/>، <x id="START_TAG_STRONG"/>وكم من الوقت<x id="CLOSE_TAG_STRONG"/> تخطط <x id="START_TAG_STRONG"/> لإبقائه شغالا<x id="CLOSE_TAG_STRONG"/>. أمر مهم ليفهم الزوار نوع مثيل الخادم الذي يستخدمونه. </target> | 776 | <target>أختيارك <x id="START_TAG_STRONG"/>اسما لمثيل الخادم<x id="CLOSE_TAG_STRONG"/> واعدادك <x id="START_TAG_STRONG"/>لوصف<x id="CLOSE_TAG_STRONG"/> ، تحدد فيه من <x id="START_TAG_STRONG"/>أنت<x id="CLOSE_TAG_STRONG"/> ، لماذا <x id="START_TAG_STRONG"/>قمت بأنشاء هذا المثيل<x id="CLOSE_TAG_STRONG"/>، <x id="START_TAG_STRONG"/>وكم من الوقت<x id="CLOSE_TAG_STRONG"/> تخطط <x id="START_TAG_STRONG"/> لإبقائه شغالا<x id="CLOSE_TAG_STRONG"/>. أمر مهم ليفهم الزوار نوع مثيل الخادم الذي يستخدمونه. </target> |
773 | 777 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">58</context></context-group> | |
774 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 778 | </trans-unit> |
775 | <trans-unit id="5329436244765769292" datatype="html"> | 779 | <trans-unit id="5329436244765769292" datatype="html"> |
776 | <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> | 780 | <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> |
777 | <target state="translated">إذا أردت فتح التسجيل، رجاء حدد <x id="START_TAG_STRONG"/>قواعد الاشراف<x id="CLOSE_TAG_STRONG"/>، واكتب <x id="START_TAG_STRONG"/>شروط استخدام مثيل الخادم<x id="START_TAG_STRONG"/> ،وحدد الفئات واللغات التي تستخدم. بهذا ستسمح للمتسخدمين بتحديد مثيل الخادم <x id="START_TAG_STRONG"/>الذي يناسبهم<x id="CLOSE_TAG_STRONG"/>. </target> | 781 | <target state="translated">إذا أردت فتح التسجيل، رجاء حدد <x id="START_TAG_STRONG"/>قواعد الاشراف<x id="CLOSE_TAG_STRONG"/>، واكتب <x id="START_TAG_STRONG"/>شروط استخدام مثيل الخادم<x id="START_TAG_STRONG"/> ،وحدد الفئات واللغات التي تستخدم. بهذا ستسمح للمتسخدمين بتحديد مثيل الخادم <x id="START_TAG_STRONG"/>الذي يناسبهم<x id="CLOSE_TAG_STRONG"/>. </target> |
778 | 782 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">64</context></context-group> | |
779 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 783 | </trans-unit> |
780 | <trans-unit id="5704345824323933019" datatype="html"> | 784 | <trans-unit id="5704345824323933019" datatype="html"> |
781 | <source>Remind me later</source> | 785 | <source>Remind me later</source> |
782 | <target>ذكرني لاحقا</target> | 786 | <target>ذكرني لاحقا</target> |
783 | 787 | <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> | |
784 | <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/admin-welcome-modal.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit><trans-unit id="7997432701743294657" datatype="html"> | 788 | <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> |
785 | <source> Set up </source><target state="new"> Set up </target> | 789 | </trans-unit> |
786 | 790 | <trans-unit id="7997432701743294657" datatype="html"> | |
787 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 791 | <source>Set up</source> |
792 | <target state="translated">ثبّت</target> | ||
793 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">35</context></context-group> | ||
794 | </trans-unit> | ||
788 | <trans-unit id="9202089339019827574" datatype="html"> | 795 | <trans-unit id="9202089339019827574" datatype="html"> |
789 | <source>Configure my instance</source> | 796 | <source>Configure my instance</source> |
790 | <target>كوّن مثيل الخادم الخاص بي</target> | 797 | <target>كوّن مثيل الخادم الخاص بي</target> |
791 | 798 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">81</context></context-group> | |
792 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit> | 799 | </trans-unit> |
793 | <trans-unit id="5410940035535748578" datatype="html"> | 800 | <trans-unit id="5410940035535748578" datatype="html"> |
794 | <source>Close this message</source> | 801 | <source>Close this message</source> |
795 | <target>أغلق هذه الرسالة</target> | 802 | <target>أغلق هذه الرسالة</target> |
@@ -883,22 +890,24 @@ | |||
883 | <trans-unit id="2454050363478003966" datatype="html"> | 890 | <trans-unit id="2454050363478003966" datatype="html"> |
884 | <source>Login</source> | 891 | <source>Login</source> |
885 | <target>لِج</target> | 892 | <target>لِج</target> |
886 | 893 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login-routing.module.ts</context><context context-type="linenumber">12</context></context-group> | |
887 | 894 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">48</context></context-group> | |
888 | 895 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">99</context></context-group> | |
889 | <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">99</context></context-group></trans-unit> | 896 | </trans-unit> |
890 | <trans-unit id="2308975396733519902" datatype="html"> | 897 | <trans-unit id="2308975396733519902" datatype="html"> |
891 | <source>Create an account</source> | 898 | <source>Create an account</source> |
892 | <target>أنشئ حسابًا</target> | 899 | <target>أنشئ حسابًا</target> |
893 | 900 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">54</context></context-group> | |
894 | 901 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">100</context></context-group> | |
895 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">100</context></context-group></trans-unit> | 902 | </trans-unit> |
896 | <trans-unit id="8936704404804793618" datatype="html"> | 903 | <trans-unit id="8936704404804793618" datatype="html"> |
897 | <source>Videos</source> | 904 | <source>Videos</source> |
898 | <target>الفيديوهات</target> | 905 | <target>الفيديوهات</target> |
899 | 906 | <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> | |
900 | 907 | <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> | |
901 | <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/+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/+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> | 908 | <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> |
909 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">76</context></context-group> | ||
910 | </trans-unit> | ||
902 | <trans-unit id="2689878465089314112" datatype="html"> | 911 | <trans-unit id="2689878465089314112" datatype="html"> |
903 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> | 912 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> |
904 | <target state="translated">الواجهة: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | 913 | <target state="translated">الواجهة: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> |
@@ -913,11 +922,11 @@ | |||
913 | <trans-unit id="1812379335568847528" datatype="html"> | 922 | <trans-unit id="1812379335568847528" datatype="html"> |
914 | <source>Subscriptions</source> | 923 | <source>Subscriptions</source> |
915 | <target>الإشتراكات</target> | 924 | <target>الإشتراكات</target> |
916 | 925 | <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> | |
917 | 926 | <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> | |
918 | 927 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">58</context></context-group> | |
919 | 928 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">91</context></context-group> | |
920 | <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><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">58</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> | 929 | </trans-unit> |
921 | <trans-unit id="186236568870281953" datatype="html"> | 930 | <trans-unit id="186236568870281953" datatype="html"> |
922 | <source>History</source> | 931 | <source>History</source> |
923 | <target>السجل</target> | 932 | <target>السجل</target> |
@@ -927,10 +936,10 @@ | |||
927 | <trans-unit id="1504521795586863905" datatype="html"> | 936 | <trans-unit id="1504521795586863905" datatype="html"> |
928 | <source>VIDEOS</source> | 937 | <source>VIDEOS</source> |
929 | <target>الفيديوهات</target> | 938 | <target>الفيديوهات</target> |
930 | 939 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">82</context></context-group> | |
931 | 940 | <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">215</context></context-group> | |
932 | 941 | <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> | |
933 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">82</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">215</context></context-group><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></trans-unit> | 942 | </trans-unit> |
934 | <trans-unit id="667372110624203230" datatype="html"> | 943 | <trans-unit id="667372110624203230" datatype="html"> |
935 | <source>Import jobs concurrency</source> | 944 | <source>Import jobs concurrency</source> |
936 | <target state="new">Import jobs concurrency</target> | 945 | <target state="new">Import jobs concurrency</target> |
@@ -971,9 +980,9 @@ | |||
971 | <trans-unit id="7922989125096435449" datatype="html"> | 980 | <trans-unit id="7922989125096435449" datatype="html"> |
972 | <source>Contact</source> | 981 | <source>Contact</source> |
973 | <target>اتصل</target> | 982 | <target>اتصل</target> |
974 | 983 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">36</context></context-group> | |
975 | 984 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">136</context></context-group> | |
976 | <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">136</context></context-group></trans-unit> | 985 | </trans-unit> |
977 | <trans-unit id="7911416166208830577" datatype="html"> | 986 | <trans-unit id="7911416166208830577" datatype="html"> |
978 | <source>Help</source> | 987 | <source>Help</source> |
979 | <target>مساعدة</target> | 988 | <target>مساعدة</target> |
@@ -1045,23 +1054,35 @@ | |||
1045 | <source>See all your notifications</source> | 1054 | <source>See all your notifications</source> |
1046 | <target>اعرض كل اشعاراتك</target> | 1055 | <target>اعرض كل اشعاراتك</target> |
1047 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">49</context></context-group> | 1056 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">49</context></context-group> |
1048 | </trans-unit><trans-unit id="5108072242786374364" datatype="html"> | 1057 | </trans-unit> |
1049 | <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> | 1058 | <trans-unit id="5108072242786374364" datatype="html"> |
1050 | 1059 | <source>Welcome to <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, dear user!</source> | |
1051 | <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"> | 1060 | <target state="translated">عزيز المستخدم مرحبًا بك في <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/></target> |
1052 | <source>It's time to set up your account profile!</source><target state="new">It's time to set up your account profile!</target> | 1061 | <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> |
1053 | 1062 | </trans-unit> | |
1054 | <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"> | 1063 | <trans-unit id="8821712929823045567" datatype="html"> |
1055 | <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> | 1064 | <source>It's time to set up your account profile!</source> |
1056 | 1065 | <target state="translated">حان الوقت لتكوين حسابك</target> | |
1057 | <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"> | 1066 | <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> |
1058 | <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> | 1067 | </trans-unit> |
1059 | 1068 | <trans-unit id="7239874680342223476" datatype="html"> | |
1060 | <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"> | 1069 | <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> |
1061 | <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> | 1070 | <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> |
1062 | 1071 | <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> | |
1063 | <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"> | 1072 | </trans-unit> |
1064 | <source>Don't show me this anymore</source><target state="new">Don't show me this anymore</target> | 1073 | <trans-unit id="5856432243446401016" datatype="html"> |
1074 | <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> | ||
1075 | <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> | ||
1076 | <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> | ||
1077 | </trans-unit> | ||
1078 | <trans-unit id="3221645359464920754" datatype="html"> | ||
1079 | <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> | ||
1080 | <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> | ||
1081 | <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> | ||
1082 | </trans-unit> | ||
1083 | <trans-unit id="2218100934178971211" datatype="html"> | ||
1084 | <source>Don't show me this anymore</source> | ||
1085 | <target state="translated">لا تريني هذا مجددًا</target> | ||
1065 | <context-group purpose="location"> | 1086 | <context-group purpose="location"> |
1066 | <context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context> | 1087 | <context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context> |
1067 | <context context-type="linenumber">23</context> | 1088 | <context context-type="linenumber">23</context> |
@@ -1069,9 +1090,9 @@ | |||
1069 | </trans-unit> | 1090 | </trans-unit> |
1070 | <trans-unit id="4424964105331349857" datatype="html"> | 1091 | <trans-unit id="4424964105331349857" datatype="html"> |
1071 | <source>I'm a teapot</source> | 1092 | <source>I'm a teapot</source> |
1072 | <target state="new">I'm a teapot</target> | 1093 | <target state="translated">أنا إبريق شاي</target> |
1073 | 1094 | <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> | |
1074 | <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> | 1095 | </trans-unit> |
1075 | <trans-unit id="1597262876035959248" datatype="html"> | 1096 | <trans-unit id="1597262876035959248" datatype="html"> |
1076 | <source>That's an error.</source> | 1097 | <source>That's an error.</source> |
1077 | <target state="translated">هذا خطأ.</target> | 1098 | <target state="translated">هذا خطأ.</target> |
@@ -1082,7 +1103,7 @@ | |||
1082 | </trans-unit> | 1103 | </trans-unit> |
1083 | <trans-unit id="3343007694071351756" datatype="html"> | 1104 | <trans-unit id="3343007694071351756" datatype="html"> |
1084 | <source>We couldn't find any video tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</source> | 1105 | <source>We couldn't find any video tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</source> |
1085 | <target state="new">We couldn't find any video tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</target> | 1106 | <target state="translated">لم نجد فيديو مرتبط بالرابط <x id="INTERPOLATION" equiv-text="{{ pathname }}"/></target> |
1086 | <context-group purpose="location"> | 1107 | <context-group purpose="location"> |
1087 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1108 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1088 | <context context-type="linenumber">7</context> | 1109 | <context context-type="linenumber">7</context> |
@@ -1090,7 +1111,7 @@ | |||
1090 | </trans-unit> | 1111 | </trans-unit> |
1091 | <trans-unit id="7366678433039425999" datatype="html"> | 1112 | <trans-unit id="7366678433039425999" datatype="html"> |
1092 | <source>We couldn't find any resource tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</source> | 1113 | <source>We couldn't find any resource tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</source> |
1093 | <target state="new">We couldn't find any resource tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</target> | 1114 | <target state="translated">لم يّعثر على أي مصدر يقود إليه الرابط<x id="INTERPOLATION" equiv-text="{{ pathname }}"/>.</target> |
1094 | <context-group purpose="location"> | 1115 | <context-group purpose="location"> |
1095 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1116 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1096 | <context context-type="linenumber">8</context> | 1117 | <context context-type="linenumber">8</context> |
@@ -1109,7 +1130,7 @@ | |||
1109 | </trans-unit> | 1130 | </trans-unit> |
1110 | <trans-unit id="1171455174603388942" datatype="html"> | 1131 | <trans-unit id="1171455174603388942" datatype="html"> |
1111 | <source>The video may have been moved or deleted</source> | 1132 | <source>The video may have been moved or deleted</source> |
1112 | <target state="new">The video may have been moved or deleted</target> | 1133 | <target state="translated">إما أن الفيديو نُقل أو حُذف</target> |
1113 | <context-group purpose="location"> | 1134 | <context-group purpose="location"> |
1114 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1135 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1115 | <context context-type="linenumber">17</context> | 1136 | <context context-type="linenumber">17</context> |
@@ -1117,7 +1138,7 @@ | |||
1117 | </trans-unit> | 1138 | </trans-unit> |
1118 | <trans-unit id="2213348264902218064" datatype="html"> | 1139 | <trans-unit id="2213348264902218064" datatype="html"> |
1119 | <source>The resource may have been moved or deleted</source> | 1140 | <source>The resource may have been moved or deleted</source> |
1120 | <target state="new">The resource may have been moved or deleted</target> | 1141 | <target state="translated">ربما حُذف المصدر أو نُقل</target> |
1121 | <context-group purpose="location"> | 1142 | <context-group purpose="location"> |
1122 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1143 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1123 | <context context-type="linenumber">18</context> | 1144 | <context context-type="linenumber">18</context> |
@@ -1130,12 +1151,12 @@ | |||
1130 | </trans-unit> | 1151 | </trans-unit> |
1131 | <trans-unit id="3290262698447971494" datatype="html"> | 1152 | <trans-unit id="3290262698447971494" datatype="html"> |
1132 | <source>You are not authorized here.</source> | 1153 | <source>You are not authorized here.</source> |
1133 | <target state="new">You are not authorized here.</target> | 1154 | <target state="translated">ليس لديك تصريح للتواجد هنا.</target> |
1134 | <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> | 1155 | <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> |
1135 | </trans-unit> | 1156 | </trans-unit> |
1136 | <trans-unit id="6209939621665316894" datatype="html"> | 1157 | <trans-unit id="6209939621665316894" datatype="html"> |
1137 | <source>You might need to check your account is allowed by the video or instance owner.</source> | 1158 | <source>You might need to check your account is allowed by the video or instance owner.</source> |
1138 | <target state="new">You might need to check your account is allowed by the video or instance owner.</target> | 1159 | <target state="translated">تحقق إن اعطاك مالك المثيل أو الفيديو تصريحًا</target> |
1139 | <context-group purpose="location"> | 1160 | <context-group purpose="location"> |
1140 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1161 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1141 | <context context-type="linenumber">30</context> | 1162 | <context context-type="linenumber">30</context> |
@@ -1143,7 +1164,7 @@ | |||
1143 | </trans-unit> | 1164 | </trans-unit> |
1144 | <trans-unit id="3543381263966122204" datatype="html"> | 1165 | <trans-unit id="3543381263966122204" datatype="html"> |
1145 | <source>You might need to check your account is allowed by the resource or instance owner.</source> | 1166 | <source>You might need to check your account is allowed by the resource or instance owner.</source> |
1146 | <target state="new">You might need to check your account is allowed by the resource or instance owner.</target> | 1167 | <target state="translated">تحقق إن كان مصُرحًا لك الوصول لهذا المصدر</target> |
1147 | <context-group purpose="location"> | 1168 | <context-group purpose="location"> |
1148 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1169 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1149 | <context context-type="linenumber">31</context> | 1170 | <context context-type="linenumber">31</context> |
@@ -1164,8 +1185,8 @@ | |||
1164 | <trans-unit id="2971365540217107489" datatype="html"> | 1185 | <trans-unit id="2971365540217107489" datatype="html"> |
1165 | <source>Media is too large for the server. Please contact you administrator if you want to increase the limit size.</source> | 1186 | <source>Media is too large for the server. Please contact you administrator if you want to increase the limit size.</source> |
1166 | <target state="translated">هذا الملف كبير. اتصل بالمدير حتى يزيد حد الرفع.</target> | 1187 | <target state="translated">هذا الملف كبير. اتصل بالمدير حتى يزيد حد الرفع.</target> |
1167 | 1188 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">65</context></context-group> | |
1168 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">65</context></context-group></trans-unit> | 1189 | </trans-unit> |
1169 | <trans-unit id="2468689683507870964" datatype="html"> | 1190 | <trans-unit id="2468689683507870964" datatype="html"> |
1170 | <source>In this instance's network</source> | 1191 | <source>In this instance's network</source> |
1171 | <target state="translated">في شبكة هذ المثيل</target> | 1192 | <target state="translated">في شبكة هذ المثيل</target> |
@@ -1193,7 +1214,7 @@ | |||
1193 | </trans-unit> | 1214 | </trans-unit> |
1194 | <trans-unit id="2807610143550376912" datatype="html"> | 1215 | <trans-unit id="2807610143550376912" datatype="html"> |
1195 | <source>Your query will be matched against video names or descriptions, channel names.</source> | 1216 | <source>Your query will be matched against video names or descriptions, channel names.</source> |
1196 | <target state="new">Your query will be matched against video names or descriptions, channel names.</target> | 1217 | <target state="translated">سيُطابق طلبك مع اسماء الفيديوهات و وصفها وأسماء القنوات.</target> |
1197 | <context-group purpose="location"> | 1218 | <context-group purpose="location"> |
1198 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> | 1219 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> |
1199 | <context context-type="linenumber">37</context> | 1220 | <context context-type="linenumber">37</context> |
@@ -1233,32 +1254,33 @@ | |||
1233 | <trans-unit id="2159130950882492111" datatype="html"> | 1254 | <trans-unit id="2159130950882492111" datatype="html"> |
1234 | <source>Cancel</source> | 1255 | <source>Cancel</source> |
1235 | <target>ألغِ</target> | 1256 | <target>ألغِ</target> |
1236 | 1257 | <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> | |
1237 | 1258 | <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> | |
1238 | 1259 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">121</context></context-group> | |
1239 | 1260 | <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> | |
1240 | 1261 | <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> | |
1241 | 1262 | <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> | |
1242 | 1263 | <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> | |
1243 | 1264 | <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> | |
1244 | 1265 | <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> | |
1245 | 1266 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">416</context></context-group> | |
1246 | 1267 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.html</context><context context-type="linenumber">20</context></context-group> | |
1247 | 1268 | <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> | |
1248 | 1269 | <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> | |
1249 | 1270 | <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> | |
1250 | 1271 | <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> | |
1251 | 1272 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">92</context></context-group> | |
1252 | 1273 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">26</context></context-group> | |
1253 | 1274 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">38</context></context-group> | |
1254 | <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">121</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-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/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">416</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">92</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">26</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">38</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> | 1275 | <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> |
1276 | </trans-unit> | ||
1255 | <trans-unit id="4209525355702493436" datatype="html"> | 1277 | <trans-unit id="4209525355702493436" datatype="html"> |
1256 | <source>Ban</source> | 1278 | <source>Ban</source> |
1257 | <target>احظر</target> | 1279 | <target>احظر</target> |
1258 | 1280 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">87</context></context-group> | |
1259 | 1281 | <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> | |
1260 | 1282 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">271</context></context-group> | |
1261 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">87</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-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">271</context></context-group></trans-unit> | 1283 | </trans-unit> |
1262 | <trans-unit id="6325096236207614377" datatype="html"> | 1284 | <trans-unit id="6325096236207614377" datatype="html"> |
1263 | <source>Reason...</source> | 1285 | <source>Reason...</source> |
1264 | <target>السبب…</target> | 1286 | <target>السبب…</target> |
@@ -1298,8 +1320,10 @@ | |||
1298 | <source>Blocking this live will automatically terminate the live stream.</source> | 1320 | <source>Blocking this live will automatically terminate the live stream.</source> |
1299 | <target state="translated">حجب هذا البث المباشر سينهيه تلقائيا.</target> | 1321 | <target state="translated">حجب هذا البث المباشر سينهيه تلقائيا.</target> |
1300 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">33</context></context-group> | 1322 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">33</context></context-group> |
1301 | </trans-unit><trans-unit id="2466846716878254816" datatype="html"> | 1323 | </trans-unit> |
1302 | <source>Element <x id="PH" equiv-text="param"/> not found</source><target state="new">Element <x id="PH" equiv-text="param"/> not found</target> | 1324 | <trans-unit id="2466846716878254816" datatype="html"> |
1325 | <source>Element <x id="PH" equiv-text="param"/> not found</source> | ||
1326 | <target state="translated">لم يُعثر على العنصر <x id="PH" equiv-text="param"/></target> | ||
1303 | <context-group purpose="location"> | 1327 | <context-group purpose="location"> |
1304 | <context context-type="sourcefile">src/app/shared/shared-search/find-in-bulk.service.ts</context> | 1328 | <context context-type="sourcefile">src/app/shared/shared-search/find-in-bulk.service.ts</context> |
1305 | <context context-type="linenumber">80</context> | 1329 | <context context-type="linenumber">80</context> |
@@ -1322,7 +1346,7 @@ | |||
1322 | </trans-unit> | 1346 | </trans-unit> |
1323 | <trans-unit id="8343217707114977013" datatype="html"> | 1347 | <trans-unit id="8343217707114977013" datatype="html"> |
1324 | <source>The contact form is not enabled on this instance.</source> | 1348 | <source>The contact form is not enabled on this instance.</source> |
1325 | <target state="new">The contact form is not enabled on this instance.</target> | 1349 | <target state="translated">نموذج المراسلة غير مفعل على هذا المثيل.</target> |
1326 | <context-group purpose="location"> | 1350 | <context-group purpose="location"> |
1327 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> | 1351 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> |
1328 | <context context-type="linenumber">56</context> | 1352 | <context context-type="linenumber">56</context> |
@@ -1389,14 +1413,14 @@ | |||
1389 | <trans-unit id="658727060940996385" datatype="html"> | 1413 | <trans-unit id="658727060940996385" datatype="html"> |
1390 | <source>Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</source> | 1414 | <source>Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</source> |
1391 | <target state="translated">تجديد الرمز سيمنع العملاء الذين يستخدمون الرمز القديم من جلب الخلاصات، لذا عليك تكوينهم لاستخدام الرمز الجديد. تُتابع؟</target> | 1415 | <target state="translated">تجديد الرمز سيمنع العملاء الذين يستخدمون الرمز القديم من جلب الخلاصات، لذا عليك تكوينهم لاستخدام الرمز الجديد. تُتابع؟</target> |
1392 | 1416 | <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> | |
1393 | <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> | 1417 | </trans-unit> |
1394 | <trans-unit id="270726559962362501" datatype="html"> | 1418 | <trans-unit id="270726559962362501" datatype="html"> |
1395 | <source>Renew token</source> | 1419 | <source>Renew token</source> |
1396 | <target state="translated">جدد الرمز</target> | 1420 | <target state="translated">جدد الرمز</target> |
1397 | 1421 | <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> | |
1398 | 1422 | <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> | |
1399 | <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> | 1423 | </trans-unit> |
1400 | <trans-unit id="3029923402309610616" datatype="html"> | 1424 | <trans-unit id="3029923402309610616" datatype="html"> |
1401 | <source>Token renewed. Update your client configuration accordingly.</source> | 1425 | <source>Token renewed. Update your client configuration accordingly.</source> |
1402 | <target state="new">Token renewed. Update your client configuration accordingly.</target> | 1426 | <target state="new">Token renewed. Update your client configuration accordingly.</target> |
@@ -1414,7 +1438,7 @@ | |||
1414 | </trans-unit> | 1438 | </trans-unit> |
1415 | <trans-unit id="5302915360176176604" datatype="html"> | 1439 | <trans-unit id="5302915360176176604" datatype="html"> |
1416 | <source>SUBSCRIPTION FEED</source> | 1440 | <source>SUBSCRIPTION FEED</source> |
1417 | <target state="new">SUBSCRIPTION FEED</target> | 1441 | <target state="translated">تغذية الاشتراكات</target> |
1418 | <context-group purpose="location"> | 1442 | <context-group purpose="location"> |
1419 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 1443 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
1420 | <context context-type="linenumber">8</context> | 1444 | <context context-type="linenumber">8</context> |
@@ -1438,7 +1462,7 @@ | |||
1438 | </trans-unit> | 1462 | </trans-unit> |
1439 | <trans-unit id="6086365181226161548" datatype="html"> | 1463 | <trans-unit id="6086365181226161548" datatype="html"> |
1440 | <source>Feed Token</source> | 1464 | <source>Feed Token</source> |
1441 | <target state="new">Feed Token</target> | 1465 | <target state="translated">رمز التغذية</target> |
1442 | <context-group purpose="location"> | 1466 | <context-group purpose="location"> |
1443 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 1467 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
1444 | <context context-type="linenumber">23</context> | 1468 | <context context-type="linenumber">23</context> |
@@ -1446,7 +1470,7 @@ | |||
1446 | </trans-unit> | 1470 | </trans-unit> |
1447 | <trans-unit id="6492684506192237359" datatype="html"> | 1471 | <trans-unit id="6492684506192237359" datatype="html"> |
1448 | <source>⚠️ Never share your feed token with anyone.</source> | 1472 | <source>⚠️ Never share your feed token with anyone.</source> |
1449 | <target state="new">⚠️ Never share your feed token with anyone.</target> | 1473 | <target state="translated">⚠️ لا تشارك رمز التغذية مع أي أحد.</target> |
1450 | <context-group purpose="location"> | 1474 | <context-group purpose="location"> |
1451 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 1475 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
1452 | <context context-type="linenumber">26</context> | 1476 | <context context-type="linenumber">26</context> |
@@ -1470,14 +1494,14 @@ | |||
1470 | <trans-unit id="6559246822757089203" datatype="html"> | 1494 | <trans-unit id="6559246822757089203" datatype="html"> |
1471 | <source>Clear filters</source> | 1495 | <source>Clear filters</source> |
1472 | <target>امسح المرشحات</target> | 1496 | <target>امسح المرشحات</target> |
1473 | 1497 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.component.html</context><context context-type="linenumber">23</context></context-group> | |
1474 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.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/simple-search-input.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 1498 | <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> |
1499 | </trans-unit> | ||
1475 | <trans-unit id="4266779970063047572" datatype="html"> | 1500 | <trans-unit id="4266779970063047572" datatype="html"> |
1476 | <source>Video/Comment/Account</source> | 1501 | <source>Video/Comment/Account</source> |
1477 | <target state="translated">فيديو\تعليق\حساب</target> | 1502 | <target state="translated">فيديو\تعليق\حساب</target> |
1478 | <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> | 1503 | <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> |
1479 | </trans-unit> | 1504 | </trans-unit> |
1480 | |||
1481 | <trans-unit id="3301856295120048857" datatype="html"> | 1505 | <trans-unit id="3301856295120048857" datatype="html"> |
1482 | <source>State <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 1506 | <source>State <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
1483 | <target>حالة <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target> | 1507 | <target>حالة <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target> |
@@ -1554,8 +1578,6 @@ | |||
1554 | <target>يعرض <x id="INTERPOLATION"/> ل <x id="INTERPOLATION_1"/> من <x id="INTERPOLATION_2"/> متابع</target> | 1578 | <target>يعرض <x id="INTERPOLATION"/> ل <x id="INTERPOLATION_1"/> من <x id="INTERPOLATION_2"/> متابع</target> |
1555 | <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> | 1579 | <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> |
1556 | </trans-unit> | 1580 | </trans-unit> |
1557 | |||
1558 | |||
1559 | <trans-unit id="6571718060636962350" datatype="html"> | 1581 | <trans-unit id="6571718060636962350" datatype="html"> |
1560 | <source>Redundancy allowed <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 1582 | <source>Redundancy allowed <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
1561 | <target state="translated">Redundancy allowed <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target> | 1583 | <target state="translated">Redundancy allowed <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target> |
@@ -1564,9 +1586,8 @@ | |||
1564 | <trans-unit id="9160510009013134726" datatype="html"> | 1586 | <trans-unit id="9160510009013134726" datatype="html"> |
1565 | <source>Unfollow</source> | 1587 | <source>Unfollow</source> |
1566 | <target state="translated">ألغ المتابعة</target> | 1588 | <target state="translated">ألغ المتابعة</target> |
1567 | 1589 | <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> | |
1568 | 1590 | </trans-unit> | |
1569 | <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> | ||
1570 | <trans-unit id="8246779176913476983" datatype="html"> | 1591 | <trans-unit id="8246779176913476983" datatype="html"> |
1571 | <source>Open instance in a new tab</source> | 1592 | <source>Open instance in a new tab</source> |
1572 | <target>افتح مثيل الخادم في لسان جديد</target> | 1593 | <target>افتح مثيل الخادم في لسان جديد</target> |
@@ -1577,13 +1598,13 @@ | |||
1577 | <trans-unit id="9132918641931433659" datatype="html"> | 1598 | <trans-unit id="9132918641931433659" datatype="html"> |
1578 | <source>No host found matching current filters.</source> | 1599 | <source>No host found matching current filters.</source> |
1579 | <target>لم يُعثر على مضيف مطابق للمرشحات الحالية.</target> | 1600 | <target>لم يُعثر على مضيف مطابق للمرشحات الحالية.</target> |
1580 | 1601 | <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> | |
1581 | <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> | 1602 | </trans-unit> |
1582 | <trans-unit id="7274241885665071790" datatype="html"> | 1603 | <trans-unit id="7274241885665071790" datatype="html"> |
1583 | <source>Your instance is not following anyone.</source> | 1604 | <source>Your instance is not following anyone.</source> |
1584 | <target>مثيل الخادم الخاص بك لا يتابع أي شخص.</target> | 1605 | <target>مثيل الخادم الخاص بك لا يتابع أي شخص.</target> |
1585 | 1606 | <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> | |
1586 | <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> | 1607 | </trans-unit> |
1587 | <trans-unit id="4774348799569692380" datatype="html"> | 1608 | <trans-unit id="4774348799569692380" datatype="html"> |
1588 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> hosts</source> | 1609 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> hosts</source> |
1589 | <target>يعرض <x id="INTERPOLATION"/> ل <x id="INTERPOLATION_1"/> من <x id="INTERPOLATION_2"/> مضيفا</target> | 1610 | <target>يعرض <x id="INTERPOLATION"/> ل <x id="INTERPOLATION_1"/> من <x id="INTERPOLATION_2"/> مضيفا</target> |
@@ -1592,13 +1613,11 @@ | |||
1592 | <trans-unit id="4917252294930256268" datatype="html"> | 1613 | <trans-unit id="4917252294930256268" datatype="html"> |
1593 | <source>It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers.</source> | 1614 | <source>It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers.</source> |
1594 | <target>يبدو أنك لست على خادم HTTPS. يحتاج خادم الويب الخاص بك إلى تنشيط TLS لمتابعة الخوادم.</target> | 1615 | <target>يبدو أنك لست على خادم HTTPS. يحتاج خادم الويب الخاص بك إلى تنشيط TLS لمتابعة الخوادم.</target> |
1595 | 1616 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context><context context-type="linenumber">28</context></context-group> | |
1596 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 1617 | </trans-unit> |
1597 | |||
1598 | |||
1599 | <trans-unit id="9216117865911519658" datatype="html"> | 1618 | <trans-unit id="9216117865911519658" datatype="html"> |
1600 | <source>Action</source> | 1619 | <source>Action</source> |
1601 | <target state="new">Action</target> | 1620 | <target state="translated">الإجراء</target> |
1602 | <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> | 1621 | <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> |
1603 | <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> | 1622 | <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> |
1604 | <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> | 1623 | <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> |
@@ -1677,16 +1696,16 @@ | |||
1677 | <trans-unit id="5674286808255988565" datatype="html"> | 1696 | <trans-unit id="5674286808255988565" datatype="html"> |
1678 | <source>Create</source> | 1697 | <source>Create</source> |
1679 | <target>إنشاء</target> | 1698 | <target>إنشاء</target> |
1680 | 1699 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
1681 | 1700 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
1682 | 1701 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">102</context></context-group> | |
1683 | 1702 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
1684 | 1703 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
1685 | 1704 | <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> | |
1686 | 1705 | <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> | |
1687 | 1706 | <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> | |
1688 | 1707 | <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> | |
1689 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/+my-library/+my-video-channels/my-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-channels/my-video-channel-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-channels/my-video-channel-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-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> | 1708 | </trans-unit> |
1690 | <trans-unit id="8147229944654164397" datatype="html"> | 1709 | <trans-unit id="8147229944654164397" datatype="html"> |
1691 | <source>{VAR_PLURAL, plural, =1 {Video} other {Videos} }</source> | 1710 | <source>{VAR_PLURAL, plural, =1 {Video} other {Videos} }</source> |
1692 | <target>{VAR_PLURAL, plural, =1 {فيديو} other {مقاطع فيديو} }</target> | 1711 | <target>{VAR_PLURAL, plural, =1 {فيديو} other {مقاطع فيديو} }</target> |
@@ -1732,11 +1751,12 @@ | |||
1732 | <trans-unit id="5248717555542428023" datatype="html"> | 1751 | <trans-unit id="5248717555542428023" datatype="html"> |
1733 | <source>Username</source> | 1752 | <source>Username</source> |
1734 | <target>اسم المستخدم</target> | 1753 | <target>اسم المستخدم</target> |
1735 | 1754 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group> | |
1736 | 1755 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group> | |
1737 | 1756 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">111</context></context-group> | |
1738 | 1757 | <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> | |
1739 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/users/user-list/user-list.component.ts</context><context context-type="linenumber">111</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> | 1758 | <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> |
1759 | </trans-unit> | ||
1740 | <trans-unit id="5428411040014095392" datatype="html"> | 1760 | <trans-unit id="5428411040014095392" datatype="html"> |
1741 | <source>e.g. jane_doe</source> | 1761 | <source>e.g. jane_doe</source> |
1742 | <target state="translated">مثل jane_doe</target> | 1762 | <target state="translated">مثل jane_doe</target> |
@@ -1752,14 +1772,15 @@ | |||
1752 | <trans-unit id="4768749765465246664" datatype="html"> | 1772 | <trans-unit id="4768749765465246664" datatype="html"> |
1753 | <source>Email</source> | 1773 | <source>Email</source> |
1754 | <target>البريد الإلكتروني</target> | 1774 | <target>البريد الإلكتروني</target> |
1755 | 1775 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group> | |
1756 | 1776 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group> | |
1757 | 1777 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">112</context></context-group> | |
1758 | 1778 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">111</context></context-group> | |
1759 | 1779 | <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> | |
1760 | 1780 | <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> | |
1761 | 1781 | <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> | |
1762 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/users/user-list/user-list.component.ts</context><context context-type="linenumber">112</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">111</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/+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> | 1782 | <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> |
1783 | </trans-unit> | ||
1763 | <trans-unit id="6475711663580561164" datatype="html"> | 1784 | <trans-unit id="6475711663580561164" datatype="html"> |
1764 | <source>mail@example.com</source> | 1785 | <source>mail@example.com</source> |
1765 | <target>mail@example.com</target> | 1786 | <target>mail@example.com</target> |
@@ -1769,15 +1790,15 @@ | |||
1769 | <trans-unit id="1431416938026210429" datatype="html"> | 1790 | <trans-unit id="1431416938026210429" datatype="html"> |
1770 | <source>Password</source> | 1791 | <source>Password</source> |
1771 | <target>كلمة المرور</target> | 1792 | <target>كلمة المرور</target> |
1772 | 1793 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">117</context></context-group> | |
1773 | 1794 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">117</context></context-group> | |
1774 | 1795 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">38</context></context-group> | |
1775 | 1796 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">40</context></context-group> | |
1776 | 1797 | <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> | |
1777 | 1798 | <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> | |
1778 | 1799 | <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> | |
1779 | 1800 | <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> | |
1780 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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> | 1801 | </trans-unit> |
1781 | <trans-unit id="8371296837649897723" datatype="html"> | 1802 | <trans-unit id="8371296837649897723" datatype="html"> |
1782 | <source>If you leave the password empty, an email will be sent to the user.</source> | 1803 | <source>If you leave the password empty, an email will be sent to the user.</source> |
1783 | <target>إذا تركت كلمة المرور فارغة ، فسيتم إرسال بريد إلكتروني إلى المستخدم.</target> | 1804 | <target>إذا تركت كلمة المرور فارغة ، فسيتم إرسال بريد إلكتروني إلى المستخدم.</target> |
@@ -1787,9 +1808,10 @@ | |||
1787 | <trans-unit id="4145496584631696119" datatype="html"> | 1808 | <trans-unit id="4145496584631696119" datatype="html"> |
1788 | <source>Role</source> | 1809 | <source>Role</source> |
1789 | <target state="translated">الدور</target> | 1810 | <target state="translated">الدور</target> |
1790 | 1811 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> | |
1791 | 1812 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> | |
1792 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/users/user-list/user-list.component.ts</context><context context-type="linenumber">114</context></context-group></trans-unit> | 1813 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">114</context></context-group> |
1814 | </trans-unit> | ||
1793 | <trans-unit id="7046347992315328430" datatype="html"> | 1815 | <trans-unit id="7046347992315328430" datatype="html"> |
1794 | <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> | 1816 | <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> |
1795 | <target state="translated">تحويل الترميز مفعل. سيقتطع الحجم <x id="START_TAG_STRONG"/>الأصلي<x id="CLOSE_TAG_STRONG"/> للفيديو من حصة الفيديو.<x id="LINE_BREAK"/>يمكن لهذا المستخدم رفع ~ <x id="INTERPOLATION"/> كحد أقصى. </target> | 1817 | <target state="translated">تحويل الترميز مفعل. سيقتطع الحجم <x id="START_TAG_STRONG"/>الأصلي<x id="CLOSE_TAG_STRONG"/> للفيديو من حصة الفيديو.<x id="LINE_BREAK"/>يمكن لهذا المستخدم رفع ~ <x id="INTERPOLATION"/> كحد أقصى. </target> |
@@ -1806,9 +1828,10 @@ | |||
1806 | <trans-unit id="2622255144026150901" datatype="html"> | 1828 | <trans-unit id="2622255144026150901" datatype="html"> |
1807 | <source>Auth plugin</source> | 1829 | <source>Auth plugin</source> |
1808 | <target state="new">Auth plugin</target> | 1830 | <target state="new">Auth plugin</target> |
1809 | 1831 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group> | |
1810 | 1832 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group> | |
1811 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/users/user-list/user-list.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1833 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">121</context></context-group> |
1834 | </trans-unit> | ||
1812 | <trans-unit id="588099657508661970" datatype="html"> | 1835 | <trans-unit id="588099657508661970" datatype="html"> |
1813 | <source>None (local authentication)</source> | 1836 | <source>None (local authentication)</source> |
1814 | <target state="translated">بدون (استيثاق محلي)</target> | 1837 | <target state="translated">بدون (استيثاق محلي)</target> |
@@ -1867,9 +1890,9 @@ | |||
1867 | <trans-unit id="8286337167859377104" datatype="html"> | 1890 | <trans-unit id="8286337167859377104" datatype="html"> |
1868 | <source>Create user</source> | 1891 | <source>Create user</source> |
1869 | <target>إنشاء مستخدِم</target> | 1892 | <target>إنشاء مستخدِم</target> |
1870 | 1893 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">96</context></context-group> | |
1871 | 1894 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">20</context></context-group> | |
1872 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">96</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 1895 | </trans-unit> |
1873 | <trans-unit id="8363291180171434623" datatype="html"> | 1896 | <trans-unit id="8363291180171434623" datatype="html"> |
1874 | <source>Table parameters</source> | 1897 | <source>Table parameters</source> |
1875 | <target state="translated">معاملات الجدول</target> | 1898 | <target state="translated">معاملات الجدول</target> |
@@ -1933,7 +1956,7 @@ | |||
1933 | </trans-unit> | 1956 | </trans-unit> |
1934 | <trans-unit id="6124612368324200166" datatype="html"> | 1957 | <trans-unit id="6124612368324200166" datatype="html"> |
1935 | <source>Banned users</source> | 1958 | <source>Banned users</source> |
1936 | <target state="new">Banned users</target> | 1959 | <target state="translated">المستخدمون المحظورون</target> |
1937 | <context-group purpose="location"> | 1960 | <context-group purpose="location"> |
1938 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> | 1961 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> |
1939 | <context context-type="linenumber">40</context> | 1962 | <context context-type="linenumber">40</context> |
@@ -2044,12 +2067,12 @@ | |||
2044 | <trans-unit id="4619188387782427495" datatype="html"> | 2067 | <trans-unit id="4619188387782427495" datatype="html"> |
2045 | <source>More information</source> | 2068 | <source>More information</source> |
2046 | <target state="translated">المزيد من التفاصيل</target> | 2069 | <target state="translated">المزيد من التفاصيل</target> |
2047 | 2070 | <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">36</context></context-group> | |
2048 | 2071 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">56</context></context-group> | |
2049 | 2072 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">56</context></context-group> | |
2050 | 2073 | <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> | |
2051 | 2074 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">32</context></context-group> | |
2052 | <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">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">56</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">56</context></context-group><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><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2075 | </trans-unit> |
2053 | <trans-unit id="3452334748875293295" datatype="html"> | 2076 | <trans-unit id="3452334748875293295" datatype="html"> |
2054 | <source>The video was blocked due to automatic blocking of new videos</source> | 2077 | <source>The video was blocked due to automatic blocking of new videos</source> |
2055 | <target>حُحب الفيديو بسبب الحجب التلقائي لمقاطع الفيديو الجديدة</target> | 2078 | <target>حُحب الفيديو بسبب الحجب التلقائي لمقاطع الفيديو الجديدة</target> |
@@ -2068,8 +2091,10 @@ | |||
2068 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">65</context></context-group> | 2091 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">65</context></context-group> |
2069 | <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> | 2092 | <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> |
2070 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">41</context></context-group> | 2093 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">41</context></context-group> |
2071 | </trans-unit><trans-unit id="8390803680962035202" datatype="html"> | 2094 | </trans-unit> |
2072 | <source>Follower</source><target state="new">Follower</target> | 2095 | <trans-unit id="8390803680962035202" datatype="html"> |
2096 | <source>Follower</source> | ||
2097 | <target state="translated">متابِع</target> | ||
2073 | <context-group purpose="location"> | 2098 | <context-group purpose="location"> |
2074 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> | 2099 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> |
2075 | <context context-type="linenumber">24</context> | 2100 | <context context-type="linenumber">24</context> |
@@ -2092,7 +2117,7 @@ | |||
2092 | </trans-unit> | 2117 | </trans-unit> |
2093 | <trans-unit id="4604870995665811499" datatype="html"> | 2118 | <trans-unit id="4604870995665811499" datatype="html"> |
2094 | <source>Local comments</source> | 2119 | <source>Local comments</source> |
2095 | <target state="new">Local comments</target> | 2120 | <target state="translated">التعليقات المحلية</target> |
2096 | <context-group purpose="location"> | 2121 | <context-group purpose="location"> |
2097 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> | 2122 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> |
2098 | <context context-type="linenumber">48</context> | 2123 | <context context-type="linenumber">48</context> |
@@ -2100,7 +2125,7 @@ | |||
2100 | </trans-unit> | 2125 | </trans-unit> |
2101 | <trans-unit id="2721988499779041837" datatype="html"> | 2126 | <trans-unit id="2721988499779041837" datatype="html"> |
2102 | <source>Remote comments</source> | 2127 | <source>Remote comments</source> |
2103 | <target state="new">Remote comments</target> | 2128 | <target state="translated">التعليقات البعيدة</target> |
2104 | <context-group purpose="location"> | 2129 | <context-group purpose="location"> |
2105 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> | 2130 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> |
2106 | <context context-type="linenumber">52</context> | 2131 | <context context-type="linenumber">52</context> |
@@ -2119,28 +2144,28 @@ | |||
2119 | <trans-unit id="1807029821872995706" datatype="html"> | 2144 | <trans-unit id="1807029821872995706" datatype="html"> |
2120 | <source>Unsolved reports</source> | 2145 | <source>Unsolved reports</source> |
2121 | <target state="new">Unsolved reports</target> | 2146 | <target state="new">Unsolved reports</target> |
2122 | 2147 | <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> | |
2123 | <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> | 2148 | </trans-unit> |
2124 | <trans-unit id="2570256912317308673" datatype="html"> | 2149 | <trans-unit id="2570256912317308673" datatype="html"> |
2125 | <source>Accepted reports</source> | 2150 | <source>Accepted reports</source> |
2126 | <target state="new">Accepted reports</target> | 2151 | <target state="translated">الإبلاغات المقبولة</target> |
2127 | 2152 | <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> | |
2128 | <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> | 2153 | </trans-unit> |
2129 | <trans-unit id="4335414817109654558" datatype="html"> | 2154 | <trans-unit id="4335414817109654558" datatype="html"> |
2130 | <source>Refused reports</source> | 2155 | <source>Refused reports</source> |
2131 | <target state="new">Refused reports</target> | 2156 | <target state="translated">الإبلاغات المرفوضة</target> |
2132 | 2157 | <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> | |
2133 | <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> | 2158 | </trans-unit> |
2134 | <trans-unit id="5604806676748121035" datatype="html"> | 2159 | <trans-unit id="5604806676748121035" datatype="html"> |
2135 | <source>Reports with blocked videos</source> | 2160 | <source>Reports with blocked videos</source> |
2136 | <target state="new">Reports with blocked videos</target> | 2161 | <target state="needs-translation">إبلاغات مقاطع الفيديو المحجوبة</target> |
2137 | 2162 | <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> | |
2138 | <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> | 2163 | </trans-unit> |
2139 | <trans-unit id="5105869928182826553" datatype="html"> | 2164 | <trans-unit id="5105869928182826553" datatype="html"> |
2140 | <source>Reports with deleted videos</source> | 2165 | <source>Reports with deleted videos</source> |
2141 | <target state="new">Reports with deleted videos</target> | 2166 | <target state="new">Reports with deleted videos</target> |
2142 | 2167 | <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> | |
2143 | <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> | 2168 | </trans-unit> |
2144 | <trans-unit id="4678289986918934018" datatype="html"> | 2169 | <trans-unit id="4678289986918934018" datatype="html"> |
2145 | <source>Block reason:</source> | 2170 | <source>Block reason:</source> |
2146 | <target>سبب الحجب:</target> | 2171 | <target>سبب الحجب:</target> |
@@ -2158,14 +2183,14 @@ | |||
2158 | </trans-unit> | 2183 | </trans-unit> |
2159 | <trans-unit id="7755288609601798418" datatype="html"> | 2184 | <trans-unit id="7755288609601798418" datatype="html"> |
2160 | <source>Automatic blocks</source> | 2185 | <source>Automatic blocks</source> |
2161 | <target state="new">Automatic blocks</target> | 2186 | <target state="translated">حجب تلقائي</target> |
2162 | 2187 | <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">32</context></context-group> | |
2163 | <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">32</context></context-group></trans-unit> | 2188 | </trans-unit> |
2164 | <trans-unit id="6510868134640657079" datatype="html"> | 2189 | <trans-unit id="6510868134640657079" datatype="html"> |
2165 | <source>Manual blocks</source> | 2190 | <source>Manual blocks</source> |
2166 | <target state="new">Manual blocks</target> | 2191 | <target state="translated">حجب يدوي</target> |
2167 | 2192 | <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">36</context></context-group> | |
2168 | <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">36</context></context-group></trans-unit> | 2193 | </trans-unit> |
2169 | <trans-unit id="2143435845912984377" datatype="html"> | 2194 | <trans-unit id="2143435845912984377" datatype="html"> |
2170 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> blocked videos</source> | 2195 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> blocked videos</source> |
2171 | <target state="translated">يعرض <x id="INTERPOLATION"/> ل<x id="INTERPOLATION_1"/> من <x id="INTERPOLATION_2"/> فيديوهات محجوبة</target> | 2196 | <target state="translated">يعرض <x id="INTERPOLATION"/> ل<x id="INTERPOLATION_1"/> من <x id="INTERPOLATION_2"/> فيديوهات محجوبة</target> |
@@ -2221,9 +2246,9 @@ | |||
2221 | <trans-unit id="2662644497259948010" datatype="html"> | 2246 | <trans-unit id="2662644497259948010" datatype="html"> |
2222 | <source>Comment</source> | 2247 | <source>Comment</source> |
2223 | <target state="translated">علّق</target> | 2248 | <target state="translated">علّق</target> |
2224 | 2249 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">44</context></context-group> | |
2225 | 2250 | <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> | |
2226 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">44</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> | 2251 | </trans-unit> |
2227 | <trans-unit id="1359961255805685312" datatype="html"> | 2252 | <trans-unit id="1359961255805685312" datatype="html"> |
2228 | <source>This video has been reported multiple times.</source> | 2253 | <source>This video has been reported multiple times.</source> |
2229 | <target>تم الإبلاغ عن هذا الفيديو عدة مرات.</target> | 2254 | <target>تم الإبلاغ عن هذا الفيديو عدة مرات.</target> |
@@ -2243,10 +2268,10 @@ | |||
2243 | <trans-unit id="6381490568322624964" datatype="html"> | 2268 | <trans-unit id="6381490568322624964" datatype="html"> |
2244 | <source>Deleted</source> | 2269 | <source>Deleted</source> |
2245 | <target>حذف</target> | 2270 | <target>حذف</target> |
2246 | 2271 | <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> | |
2247 | 2272 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">91</context></context-group> | |
2248 | 2273 | <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">34</context></context-group> | |
2249 | <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-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">91</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">34</context></context-group></trans-unit> | 2274 | </trans-unit> |
2250 | <trans-unit id="1443698606045744844" datatype="html"> | 2275 | <trans-unit id="1443698606045744844" datatype="html"> |
2251 | <source>Video was deleted</source> | 2276 | <source>Video was deleted</source> |
2252 | <target>تم حذف الفيديو</target> | 2277 | <target>تم حذف الفيديو</target> |
@@ -2262,7 +2287,6 @@ | |||
2262 | <target>يعرض <x id="INTERPOLATION"/> ل <x id="INTERPOLATION_1"/> من <x id="INTERPOLATION_2"/> إبلغا</target> | 2287 | <target>يعرض <x id="INTERPOLATION"/> ل <x id="INTERPOLATION_1"/> من <x id="INTERPOLATION_2"/> إبلغا</target> |
2263 | <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> | 2288 | <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> |
2264 | </trans-unit> | 2289 | </trans-unit> |
2265 | |||
2266 | <trans-unit id="3109314382334906782" datatype="html"> | 2290 | <trans-unit id="3109314382334906782" datatype="html"> |
2267 | <source>Reportee</source> | 2291 | <source>Reportee</source> |
2268 | <target>مراسل</target> | 2292 | <target>مراسل</target> |
@@ -2338,11 +2362,11 @@ | |||
2338 | <trans-unit id="2381859602529023966" datatype="html"> | 2362 | <trans-unit id="2381859602529023966" datatype="html"> |
2339 | <source>Instance</source> | 2363 | <source>Instance</source> |
2340 | <target>مثيل خادم</target> | 2364 | <target>مثيل خادم</target> |
2341 | 2365 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">5</context></context-group> | |
2342 | 2366 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">192</context></context-group> | |
2343 | 2367 | <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> | |
2344 | 2368 | <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> | |
2345 | <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">192</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> | 2369 | </trans-unit> |
2346 | <trans-unit id="1300704815627663264" datatype="html"> | 2370 | <trans-unit id="1300704815627663264" datatype="html"> |
2347 | <source>Muted at <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 2371 | <source>Muted at <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
2348 | <target>كُتم على<x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target> | 2372 | <target>كُتم على<x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></target> |
@@ -2446,29 +2470,29 @@ | |||
2446 | <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">36</context></context-group> | 2470 | <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">36</context></context-group> |
2447 | <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> | 2471 | <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> |
2448 | </trans-unit> | 2472 | </trans-unit> |
2449 | |||
2450 | <trans-unit id="2144158274184161635" datatype="html"> | 2473 | <trans-unit id="2144158274184161635" datatype="html"> |
2451 | <source>Videos with the most interactions for recent videos</source> | 2474 | <source>Videos with the most interactions for recent videos</source> |
2452 | <target state="new">Videos with the most interactions for recent videos</target> | 2475 | <target state="new">Videos with the most interactions for recent videos</target> |
2453 | 2476 | <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> | |
2454 | <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> | 2477 | </trans-unit> |
2455 | <trans-unit id="8312243926314494468" datatype="html"> | 2478 | <trans-unit id="8312243926314494468" datatype="html"> |
2456 | <source>Videos with the most views during the last 24 hours</source> | 2479 | <source>Videos with the most views during the last 24 hours</source> |
2457 | <target state="new">Videos with the most views during the last 24 hours</target> | 2480 | <target state="new">Videos with the most views during the last 24 hours</target> |
2458 | 2481 | <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> | |
2459 | <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"> | 2482 | </trans-unit> |
2460 | <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> | 2483 | <trans-unit id="8731139416455609016" datatype="html"> |
2484 | <source>Videos with the most views during the last <x id="PH" equiv-text="this.trendingDays"/> days</source> | ||
2485 | <target state="new">Videos with the most views during the last <x id="PH" equiv-text="this.trendingDays"/> days</target> | ||
2461 | <context-group purpose="location"> | 2486 | <context-group purpose="location"> |
2462 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> | 2487 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> |
2463 | <context context-type="linenumber">209</context> | 2488 | <context context-type="linenumber">209</context> |
2464 | </context-group> | 2489 | </context-group> |
2465 | </trans-unit> | 2490 | </trans-unit> |
2466 | |||
2467 | <trans-unit id="1671858302647356245" datatype="html"> | 2491 | <trans-unit id="1671858302647356245" datatype="html"> |
2468 | <source>Videos that have the most likes</source> | 2492 | <source>Videos that have the most likes</source> |
2469 | <target state="new">Videos that have the most likes</target> | 2493 | <target state="new">Videos that have the most likes</target> |
2470 | 2494 | <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> | |
2471 | <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> | 2495 | </trans-unit> |
2472 | <trans-unit id="8854094932942190741" datatype="html"> | 2496 | <trans-unit id="8854094932942190741" datatype="html"> |
2473 | <source>Search...</source> | 2497 | <source>Search...</source> |
2474 | <target>البحث…</target> | 2498 | <target>البحث…</target> |
@@ -2554,18 +2578,18 @@ | |||
2554 | <trans-unit id="545410448674339480" datatype="html"> | 2578 | <trans-unit id="545410448674339480" datatype="html"> |
2555 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source> | 2579 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source> |
2556 | <target state="new"><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</target> | 2580 | <target state="new"><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</target> |
2557 | 2581 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">143</context></context-group> | |
2558 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">143</context></context-group></trans-unit> | 2582 | </trans-unit> |
2559 | <trans-unit id="379090446060940062" datatype="html"> | 2583 | <trans-unit id="379090446060940062" datatype="html"> |
2560 | <source>Do you really want to delete all comments of <x id="PH"/>?</source> | 2584 | <source>Do you really want to delete all comments of <x id="PH"/>?</source> |
2561 | <target state="new">Do you really want to delete all comments of <x id="PH"/>?</target> | 2585 | <target state="new">Do you really want to delete all comments of <x id="PH"/>?</target> |
2562 | 2586 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">163</context></context-group> | |
2563 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 2587 | </trans-unit> |
2564 | <trans-unit id="4539246224625965241" datatype="html"> | 2588 | <trans-unit id="4539246224625965241" datatype="html"> |
2565 | <source>Comments of <x id="PH"/> will be deleted in a few minutes</source> | 2589 | <source>Comments of <x id="PH"/> will be deleted in a few minutes</source> |
2566 | <target state="new">Comments of <x id="PH"/> will be deleted in a few minutes</target> | 2590 | <target state="new">Comments of <x id="PH"/> will be deleted in a few minutes</target> |
2567 | 2591 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">175</context></context-group> | |
2568 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">175</context></context-group></trans-unit> | 2592 | </trans-unit> |
2569 | <trans-unit id="7427986413651551775" datatype="html"> | 2593 | <trans-unit id="7427986413651551775" datatype="html"> |
2570 | <source>Video comments</source> | 2594 | <source>Video comments</source> |
2571 | <target state="new">Video comments</target> | 2595 | <target state="new">Video comments</target> |
@@ -2729,8 +2753,9 @@ | |||
2729 | <trans-unit id="6588040559347368313" datatype="html"> | 2753 | <trans-unit id="6588040559347368313" datatype="html"> |
2730 | <source>Add a new category</source> | 2754 | <source>Add a new category</source> |
2731 | <target state="translated">أضف فئة جديدة</target> | 2755 | <target state="translated">أضف فئة جديدة</target> |
2732 | 2756 | <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> | |
2733 | <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> | 2757 | <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> |
2758 | </trans-unit> | ||
2734 | <trans-unit id="5983800192187691457" datatype="html"> | 2759 | <trans-unit id="5983800192187691457" datatype="html"> |
2735 | <source>Main languages you/your moderators speak</source> | 2760 | <source>Main languages you/your moderators speak</source> |
2736 | <target>اللغات الرئيسية التي تتحدثها أنت / المشرفون لديك</target> | 2761 | <target>اللغات الرئيسية التي تتحدثها أنت / المشرفون لديك</target> |
@@ -3562,8 +3587,8 @@ color: red; | |||
3562 | <trans-unit id="8432562579042371182" datatype="html"> | 3587 | <trans-unit id="8432562579042371182" datatype="html"> |
3563 | <source>Options</source> | 3588 | <source>Options</source> |
3564 | <target>الخيارات</target> | 3589 | <target>الخيارات</target> |
3565 | 3590 | <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> | |
3566 | <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> | 3591 | </trans-unit> |
3567 | <trans-unit id="5201790281220738609" datatype="html"> | 3592 | <trans-unit id="5201790281220738609" datatype="html"> |
3568 | <source>Search playlists</source> | 3593 | <source>Search playlists</source> |
3569 | <target>البحث عن قوائم التشغيل</target> | 3594 | <target>البحث عن قوائم التشغيل</target> |
@@ -3593,10 +3618,10 @@ color: red; | |||
3593 | <trans-unit id="3686284950598311784" datatype="html"> | 3618 | <trans-unit id="3686284950598311784" datatype="html"> |
3594 | <source>Private</source> | 3619 | <source>Private</source> |
3595 | <target>خاص</target> | 3620 | <target>خاص</target> |
3596 | 3621 | <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> | |
3597 | 3622 | <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> | |
3598 | 3623 | <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">33</context></context-group> | |
3599 | <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">33</context></context-group></trans-unit> | 3624 | </trans-unit> |
3600 | <trans-unit id="5263519165976128456" datatype="html"> | 3625 | <trans-unit id="5263519165976128456" datatype="html"> |
3601 | <source>Edit starts/stops at</source> | 3626 | <source>Edit starts/stops at</source> |
3602 | <target>تحرير يبدأ / يتوقف عند</target> | 3627 | <target>تحرير يبدأ / يتوقف عند</target> |
@@ -3610,9 +3635,9 @@ color: red; | |||
3610 | <trans-unit id="7766488542631150871" datatype="html"> | 3635 | <trans-unit id="7766488542631150871" datatype="html"> |
3611 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 3636 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
3612 | <target>{VAR_PLURAL, plural, =0 {لا توجد فيديوهات} =1 {فيديو واحد} other {<x id="INTERPOLATION"/> فيديو}}</target> | 3637 | <target>{VAR_PLURAL, plural, =0 {لا توجد فيديوهات} =1 {فيديو واحد} other {<x id="INTERPOLATION"/> فيديو}}</target> |
3613 | 3638 | <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">32</context></context-group> | |
3614 | 3639 | <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> | |
3615 | <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">32</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> | 3640 | </trans-unit> |
3616 | <trans-unit id="7708270344948043036" datatype="html"> | 3641 | <trans-unit id="7708270344948043036" datatype="html"> |
3617 | <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> | 3642 | <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> |
3618 | <target> | 3643 | <target> |
@@ -3635,14 +3660,14 @@ color: red; | |||
3635 | <trans-unit id="5235042777215655908" datatype="html"> | 3660 | <trans-unit id="5235042777215655908" datatype="html"> |
3636 | <source>subtitles</source> | 3661 | <source>subtitles</source> |
3637 | <target>ترجمات</target> | 3662 | <target>ترجمات</target> |
3638 | 3663 | <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> | |
3639 | <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> | 3664 | </trans-unit> |
3640 | <trans-unit id="1006562256968398209" datatype="html"> | 3665 | <trans-unit id="1006562256968398209" datatype="html"> |
3641 | <source>video</source> | 3666 | <source>video</source> |
3642 | <target>فيديو</target> | 3667 | <target>فيديو</target> |
3643 | 3668 | ||
3644 | 3669 | ||
3645 | <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">294</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> | 3670 | <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">301</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> |
3646 | <trans-unit id="6438815964972582865" datatype="html"> | 3671 | <trans-unit id="6438815964972582865" datatype="html"> |
3647 | <source>The following link contains a private token and should not be shared with anyone.</source> | 3672 | <source>The following link contains a private token and should not be shared with anyone.</source> |
3648 | <target state="new"> The following link contains a private token and should not be shared with anyone. </target> | 3673 | <target state="new"> The following link contains a private token and should not be shared with anyone. </target> |
@@ -3710,12 +3735,12 @@ color: red; | |||
3710 | <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> | 3735 | <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> |
3711 | <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> | 3736 | <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> |
3712 | 3737 | ||
3713 | <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">330</context></context-group></trans-unit> | 3738 | <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">337</context></context-group></trans-unit> |
3714 | <trans-unit id="7873395933409147217" datatype="html"> | 3739 | <trans-unit id="7873395933409147217" datatype="html"> |
3715 | <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> | 3740 | <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> |
3716 | <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> | 3741 | <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> |
3717 | 3742 | ||
3718 | <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">349</context></context-group></trans-unit> | 3743 | <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">356</context></context-group></trans-unit> |
3719 | <trans-unit id="5235042777215655908" datatype="html"> | 3744 | <trans-unit id="5235042777215655908" datatype="html"> |
3720 | <source>subtitles</source> | 3745 | <source>subtitles</source> |
3721 | <target state="translated">ترجمات</target> | 3746 | <target state="translated">ترجمات</target> |
@@ -3724,9 +3749,9 @@ color: red; | |||
3724 | <trans-unit id="7539427273132299890" datatype="html"> | 3749 | <trans-unit id="7539427273132299890" datatype="html"> |
3725 | <source>Unlisted</source> | 3750 | <source>Unlisted</source> |
3726 | <target state="translated">غير مفهرس</target> | 3751 | <target state="translated">غير مفهرس</target> |
3727 | 3752 | <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> | |
3728 | 3753 | <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> | |
3729 | <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> | 3754 | </trans-unit> |
3730 | <trans-unit id="7688104409544625220" datatype="html"> | 3755 | <trans-unit id="7688104409544625220" datatype="html"> |
3731 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> | 3756 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> |
3732 | <target>{VAR_PLURAL, plural, =1 {مشاهدة واحدة} other {<x id="INTERPOLATION"/> مشاهدة}}</target> | 3757 | <target>{VAR_PLURAL, plural, =1 {مشاهدة واحدة} other {<x id="INTERPOLATION"/> مشاهدة}}</target> |
@@ -3761,8 +3786,8 @@ color: red; | |||
3761 | <trans-unit id="3267631941074558910" datatype="html"> | 3786 | <trans-unit id="3267631941074558910" datatype="html"> |
3762 | <source>Cannot fetch information of this remote account</source> | 3787 | <source>Cannot fetch information of this remote account</source> |
3763 | <target state="new">Cannot fetch information of this remote account</target> | 3788 | <target state="new">Cannot fetch information of this remote account</target> |
3764 | 3789 | <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> | |
3765 | <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> | 3790 | </trans-unit> |
3766 | <trans-unit id="9081463435738465430" datatype="html"> | 3791 | <trans-unit id="9081463435738465430" datatype="html"> |
3767 | <source>Blocked</source> | 3792 | <source>Blocked</source> |
3768 | <target>محجوب</target> | 3793 | <target>محجوب</target> |
@@ -3776,28 +3801,21 @@ color: red; | |||
3776 | <trans-unit id="834805431202576194" datatype="html"> | 3801 | <trans-unit id="834805431202576194" datatype="html"> |
3777 | <source>No results.</source> | 3802 | <source>No results.</source> |
3778 | <target>لا نتائج.</target> | 3803 | <target>لا نتائج.</target> |
3779 | 3804 | <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> | |
3780 | 3805 | <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> | |
3781 | 3806 | <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> | |
3782 | 3807 | </trans-unit> | |
3783 | |||
3784 | |||
3785 | |||
3786 | |||
3787 | |||
3788 | <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> | ||
3789 | |||
3790 | <trans-unit id="3594371452042277118" datatype="html"> | 3808 | <trans-unit id="3594371452042277118" datatype="html"> |
3791 | <source>Videos with the most interactions for recent videos, minus user history</source> | 3809 | <source>Videos with the most interactions for recent videos, minus user history</source> |
3792 | <target state="new">Videos with the most interactions for recent videos, minus user history</target> | 3810 | <target state="new">Videos with the most interactions for recent videos, minus user history</target> |
3793 | 3811 | <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> | |
3794 | <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> | 3812 | </trans-unit> |
3795 | <trans-unit id="2330577642930707695" datatype="html"> | 3813 | <trans-unit id="2330577642930707695" datatype="html"> |
3796 | <source>Cancel</source> | 3814 | <source>Cancel</source> |
3797 | <target>الغاء</target> | 3815 | <target>الغاء</target> |
3798 | 3816 | ||
3799 | 3817 | ||
3800 | <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">48</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> | 3818 | <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">48</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">23</context></context-group></trans-unit> |
3801 | <trans-unit id="834805431202576194" datatype="html"> | 3819 | <trans-unit id="834805431202576194" datatype="html"> |
3802 | <source>No results.</source> | 3820 | <source>No results.</source> |
3803 | <target state="new">No results.</target> | 3821 | <target state="new">No results.</target> |
@@ -3870,7 +3888,6 @@ color: red; | |||
3870 | <target>إشترك مستخدماً حسابك المحلي</target> | 3888 | <target>إشترك مستخدماً حسابك المحلي</target> |
3871 | <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> | 3889 | <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> |
3872 | </trans-unit> | 3890 | </trans-unit> |
3873 | |||
3874 | <trans-unit id="7639191791633609999" datatype="html"> | 3891 | <trans-unit id="7639191791633609999" datatype="html"> |
3875 | <source>The live stream will be automatically terminated.</source> | 3892 | <source>The live stream will be automatically terminated.</source> |
3876 | <target state="new">The live stream will be automatically terminated.</target> | 3893 | <target state="new">The live stream will be automatically terminated.</target> |
@@ -3986,9 +4003,9 @@ color: red; | |||
3986 | <trans-unit id="4844578664427956129" datatype="html"> | 4003 | <trans-unit id="4844578664427956129" datatype="html"> |
3987 | <source>Change ownership</source> | 4004 | <source>Change ownership</source> |
3988 | <target>تغيير المالك</target> | 4005 | <target>تغيير المالك</target> |
3989 | 4006 | <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> | |
3990 | 4007 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">180</context></context-group> | |
3991 | <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">180</context></context-group></trans-unit> | 4008 | </trans-unit> |
3992 | <trans-unit id="4561174610228620528" datatype="html"> | 4009 | <trans-unit id="4561174610228620528" datatype="html"> |
3993 | <source>Select the next owner</source> | 4010 | <source>Select the next owner</source> |
3994 | <target>أدخل المالك الجديد</target> | 4011 | <target>أدخل المالك الجديد</target> |
@@ -4099,9 +4116,9 @@ color: red; | |||
4099 | <trans-unit id="5417361655914085905" datatype="html"> | 4116 | <trans-unit id="5417361655914085905" datatype="html"> |
4100 | <source>Account page</source> | 4117 | <source>Account page</source> |
4101 | <target>صفحة الحساب</target> | 4118 | <target>صفحة الحساب</target> |
4102 | 4119 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">70</context></context-group> | |
4103 | 4120 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">76</context></context-group> | |
4104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">70</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">76</context></context-group></trans-unit> | 4121 | </trans-unit> |
4105 | <trans-unit id="187187500641108332" datatype="html"> | 4122 | <trans-unit id="187187500641108332" datatype="html"> |
4106 | <source><x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> </source> | 4123 | <source><x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> </source> |
4107 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> </target> | 4124 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> </target> |
@@ -4135,16 +4152,16 @@ color: red; | |||
4135 | <trans-unit id="3122895472333547524" datatype="html"> | 4152 | <trans-unit id="3122895472333547524" datatype="html"> |
4136 | <source>Delete your account</source> | 4153 | <source>Delete your account</source> |
4137 | <target>احذف حسابك</target> | 4154 | <target>احذف حسابك</target> |
4138 | 4155 | <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> | |
4139 | 4156 | <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">26</context></context-group> | |
4140 | <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">26</context></context-group></trans-unit> | 4157 | </trans-unit> |
4141 | <trans-unit id="4000980858407872649" datatype="html"> | 4158 | <trans-unit id="4000980858407872649" datatype="html"> |
4142 | <source>Channel page</source> | 4159 | <source>Channel page</source> |
4143 | <target>صفحة القناة</target> | 4160 | <target>صفحة القناة</target> |
4144 | 4161 | <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> | |
4145 | 4162 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">20</context></context-group> | |
4146 | 4163 | <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> | |
4147 | <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-subscriptions/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">67</context></context-group></trans-unit> | 4164 | </trans-unit> |
4148 | <trans-unit id="5500467336262464724" datatype="html"> | 4165 | <trans-unit id="5500467336262464724" datatype="html"> |
4149 | <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers </source> | 4166 | <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers </source> |
4150 | <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> مشتركا </target> | 4167 | <target><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> مشتركا </target> |
@@ -4168,8 +4185,8 @@ color: red; | |||
4168 | <trans-unit id="4781078006040259916" datatype="html"> | 4185 | <trans-unit id="4781078006040259916" datatype="html"> |
4169 | <source>You don't have any video in your watch history yet.</source> | 4186 | <source>You don't have any video in your watch history yet.</source> |
4170 | <target state="new">You don't have any video in your watch history yet.</target> | 4187 | <target state="new">You don't have any video in your watch history yet.</target> |
4171 | 4188 | <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> | |
4172 | <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> | 4189 | </trans-unit> |
4173 | <trans-unit id="687236465759862933" datatype="html"> | 4190 | <trans-unit id="687236465759862933" datatype="html"> |
4174 | <source>Open syndication dropdown</source> | 4191 | <source>Open syndication dropdown</source> |
4175 | <target state="new">Open syndication dropdown</target> | 4192 | <target state="new">Open syndication dropdown</target> |
@@ -4181,14 +4198,18 @@ color: red; | |||
4181 | <context context-type="sourcefile">src/app/shared/shared-main/feeds/feed.component.html</context> | 4198 | <context context-type="sourcefile">src/app/shared/shared-main/feeds/feed.component.html</context> |
4182 | <context context-type="linenumber">3</context> | 4199 | <context context-type="linenumber">3</context> |
4183 | </context-group> | 4200 | </context-group> |
4184 | </trans-unit><trans-unit id="5511928240200239994" datatype="html"> | 4201 | </trans-unit> |
4185 | <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> | 4202 | <trans-unit id="5511928240200239994" datatype="html"> |
4203 | <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> | ||
4204 | <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> | ||
4186 | <context-group purpose="location"> | 4205 | <context-group purpose="location"> |
4187 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> | 4206 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> |
4188 | <context context-type="linenumber">5</context> | 4207 | <context context-type="linenumber">5</context> |
4189 | </context-group> | 4208 | </context-group> |
4190 | </trans-unit><trans-unit id="5339945526545410198" datatype="html"> | 4209 | </trans-unit> |
4191 | <source>Set up my channels</source><target state="new">Set up my channels</target> | 4210 | <trans-unit id="5339945526545410198" datatype="html"> |
4211 | <source>Set up my channels</source> | ||
4212 | <target state="new">Set up my channels</target> | ||
4192 | <context-group purpose="location"> | 4213 | <context-group purpose="location"> |
4193 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> | 4214 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> |
4194 | <context context-type="linenumber">6</context> | 4215 | <context context-type="linenumber">6</context> |
@@ -4245,16 +4266,16 @@ color: red; | |||
4245 | <trans-unit id="8440128775129354214" datatype="html"> | 4266 | <trans-unit id="8440128775129354214" datatype="html"> |
4246 | <source>Privacy</source> | 4267 | <source>Privacy</source> |
4247 | <target>الخصوصية</target> | 4268 | <target>الخصوصية</target> |
4248 | 4269 | <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> | |
4249 | 4270 | <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> | |
4250 | 4271 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">106</context></context-group> | |
4251 | 4272 | <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> | |
4252 | 4273 | <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> | |
4253 | 4274 | <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> | |
4254 | 4275 | <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> | |
4255 | 4276 | <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> | |
4256 | 4277 | <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> | |
4257 | <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">106</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> | 4278 | </trans-unit> |
4258 | <trans-unit id="5462361983940693567" datatype="html"> | 4279 | <trans-unit id="5462361983940693567" datatype="html"> |
4259 | <source>Channel</source> | 4280 | <source>Channel</source> |
4260 | <target>القناة</target> | 4281 | <target>القناة</target> |
@@ -4276,8 +4297,8 @@ color: red; | |||
4276 | <trans-unit id="3438686710205841496" datatype="html"> | 4297 | <trans-unit id="3438686710205841496" datatype="html"> |
4277 | <source>Create playlist</source> | 4298 | <source>Create playlist</source> |
4278 | <target>إنشاء قائمة تشغيل</target> | 4299 | <target>إنشاء قائمة تشغيل</target> |
4279 | 4300 | <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> | |
4280 | <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> | 4301 | </trans-unit> |
4281 | <trans-unit id="7040375308762081154" datatype="html"> | 4302 | <trans-unit id="7040375308762081154" datatype="html"> |
4282 | <source>My video channels</source> | 4303 | <source>My video channels</source> |
4283 | <target state="new">My video channels</target> | 4304 | <target state="new">My video channels</target> |
@@ -4316,22 +4337,22 @@ color: red; | |||
4316 | <trans-unit id="7000850040589508423" datatype="html"> | 4337 | <trans-unit id="7000850040589508423" datatype="html"> |
4317 | <source>Create video channel</source> | 4338 | <source>Create video channel</source> |
4318 | <target>أنشئ قناة فيديو</target> | 4339 | <target>أنشئ قناة فيديو</target> |
4319 | 4340 | <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> | |
4320 | <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> | 4341 | </trans-unit> |
4321 | <trans-unit id="5700655611297335752" datatype="html"> | 4342 | <trans-unit id="5700655611297335752" datatype="html"> |
4322 | <source>No channel found.</source> | 4343 | <source>No channel found.</source> |
4323 | <target state="new">No channel found.</target> | 4344 | <target state="new">No channel found.</target> |
4324 | 4345 | <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> | |
4325 | <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> | 4346 | </trans-unit> |
4326 | <trans-unit id="403587185492002456" datatype="html"> | 4347 | <trans-unit id="403587185492002456" datatype="html"> |
4327 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> | 4348 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> |
4328 | <target>{VAR_PLURAL, plural, =1 {نشترك واحد} other {<x id="INTERPOLATION"/> مشتركا}}</target> | 4349 | <target>{VAR_PLURAL, plural, =1 {نشترك واحد} other {<x id="INTERPOLATION"/> مشتركا}}</target> |
4329 | 4350 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">23</context></context-group> | |
4330 | 4351 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">38</context></context-group> | |
4331 | 4352 | <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">30</context></context-group> | |
4332 | 4353 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">73</context></context-group> | |
4333 | 4354 | <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> | |
4334 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">23</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">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">73</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> | 4355 | </trans-unit> |
4335 | <trans-unit id="3068011377000255023" datatype="html"> | 4356 | <trans-unit id="3068011377000255023" datatype="html"> |
4336 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> | 4357 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> |
4337 | <target state="new">{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</target> | 4358 | <target state="new">{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</target> |
@@ -4361,8 +4382,10 @@ It will delete <x id="PH_1" equiv-text="videoChannel.videosCount"/> videos uploa | |||
4361 | channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</source> | 4382 | channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</source> |
4362 | <target state="translated">أتريد حذف <x id="PH"/>؟ ستحذف جميع فيديوهات قناة <x id="PH_1"/>، ولن تتمكن من إنشاء قناة بنفس الاسم (<x id="PH_2"/>)!</target> | 4383 | <target state="translated">أتريد حذف <x id="PH"/>؟ ستحذف جميع فيديوهات قناة <x id="PH_1"/>، ولن تتمكن من إنشاء قناة بنفس الاسم (<x id="PH_2"/>)!</target> |
4363 | <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> | 4384 | <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> |
4364 | </trans-unit><trans-unit id="4433306639366959484" datatype="html"> | 4385 | </trans-unit> |
4365 | <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> | 4386 | <trans-unit id="4433306639366959484" datatype="html"> |
4387 | <source>Please type the name of the video channel (<x id="PH" equiv-text="videoChannel.name"/>) to confirm</source> | ||
4388 | <target state="new">Please type the name of the video channel (<x id="PH" equiv-text="videoChannel.name"/>) to confirm</target> | ||
4366 | <context-group purpose="location"> | 4389 | <context-group purpose="location"> |
4367 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context> | 4390 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context> |
4368 | <context context-type="linenumber">48</context> | 4391 | <context context-type="linenumber">48</context> |
@@ -4426,8 +4449,10 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
4426 | <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> | 4449 | <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> |
4427 | <target>اذا أردت تعليمات لاستخدام بيرتيوب راجع <x id="START_LINK"/>التوثيق<x id="CLOSE_LINK"/> </target> | 4450 | <target>اذا أردت تعليمات لاستخدام بيرتيوب راجع <x id="START_LINK"/>التوثيق<x id="CLOSE_LINK"/> </target> |
4428 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">14</context></context-group> | 4451 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">14</context></context-group> |
4429 | </trans-unit><trans-unit id="8844610145426272276" datatype="html"> | 4452 | </trans-unit> |
4430 | <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> | 4453 | <trans-unit id="8844610145426272276" datatype="html"> |
4454 | <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> | ||
4455 | <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> | ||
4431 | <context-group purpose="location"> | 4456 | <context-group purpose="location"> |
4432 | <context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context> | 4457 | <context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context> |
4433 | <context context-type="linenumber">18,19</context> | 4458 | <context context-type="linenumber">18,19</context> |
@@ -4491,13 +4516,13 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
4491 | <trans-unit id="7252854992688790751" datatype="html"> | 4516 | <trans-unit id="7252854992688790751" datatype="html"> |
4492 | <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> | 4517 | <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> |
4493 | <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> | 4518 | <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> |
4494 | 4519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">64</context></context-group> | |
4495 | <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> | 4520 | </trans-unit> |
4496 | <trans-unit id="7215649348148521605" datatype="html"> | 4521 | <trans-unit id="7215649348148521605" datatype="html"> |
4497 | <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> | 4522 | <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> |
4498 | <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> | 4523 | <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> |
4499 | 4524 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">69</context></context-group> | |
4500 | <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> | 4525 | </trans-unit> |
4501 | <trans-unit id="4302331889176439801" datatype="html"> | 4526 | <trans-unit id="4302331889176439801" datatype="html"> |
4502 | <source>Request email for account verification</source> | 4527 | <source>Request email for account verification</source> |
4503 | <target>طلب البريد الإلكتروني للتحقق من الحساب</target> | 4528 | <target>طلب البريد الإلكتروني للتحقق من الحساب</target> |
@@ -4506,15 +4531,15 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
4506 | <trans-unit id="3967269098753656610" datatype="html"> | 4531 | <trans-unit id="3967269098753656610" datatype="html"> |
4507 | <source>Email address</source> | 4532 | <source>Email address</source> |
4508 | <target>عنوان البريد الإلكتروني</target> | 4533 | <target>عنوان البريد الإلكتروني</target> |
4509 | 4534 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">113</context></context-group> | |
4510 | 4535 | <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> | |
4511 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">113</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> | 4536 | </trans-unit> |
4512 | <trans-unit id="7808756054397155068" datatype="html"> | 4537 | <trans-unit id="7808756054397155068" datatype="html"> |
4513 | <source>Reset</source> | 4538 | <source>Reset</source> |
4514 | <target state="new">Reset</target> | 4539 | <target state="new">Reset</target> |
4515 | <note priority="1" from="description">Password reset button</note> | 4540 | <note priority="1" from="description">Password reset button</note> |
4516 | 4541 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">126</context></context-group> | |
4517 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 4542 | </trans-unit> |
4518 | <trans-unit id="4027779086550572813" datatype="html"> | 4543 | <trans-unit id="4027779086550572813" datatype="html"> |
4519 | <source>Send verification email</source> | 4544 | <source>Send verification email</source> |
4520 | <target>إرسال رسالة التأكيد</target> | 4545 | <target>إرسال رسالة التأكيد</target> |
@@ -4618,8 +4643,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
4618 | <trans-unit id="5512878593724620692" datatype="html"> | 4643 | <trans-unit id="5512878593724620692" datatype="html"> |
4619 | <source>CHANNELS</source> | 4644 | <source>CHANNELS</source> |
4620 | <target state="new">CHANNELS</target> | 4645 | <target state="new">CHANNELS</target> |
4621 | 4646 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">81</context></context-group> | |
4622 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 4647 | </trans-unit> |
4623 | <trans-unit id="6479885129995567639" datatype="html"> | 4648 | <trans-unit id="6479885129995567639" datatype="html"> |
4624 | <source>Video channels</source> | 4649 | <source>Video channels</source> |
4625 | <target>قنوات الفيديو</target> | 4650 | <target>قنوات الفيديو</target> |
@@ -4684,7 +4709,6 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
4684 | <context context-type="linenumber">16</context> | 4709 | <context context-type="linenumber">16</context> |
4685 | </context-group> | 4710 | </context-group> |
4686 | </trans-unit> | 4711 | </trans-unit> |
4687 | |||
4688 | <trans-unit id="8203367621031610680" datatype="html"> | 4712 | <trans-unit id="8203367621031610680" datatype="html"> |
4689 | <source>Your name</source> | 4713 | <source>Your name</source> |
4690 | <target>اسمك</target> | 4714 | <target>اسمك</target> |
@@ -4709,8 +4733,10 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
4709 | <source>About <x id="INTERPOLATION"/></source> | 4733 | <source>About <x id="INTERPOLATION"/></source> |
4710 | <target>حول <x id="INTERPOLATION"/></target> | 4734 | <target>حول <x id="INTERPOLATION"/></target> |
4711 | <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> | 4735 | <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> |
4712 | </trans-unit><trans-unit id="8525213662266893834" datatype="html"> | 4736 | </trans-unit> |
4713 | <source>Contact us</source><target state="new">Contact us</target> | 4737 | <trans-unit id="8525213662266893834" datatype="html"> |
4738 | <source>Contact us</source> | ||
4739 | <target state="new">Contact us</target> | ||
4714 | <context-group purpose="location"> | 4740 | <context-group purpose="location"> |
4715 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> | 4741 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> |
4716 | <context context-type="linenumber">7</context> | 4742 | <context context-type="linenumber">7</context> |
@@ -4720,7 +4746,6 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
4720 | <context context-type="linenumber">3</context> | 4746 | <context context-type="linenumber">3</context> |
4721 | </context-group> | 4747 | </context-group> |
4722 | </trans-unit> | 4748 | </trans-unit> |
4723 | |||
4724 | <trans-unit id="19872047295276660" datatype="html"> | 4749 | <trans-unit id="19872047295276660" datatype="html"> |
4725 | <source>This instance is dedicated to sensitive/NSFW content.</source> | 4750 | <source>This instance is dedicated to sensitive/NSFW content.</source> |
4726 | <target>هذا المثيل مخصص لمحتوى حساس / NSFW.</target> | 4751 | <target>هذا المثيل مخصص لمحتوى حساس / NSFW.</target> |
@@ -4975,24 +5000,26 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
4975 | <trans-unit id="4195286790385468087" datatype="html"> | 5000 | <trans-unit id="4195286790385468087" datatype="html"> |
4976 | <source>About this instance</source> | 5001 | <source>About this instance</source> |
4977 | <target state="translated">حول هذا المثيل</target> | 5002 | <target state="translated">حول هذا المثيل</target> |
4978 | 5003 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">24</context></context-group> | |
4979 | <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> | 5004 | </trans-unit> |
4980 | <trans-unit id="8773846522957677259" datatype="html"> | 5005 | <trans-unit id="8773846522957677259" datatype="html"> |
4981 | <source>About PeerTube</source> | 5006 | <source>About PeerTube</source> |
4982 | <target state="translated">حول بِيرتيوب</target> | 5007 | <target state="translated">حول بِيرتيوب</target> |
4983 | 5008 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">49</context></context-group> | |
4984 | <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> | 5009 | </trans-unit> |
4985 | <trans-unit id="1812900507515561988" datatype="html"> | 5010 | <trans-unit id="1812900507515561988" datatype="html"> |
4986 | <source>About this instance's network</source> | 5011 | <source>About this instance's network</source> |
4987 | <target state="new">About this instance's network</target> | 5012 | <target state="new">About this instance's network</target> |
4988 | 5013 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">58</context></context-group> | |
4989 | <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> | 5014 | </trans-unit> |
4990 | <trans-unit id="892073694820881630" datatype="html"> | 5015 | <trans-unit id="892073694820881630" datatype="html"> |
4991 | <source>Link copied</source> | 5016 | <source>Link copied</source> |
4992 | <target state="new">Link copied</target> | 5017 | <target state="new">Link copied</target> |
4993 | <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> | 5018 | <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> |
4994 | </trans-unit><trans-unit id="4807161697338135032" datatype="html"> | 5019 | </trans-unit> |
4995 | <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> | 5020 | <trans-unit id="4807161697338135032" datatype="html"> |
5021 | <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> | ||
5022 | <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> | ||
4996 | <context-group purpose="location"> | 5023 | <context-group purpose="location"> |
4997 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> | 5024 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> |
4998 | <context context-type="linenumber">3</context> | 5025 | <context context-type="linenumber">3</context> |
@@ -5171,8 +5198,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5171 | <source>Signup</source> | 5198 | <source>Signup</source> |
5172 | <target state="new">Signup</target> | 5199 | <target state="new">Signup</target> |
5173 | <note priority="1" from="description">Button on the registration form to finalize the account and channel creation</note> | 5200 | <note priority="1" from="description">Button on the registration form to finalize the account and channel creation</note> |
5174 | 5201 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">67</context></context-group> | |
5175 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 5202 | </trans-unit> |
5176 | <trans-unit id="1908285951500318953" datatype="html"> | 5203 | <trans-unit id="1908285951500318953" datatype="html"> |
5177 | <source>Login</source> | 5204 | <source>Login</source> |
5178 | <target>تسجل الدخول</target> | 5205 | <target>تسجل الدخول</target> |
@@ -5187,8 +5214,10 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5187 | <source>Username or email address</source> | 5214 | <source>Username or email address</source> |
5188 | <target>اسم المستخدم أو عنوان البريد الإلكتروني</target> | 5215 | <target>اسم المستخدم أو عنوان البريد الإلكتروني</target> |
5189 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">23</context></context-group> | 5216 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">23</context></context-group> |
5190 | </trans-unit><trans-unit id="1758058452376026925" datatype="html"> | 5217 | </trans-unit> |
5191 | <source> ⚠️ Most email addresses do not include capital letters. </source><target state="new"> ⚠️ Most email addresses do not include capital letters. </target> | 5218 | <trans-unit id="1758058452376026925" datatype="html"> |
5219 | <source>⚠️ Most email addresses do not include capital letters.</source> | ||
5220 | <target state="new"> ⚠️ Most email addresses do not include capital letters. </target> | ||
5192 | <context-group purpose="location"> | 5221 | <context-group purpose="location"> |
5193 | <context context-type="sourcefile">src/app/+login/login.component.html</context> | 5222 | <context context-type="sourcefile">src/app/+login/login.component.html</context> |
5194 | <context context-type="linenumber">33,34</context> | 5223 | <context context-type="linenumber">33,34</context> |
@@ -5197,38 +5226,38 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5197 | <trans-unit id="8715156686857791956" datatype="html"> | 5226 | <trans-unit id="8715156686857791956" datatype="html"> |
5198 | <source>Click here to reset your password</source> | 5227 | <source>Click here to reset your password</source> |
5199 | <target>انقر هنا لإعادة تعيين كلمة المرور الخاصة بك</target> | 5228 | <target>انقر هنا لإعادة تعيين كلمة المرور الخاصة بك</target> |
5200 | 5229 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">51</context></context-group> | |
5201 | <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> | 5230 | </trans-unit> |
5202 | <trans-unit id="892063502898494584" datatype="html"> | 5231 | <trans-unit id="892063502898494584" datatype="html"> |
5203 | <source>I forgot my password</source> | 5232 | <source>I forgot my password</source> |
5204 | <target state="new">I forgot my password</target> | 5233 | <target state="new">I forgot my password</target> |
5205 | 5234 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">51</context></context-group> | |
5206 | <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> | 5235 | </trans-unit> |
5207 | <trans-unit id="2101170466365500913" datatype="html"> | 5236 | <trans-unit id="2101170466365500913" datatype="html"> |
5208 | <source>Logging into an account lets you publish content</source> | 5237 | <source>Logging into an account lets you publish content</source> |
5209 | <target state="new"> Logging into an account lets you publish content </target> | 5238 | <target state="new"> Logging into an account lets you publish content </target> |
5210 | 5239 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">60</context></context-group> | |
5211 | <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> | 5240 | </trans-unit> |
5212 | <trans-unit id="3183213940445113677" datatype="html"> | 5241 | <trans-unit id="3183213940445113677" datatype="html"> |
5213 | <source>Or sign in with</source> | 5242 | <source>Or sign in with</source> |
5214 | <target>أو قم بتسجيل الدخول باستخدام</target> | 5243 | <target>أو قم بتسجيل الدخول باستخدام</target> |
5215 | 5244 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">76</context></context-group> | |
5216 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> | 5245 | </trans-unit> |
5217 | <trans-unit id="3238209155172574367" datatype="html"> | 5246 | <trans-unit id="3238209155172574367" datatype="html"> |
5218 | <source>Forgot your password</source> | 5247 | <source>Forgot your password</source> |
5219 | <target>نسيتَ كلمة المرور</target> | 5248 | <target>نسيتَ كلمة المرور</target> |
5220 | 5249 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">95</context></context-group> | |
5221 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit> | 5250 | </trans-unit> |
5222 | <trans-unit id="87327320394367488" datatype="html"> | 5251 | <trans-unit id="87327320394367488" datatype="html"> |
5223 | <source>We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</source> | 5252 | <source>We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</source> |
5224 | <target>عذرًا ، لا يمكنك استرداد كلمة المرور الخاصة بك لأن مدير مثيل الخادم الخاص بك لم يقم بتكوين نظام البريد الإلكتروني لبيرتيوب.</target> | 5253 | <target>عذرًا ، لا يمكنك استرداد كلمة المرور الخاصة بك لأن مدير مثيل الخادم الخاص بك لم يقم بتكوين نظام البريد الإلكتروني لبيرتيوب.</target> |
5225 | 5254 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">103</context></context-group> | |
5226 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">103</context></context-group></trans-unit> | 5255 | </trans-unit> |
5227 | <trans-unit id="3188014010833256853" datatype="html"> | 5256 | <trans-unit id="3188014010833256853" datatype="html"> |
5228 | <source>Enter your email address and we will send you a link to reset your password.</source> | 5257 | <source>Enter your email address and we will send you a link to reset your password.</source> |
5229 | <target state="new"> Enter your email address and we will send you a link to reset your password. </target> | 5258 | <target state="new"> Enter your email address and we will send you a link to reset your password. </target> |
5230 | 5259 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">107</context></context-group> | |
5231 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> | 5260 | </trans-unit> |
5232 | <trans-unit id="1190256911880544559" datatype="html"> | 5261 | <trans-unit id="1190256911880544559" datatype="html"> |
5233 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. | 5262 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. |
5234 | The link will expire within 1 hour.</source> | 5263 | The link will expire within 1 hour.</source> |
@@ -5261,8 +5290,8 @@ The link will expire within 1 hour.</source> | |||
5261 | <trans-unit id="2236371857137398396" datatype="html"> | 5290 | <trans-unit id="2236371857137398396" datatype="html"> |
5262 | <source>No results found</source> | 5291 | <source>No results found</source> |
5263 | <target>لم يتم العثور على نتائج</target> | 5292 | <target>لم يتم العثور على نتائج</target> |
5264 | 5293 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">33</context></context-group> | |
5265 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 5294 | </trans-unit> |
5266 | <trans-unit id="5500467336262464724" datatype="html"> | 5295 | <trans-unit id="5500467336262464724" datatype="html"> |
5267 | <source><x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> subscribers </source> | 5296 | <source><x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> subscribers </source> |
5268 | <target> | 5297 | <target> |
@@ -5278,19 +5307,19 @@ The link will expire within 1 hour.</source> | |||
5278 | <trans-unit id="5478121364779850827" datatype="html"> | 5307 | <trans-unit id="5478121364779850827" datatype="html"> |
5279 | <source>Reset</source> | 5308 | <source>Reset</source> |
5280 | <target>إعادة تعيين</target> | 5309 | <target>إعادة تعيين</target> |
5281 | 5310 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">9</context></context-group> | |
5282 | 5311 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">23</context></context-group> | |
5283 | 5312 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">42</context></context-group> | |
5284 | 5313 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">61</context></context-group> | |
5285 | 5314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">75</context></context-group> | |
5286 | 5315 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">110</context></context-group> | |
5287 | 5316 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">123</context></context-group> | |
5288 | 5317 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">136</context></context-group> | |
5289 | 5318 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">149</context></context-group> | |
5290 | 5319 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">164</context></context-group> | |
5291 | 5320 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">172</context></context-group> | |
5292 | 5321 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">205</context></context-group> | |
5293 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">9</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">61</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">75</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">110</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">123</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">136</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">149</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">164</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">172</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></trans-unit> | 5322 | </trans-unit> |
5294 | <trans-unit id="4540121094340493564" datatype="html"> | 5323 | <trans-unit id="4540121094340493564" datatype="html"> |
5295 | <source>Display only</source> | 5324 | <source>Display only</source> |
5296 | <target state="new">Display only</target> | 5325 | <target state="new">Display only</target> |
@@ -5302,15 +5331,19 @@ The link will expire within 1 hour.</source> | |||
5302 | <trans-unit id="2180217594100853008" datatype="html"> | 5331 | <trans-unit id="2180217594100853008" datatype="html"> |
5303 | <source>Live videos</source> | 5332 | <source>Live videos</source> |
5304 | <target state="new">Live videos</target> | 5333 | <target state="new">Live videos</target> |
5305 | 5334 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">29</context></context-group> | |
5306 | 5335 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">64</context></context-group> | |
5307 | <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/+search/search-filters.component.ts</context><context context-type="linenumber">64</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">158</context></context-group></trans-unit> | 5336 | <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> |
5337 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">158</context></context-group> | ||
5338 | </trans-unit> | ||
5308 | <trans-unit id="2392481201920342009" datatype="html"> | 5339 | <trans-unit id="2392481201920342009" datatype="html"> |
5309 | <source>VOD videos</source> | 5340 | <source>VOD videos</source> |
5310 | <target state="new">VOD videos</target> | 5341 | <target state="new">VOD videos</target> |
5311 | 5342 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">34</context></context-group> | |
5312 | 5343 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">60</context></context-group> | |
5313 | <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/+search/search-filters.component.ts</context><context context-type="linenumber">60</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">164</context></context-group></trans-unit> | 5344 | <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> |
5345 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">164</context></context-group> | ||
5346 | </trans-unit> | ||
5314 | <trans-unit id="3589238979642505685" datatype="html"> | 5347 | <trans-unit id="3589238979642505685" datatype="html"> |
5315 | <source>Display sensitive content</source> | 5348 | <source>Display sensitive content</source> |
5316 | <target>عرض المحتوى الحساس</target> | 5349 | <target>عرض المحتوى الحساس</target> |
@@ -5349,16 +5382,16 @@ The link will expire within 1 hour.</source> | |||
5349 | <trans-unit id="7410432243549869948" datatype="html"> | 5382 | <trans-unit id="7410432243549869948" datatype="html"> |
5350 | <source>Duration</source> | 5383 | <source>Duration</source> |
5351 | <target>المدّة</target> | 5384 | <target>المدّة</target> |
5352 | 5385 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">108</context></context-group> | |
5353 | 5386 | <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> | |
5354 | <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> | 5387 | </trans-unit> |
5355 | <trans-unit id="1806667489382256324" datatype="html"> | 5388 | <trans-unit id="1806667489382256324" datatype="html"> |
5356 | <source>Category</source> | 5389 | <source>Category</source> |
5357 | <target>الفئة</target> | 5390 | <target>الفئة</target> |
5358 | 5391 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">121</context></context-group> | |
5359 | 5392 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">63</context></context-group> | |
5360 | 5393 | <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> | |
5361 | <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">63</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> | 5394 | </trans-unit> |
5362 | <trans-unit id="5478121364779850827" datatype="html"> | 5395 | <trans-unit id="5478121364779850827" datatype="html"> |
5363 | <source>Reset</source> | 5396 | <source>Reset</source> |
5364 | <target>إعادة تعيين</target> | 5397 | <target>إعادة تعيين</target> |
@@ -5376,10 +5409,10 @@ The link will expire within 1 hour.</source> | |||
5376 | <trans-unit id="9065795501872450602" datatype="html"> | 5409 | <trans-unit id="9065795501872450602" datatype="html"> |
5377 | <source>Licence</source> | 5410 | <source>Licence</source> |
5378 | <target>الرخصة</target> | 5411 | <target>الرخصة</target> |
5379 | 5412 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">134</context></context-group> | |
5380 | 5413 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">74</context></context-group> | |
5381 | 5414 | <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> | |
5382 | <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">74</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> | 5415 | </trans-unit> |
5383 | <trans-unit id="4184995865179898060" datatype="html"> | 5416 | <trans-unit id="4184995865179898060" datatype="html"> |
5384 | <source>Display all licenses</source> | 5417 | <source>Display all licenses</source> |
5385 | <target>عرض جميع التراخيص</target> | 5418 | <target>عرض جميع التراخيص</target> |
@@ -5388,11 +5421,11 @@ The link will expire within 1 hour.</source> | |||
5388 | <trans-unit id="2826581353496868063" datatype="html"> | 5421 | <trans-unit id="2826581353496868063" datatype="html"> |
5389 | <source>Language</source> | 5422 | <source>Language</source> |
5390 | <target>اللغة</target> | 5423 | <target>اللغة</target> |
5391 | 5424 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">147</context></context-group> | |
5392 | 5425 | <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> | |
5393 | 5426 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">94</context></context-group> | |
5394 | 5427 | <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> | |
5395 | <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">94</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> | 5428 | </trans-unit> |
5396 | <trans-unit id="7904142744051432458" datatype="html"> | 5429 | <trans-unit id="7904142744051432458" datatype="html"> |
5397 | <source>Display all languages</source> | 5430 | <source>Display all languages</source> |
5398 | <target>عرض جميع اللغات</target> | 5431 | <target>عرض جميع اللغات</target> |
@@ -5407,8 +5440,10 @@ The link will expire within 1 hour.</source> | |||
5407 | <source>One of these tags</source> | 5440 | <source>One of these tags</source> |
5408 | <target>واحد مِن هذه الوسوم</target> | 5441 | <target>واحد مِن هذه الوسوم</target> |
5409 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">170</context></context-group> | 5442 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">170</context></context-group> |
5410 | </trans-unit><trans-unit id="5143793904897598509" datatype="html"> | 5443 | </trans-unit> |
5411 | <source>PeerTube instance host</source><target state="new">PeerTube instance host</target> | 5444 | <trans-unit id="5143793904897598509" datatype="html"> |
5445 | <source>PeerTube instance host</source> | ||
5446 | <target state="new">PeerTube instance host</target> | ||
5412 | <context-group purpose="location"> | 5447 | <context-group purpose="location"> |
5413 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> | 5448 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> |
5414 | <context context-type="linenumber">178</context> | 5449 | <context context-type="linenumber">178</context> |
@@ -5417,13 +5452,13 @@ The link will expire within 1 hour.</source> | |||
5417 | <trans-unit id="283421392567624698" datatype="html"> | 5452 | <trans-unit id="283421392567624698" datatype="html"> |
5418 | <source>Search target</source> | 5453 | <source>Search target</source> |
5419 | <target>هدف البحث</target> | 5454 | <target>هدف البحث</target> |
5420 | 5455 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">187</context></context-group> | |
5421 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">187</context></context-group></trans-unit> | 5456 | </trans-unit> |
5422 | <trans-unit id="2489767671380266270" datatype="html"> | 5457 | <trans-unit id="2489767671380266270" datatype="html"> |
5423 | <source>Vidiverse</source> | 5458 | <source>Vidiverse</source> |
5424 | <target state="translated">Vidiverse</target> | 5459 | <target state="translated">Vidiverse</target> |
5425 | 5460 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">197</context></context-group> | |
5426 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">197</context></context-group></trans-unit> | 5461 | </trans-unit> |
5427 | <trans-unit id="5478121364779850827" datatype="html"> | 5462 | <trans-unit id="5478121364779850827" datatype="html"> |
5428 | <source>Reset</source> | 5463 | <source>Reset</source> |
5429 | <target>إعادة تعيين</target> | 5464 | <target>إعادة تعيين</target> |
@@ -5432,8 +5467,8 @@ The link will expire within 1 hour.</source> | |||
5432 | <trans-unit id="8829497237648100098" datatype="html"> | 5467 | <trans-unit id="8829497237648100098" datatype="html"> |
5433 | <source>Filter</source> | 5468 | <source>Filter</source> |
5434 | <target>مرشح</target> | 5469 | <target>مرشح</target> |
5435 | 5470 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">208</context></context-group> | |
5436 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">208</context></context-group></trans-unit> | 5471 | </trans-unit> |
5437 | <trans-unit id="1909308046360229945" datatype="html"> | 5472 | <trans-unit id="1909308046360229945" datatype="html"> |
5438 | <source>Add caption</source> | 5473 | <source>Add caption</source> |
5439 | <target>إضافة تسمية توضيحية</target> | 5474 | <target>إضافة تسمية توضيحية</target> |
@@ -5467,9 +5502,9 @@ The link will expire within 1 hour.</source> | |||
5467 | <trans-unit id="7886570921510760899" datatype="html"> | 5502 | <trans-unit id="7886570921510760899" datatype="html"> |
5468 | <source>Tags</source> | 5503 | <source>Tags</source> |
5469 | <target>الوسوم</target> | 5504 | <target>الوسوم</target> |
5470 | 5505 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">19</context></context-group> | |
5471 | 5506 | <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> | |
5472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">19</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> | 5507 | </trans-unit> |
5473 | <trans-unit id="354332809647287722" datatype="html"> | 5508 | <trans-unit id="354332809647287722" datatype="html"> |
5474 | <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> | 5509 | <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> |
5475 | <target state="translated">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> | 5510 | <target state="translated">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> |
@@ -5483,14 +5518,14 @@ The link will expire within 1 hour.</source> | |||
5483 | <trans-unit id="6179532215548637839" datatype="html"> | 5518 | <trans-unit id="6179532215548637839" datatype="html"> |
5484 | <source>extensions</source> | 5519 | <source>extensions</source> |
5485 | <target state="new">extensions</target> | 5520 | <target state="new">extensions</target> |
5486 | 5521 | <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> | |
5487 | <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> | 5522 | </trans-unit> |
5488 | <trans-unit id="8054921481196967348" datatype="html"> | 5523 | <trans-unit id="8054921481196967348" datatype="html"> |
5489 | <source>This image is too large.</source> | 5524 | <source>This image is too large.</source> |
5490 | <target state="new">This image is too large.</target> | 5525 | <target state="new">This image is too large.</target> |
5491 | 5526 | <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> | |
5492 | 5527 | <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> | |
5493 | <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> | 5528 | </trans-unit> |
5494 | <trans-unit id="6259523075362402245" datatype="html"> | 5529 | <trans-unit id="6259523075362402245" datatype="html"> |
5495 | <source>Upload a new banner</source> | 5530 | <source>Upload a new banner</source> |
5496 | <target state="new">Upload a new banner</target> | 5531 | <target state="new">Upload a new banner</target> |
@@ -5515,13 +5550,13 @@ The link will expire within 1 hour.</source> | |||
5515 | <trans-unit id="3220184757632006830" datatype="html"> | 5550 | <trans-unit id="3220184757632006830" datatype="html"> |
5516 | <source>Account avatar</source> | 5551 | <source>Account avatar</source> |
5517 | <target state="new">Account avatar</target> | 5552 | <target state="new">Account avatar</target> |
5518 | 5553 | <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> | |
5519 | <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> | 5554 | </trans-unit> |
5520 | <trans-unit id="1138964882426023395" datatype="html"> | 5555 | <trans-unit id="1138964882426023395" datatype="html"> |
5521 | <source>Channel avatar</source> | 5556 | <source>Channel avatar</source> |
5522 | <target state="new">Channel avatar</target> | 5557 | <target state="new">Channel avatar</target> |
5523 | 5558 | <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> | |
5524 | <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> | 5559 | </trans-unit> |
5525 | <trans-unit id="1358902062258458923" datatype="html"> | 5560 | <trans-unit id="1358902062258458923" datatype="html"> |
5526 | <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> | 5561 | <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> |
5527 | <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> | 5562 | <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> |
@@ -5537,26 +5572,34 @@ The link will expire within 1 hour.</source> | |||
5537 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context> | 5572 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context> |
5538 | <context context-type="linenumber">24</context> | 5573 | <context context-type="linenumber">24</context> |
5539 | </context-group> | 5574 | </context-group> |
5540 | </trans-unit><trans-unit id="283609029522452529" datatype="html"> | 5575 | </trans-unit> |
5541 | <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> | 5576 | <trans-unit id="283609029522452529" datatype="html"> |
5577 | <source>Error in channel miniature component: <x id="PH" equiv-text="err.message"/></source> | ||
5578 | <target state="new">Error in channel miniature component: <x id="PH" equiv-text="err.message"/></target> | ||
5542 | <context-group purpose="location"> | 5579 | <context-group purpose="location"> |
5543 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts</context> | 5580 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts</context> |
5544 | <context context-type="linenumber">57</context> | 5581 | <context context-type="linenumber">57</context> |
5545 | </context-group> | 5582 | </context-group> |
5546 | </trans-unit><trans-unit id="3059355667050002541" datatype="html"> | 5583 | </trans-unit> |
5547 | <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> | 5584 | <trans-unit id="3059355667050002541" datatype="html"> |
5585 | <source>Error in playlist miniature component: <x id="PH" equiv-text="err.message"/></source> | ||
5586 | <target state="new">Error in playlist miniature component: <x id="PH" equiv-text="err.message"/></target> | ||
5548 | <context-group purpose="location"> | 5587 | <context-group purpose="location"> |
5549 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/playlist-miniature-markup.component.ts</context> | 5588 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/playlist-miniature-markup.component.ts</context> |
5550 | <context context-type="linenumber">47</context> | 5589 | <context context-type="linenumber">47</context> |
5551 | </context-group> | 5590 | </context-group> |
5552 | </trans-unit><trans-unit id="863691161959989717" datatype="html"> | 5591 | </trans-unit> |
5553 | <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> | 5592 | <trans-unit id="863691161959989717" datatype="html"> |
5593 | <source>Error in video miniature component: <x id="PH" equiv-text="err.message"/></source> | ||
5594 | <target state="new">Error in video miniature component: <x id="PH" equiv-text="err.message"/></target> | ||
5554 | <context-group purpose="location"> | 5595 | <context-group purpose="location"> |
5555 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts</context> | 5596 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts</context> |
5556 | <context context-type="linenumber">59</context> | 5597 | <context context-type="linenumber">59</context> |
5557 | </context-group> | 5598 | </context-group> |
5558 | </trans-unit><trans-unit id="1247256698916587400" datatype="html"> | 5599 | </trans-unit> |
5559 | <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> | 5600 | <trans-unit id="1247256698916587400" datatype="html"> |
5601 | <source>Error in videos list component: <x id="PH" equiv-text="err.message"/></source> | ||
5602 | <target state="new">Error in videos list component: <x id="PH" equiv-text="err.message"/></target> | ||
5560 | <context-group purpose="location"> | 5603 | <context-group purpose="location"> |
5561 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.ts</context> | 5604 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.ts</context> |
5562 | <context context-type="linenumber">77</context> | 5605 | <context context-type="linenumber">77</context> |
@@ -5619,10 +5662,10 @@ The link will expire within 1 hour.</source> | |||
5619 | <trans-unit id="2602773901491715295" datatype="html"> | 5662 | <trans-unit id="2602773901491715295" datatype="html"> |
5620 | <source>Captions</source> | 5663 | <source>Captions</source> |
5621 | <target>التسميات التوضيحية</target> | 5664 | <target>التسميات التوضيحية</target> |
5622 | 5665 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">155</context></context-group> | |
5623 | 5666 | <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> | |
5624 | 5667 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">181</context></context-group> | |
5625 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">155</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">181</context></context-group></trans-unit> | 5668 | </trans-unit> |
5626 | <trans-unit id="2142169012597585513" datatype="html"> | 5669 | <trans-unit id="2142169012597585513" datatype="html"> |
5627 | <source>Add another caption</source> | 5670 | <source>Add another caption</source> |
5628 | <target>أضف تسمية توضيحية أخرى</target> | 5671 | <target>أضف تسمية توضيحية أخرى</target> |
@@ -5824,23 +5867,23 @@ The link will expire within 1 hour.</source> | |||
5824 | <trans-unit id="4422946962830681102" datatype="html"> | 5867 | <trans-unit id="4422946962830681102" datatype="html"> |
5825 | <source>Torrents with only 1 file are supported.</source> | 5868 | <source>Torrents with only 1 file are supported.</source> |
5826 | <target state="new">Torrents with only 1 file are supported.</target> | 5869 | <target state="new">Torrents with only 1 file are supported.</target> |
5827 | 5870 | <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">120</context></context-group> | |
5828 | <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">120</context></context-group></trans-unit> | 5871 | </trans-unit> |
5829 | <trans-unit id="7860848084471862305" datatype="html"> | 5872 | <trans-unit id="7860848084471862305" datatype="html"> |
5830 | <source>Cannot create live because this instance have too many created lives</source> | 5873 | <source>Cannot create live because this instance have too many created lives</source> |
5831 | <target state="new">Cannot create live because this instance have too many created lives</target> | 5874 | <target state="new">Cannot create live because this instance have too many created lives</target> |
5832 | 5875 | <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">101</context></context-group> | |
5833 | <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">101</context></context-group></trans-unit> | 5876 | </trans-unit> |
5834 | <trans-unit id="1278564497286613571" datatype="html"> | 5877 | <trans-unit id="1278564497286613571" datatype="html"> |
5835 | <source>Cannot create live because you created too many lives</source> | 5878 | <source>Cannot create live because you created too many lives</source> |
5836 | <target state="new">Cannot create live because you created too many lives</target> | 5879 | <target state="new">Cannot create live because you created too many lives</target> |
5837 | 5880 | <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> | |
5838 | <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> | 5881 | </trans-unit> |
5839 | <trans-unit id="2621043320678012413" datatype="html"> | 5882 | <trans-unit id="2621043320678012413" datatype="html"> |
5840 | <source>Live published.</source> | 5883 | <source>Live published.</source> |
5841 | <target state="new">Live published.</target> | 5884 | <target state="new">Live published.</target> |
5842 | 5885 | <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> | |
5843 | <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> | 5886 | </trans-unit> |
5844 | <trans-unit id="8218579597782287078" datatype="html"> | 5887 | <trans-unit id="8218579597782287078" datatype="html"> |
5845 | <source>Go Live</source> | 5888 | <source>Go Live</source> |
5846 | <target state="new">Go Live</target> | 5889 | <target state="new">Go Live</target> |
@@ -5855,17 +5898,17 @@ The link will expire within 1 hour.</source> | |||
5855 | <trans-unit id="4021752662928002901" datatype="html"> | 5898 | <trans-unit id="4021752662928002901" datatype="html"> |
5856 | <source>Update</source> | 5899 | <source>Update</source> |
5857 | <target>تحديث</target> | 5900 | <target>تحديث</target> |
5858 | 5901 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">180</context></context-group> | |
5859 | 5902 | <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> | |
5860 | 5903 | <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">45</context></context-group> | |
5861 | 5904 | <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> | |
5862 | 5905 | <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> | |
5863 | 5906 | <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> | |
5864 | 5907 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">18</context></context-group> | |
5865 | 5908 | <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> | |
5866 | 5909 | <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> | |
5867 | 5910 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">284</context></context-group> | |
5868 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">180</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">45</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">18</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">284</context></context-group></trans-unit> | 5911 | </trans-unit> |
5869 | <trans-unit id="2375260419993138758" datatype="html"> | 5912 | <trans-unit id="2375260419993138758" datatype="html"> |
5870 | <source>URL</source> | 5913 | <source>URL</source> |
5871 | <target>الرابط</target> | 5914 | <target>الرابط</target> |
@@ -5892,13 +5935,13 @@ The link will expire within 1 hour.</source> | |||
5892 | <trans-unit id="9172233176401579786" datatype="html"> | 5935 | <trans-unit id="9172233176401579786" datatype="html"> |
5893 | <source>Scheduled</source> | 5936 | <source>Scheduled</source> |
5894 | <target>مجدول</target> | 5937 | <target>مجدول</target> |
5895 | 5938 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">192</context></context-group> | |
5896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">192</context></context-group></trans-unit> | 5939 | </trans-unit> |
5897 | <trans-unit id="1435317307066082710" datatype="html"> | 5940 | <trans-unit id="1435317307066082710" datatype="html"> |
5898 | <source>Hide the video until a specific date</source> | 5941 | <source>Hide the video until a specific date</source> |
5899 | <target state="translated">أخفِ الفيديو حتى تاريخ معين</target> | 5942 | <target state="translated">أخفِ الفيديو حتى تاريخ معين</target> |
5900 | 5943 | <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> | |
5901 | <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> | 5944 | </trans-unit> |
5902 | <trans-unit id="6148369758871787018" datatype="html"> | 5945 | <trans-unit id="6148369758871787018" datatype="html"> |
5903 | <source>Video background image</source> | 5946 | <source>Video background image</source> |
5904 | <target>صورة خلفية الفيديو</target> | 5947 | <target>صورة خلفية الفيديو</target> |
@@ -5945,25 +5988,31 @@ The link will expire within 1 hour.</source> | |||
5945 | <source>Upload on hold</source> | 5988 | <source>Upload on hold</source> |
5946 | <target state="new">Upload on hold</target> | 5989 | <target state="new">Upload on hold</target> |
5947 | 5990 | ||
5948 | <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">167</context></context-group></trans-unit> | 5991 | <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">174</context></context-group></trans-unit> |
5949 | <trans-unit id="285180972645018518" datatype="html"> | 5992 | <trans-unit id="285180972645018518" datatype="html"> |
5950 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 5993 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
5951 | <target state="translated">عذرا، عُطلت خاصية الرفع في حسابك، اتصل بمدير المنصة ليقوم بفك قَفل حصتك.</target> | 5994 | <target state="translated">عذرا، عُطلت خاصية الرفع في حسابك، اتصل بمدير المنصة ليقوم بفك قَفل حصتك.</target> |
5952 | 5995 | <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> | |
5953 | <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"> | 5996 | </trans-unit> |
5954 | <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> | 5997 | <trans-unit id="1138810463037464722" datatype="html"> |
5998 | <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> | ||
5999 | <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> | ||
5955 | <context-group purpose="location"> | 6000 | <context-group purpose="location"> |
5956 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 6001 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
5957 | <context context-type="linenumber">104</context> | 6002 | <context context-type="linenumber">104</context> |
5958 | </context-group> | 6003 | </context-group> |
5959 | </trans-unit><trans-unit id="438743381693904838" datatype="html"> | 6004 | </trans-unit> |
5960 | <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> | 6005 | <trans-unit id="438743381693904838" datatype="html"> |
6006 | <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> | ||
6007 | <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> | ||
5961 | <context-group purpose="location"> | 6008 | <context-group purpose="location"> |
5962 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 6009 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
5963 | <context context-type="linenumber">106</context> | 6010 | <context context-type="linenumber">106</context> |
5964 | </context-group> | 6011 | </context-group> |
5965 | </trans-unit><trans-unit id="6796692581512042469" datatype="html"> | 6012 | </trans-unit> |
5966 | <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> | 6013 | <trans-unit id="6796692581512042469" datatype="html"> |
6014 | <source>Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.</source> | ||
6015 | <target state="new">Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.</target> | ||
5967 | <context-group purpose="location"> | 6016 | <context-group purpose="location"> |
5968 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 6017 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
5969 | <context context-type="linenumber">108</context> | 6018 | <context context-type="linenumber">108</context> |
@@ -5972,58 +6021,58 @@ The link will expire within 1 hour.</source> | |||
5972 | <trans-unit id="2587226585711833549" datatype="html"> | 6021 | <trans-unit id="2587226585711833549" datatype="html"> |
5973 | <source>Read instance rules for help</source> | 6022 | <source>Read instance rules for help</source> |
5974 | <target state="translated">اقرأ قوانين المثيل للمساعدة</target> | 6023 | <target state="translated">اقرأ قوانين المثيل للمساعدة</target> |
5975 | 6024 | <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> | |
5976 | <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> | 6025 | </trans-unit> |
5977 | <trans-unit id="2993949426196989262" datatype="html"> | 6026 | <trans-unit id="2993949426196989262" datatype="html"> |
5978 | <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> | 6027 | <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> |
5979 | <target>نقترح ألاّ تستخدم <x id="START_TAG_STRONG"/>حساب الجذر<x id="CLOSE_TAG_STRONG"/> لنشر الفيديوهات.<x id="LINE_BREAK"/>بدلا من ذلك نقترح <x id="START_LINK"/>إنشاء حساب<x id="CLOSE_LINK"/> عادي لرفع فيديوهاتك. </target> | 6028 | <target>نقترح ألاّ تستخدم <x id="START_TAG_STRONG"/>حساب الجذر<x id="CLOSE_TAG_STRONG"/> لنشر الفيديوهات.<x id="LINE_BREAK"/>بدلا من ذلك نقترح <x id="START_LINK"/>إنشاء حساب<x id="CLOSE_LINK"/> عادي لرفع فيديوهاتك. </target> |
5980 | 6029 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">34</context></context-group> | |
5981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 6030 | </trans-unit> |
5982 | <trans-unit id="293476877021544115" datatype="html"> | 6031 | <trans-unit id="293476877021544115" datatype="html"> |
5983 | <source>Import <x id="INTERPOLATION"/></source> | 6032 | <source>Import <x id="INTERPOLATION"/></source> |
5984 | <target>استورد <x id="INTERPOLATION"/></target> | 6033 | <target>استورد <x id="INTERPOLATION"/></target> |
5985 | 6034 | <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> | |
5986 | <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> | 6035 | </trans-unit> |
5987 | <trans-unit id="4766833966971572147" datatype="html"> | 6036 | <trans-unit id="4766833966971572147" datatype="html"> |
5988 | <source>Upload <x id="INTERPOLATION"/></source> | 6037 | <source>Upload <x id="INTERPOLATION"/></source> |
5989 | <target>ارفع <x id="INTERPOLATION"/></target> | 6038 | <target>ارفع <x id="INTERPOLATION"/></target> |
5990 | 6039 | <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> | |
5991 | <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> | 6040 | </trans-unit> |
5992 | <trans-unit id="7003826819757856838" datatype="html"> | 6041 | <trans-unit id="7003826819757856838" datatype="html"> |
5993 | <source>Upload a file</source> | 6042 | <source>Upload a file</source> |
5994 | <target>إرفع ملفًا</target> | 6043 | <target>إرفع ملفًا</target> |
5995 | 6044 | <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> | |
5996 | <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> | 6045 | </trans-unit> |
5997 | <trans-unit id="2061223017941329156" datatype="html"> | 6046 | <trans-unit id="2061223017941329156" datatype="html"> |
5998 | <source>Import with URL</source> | 6047 | <source>Import with URL</source> |
5999 | <target>استيراد عن طريق رابط</target> | 6048 | <target>استيراد عن طريق رابط</target> |
6000 | 6049 | <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> | |
6001 | <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> | 6050 | </trans-unit> |
6002 | <trans-unit id="8740142697043012403" datatype="html"> | 6051 | <trans-unit id="8740142697043012403" datatype="html"> |
6003 | <source>Import with torrent</source> | 6052 | <source>Import with torrent</source> |
6004 | <target>استيراد عبر التورنت</target> | 6053 | <target>استيراد عبر التورنت</target> |
6005 | 6054 | <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> | |
6006 | <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> | 6055 | </trans-unit> |
6007 | <trans-unit id="6066940329544282265" datatype="html"> | 6056 | <trans-unit id="6066940329544282265" datatype="html"> |
6008 | <source>Go live</source> | 6057 | <source>Go live</source> |
6009 | <target state="new">Go live</target> | 6058 | <target state="new">Go live</target> |
6010 | 6059 | <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> | |
6011 | <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> | 6060 | </trans-unit> |
6012 | <trans-unit id="3907889591911208762" datatype="html"> | 6061 | <trans-unit id="3907889591911208762" datatype="html"> |
6013 | <source>Other videos</source> | 6062 | <source>Other videos</source> |
6014 | <target>فيديوهات أخرى</target> | 6063 | <target>فيديوهات أخرى</target> |
6015 | 6064 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html</context><context context-type="linenumber">5</context></context-group> | |
6016 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 6065 | </trans-unit> |
6017 | <trans-unit id="2913936134410914576" datatype="html"> | 6066 | <trans-unit id="2913936134410914576" datatype="html"> |
6018 | <source>AUTOPLAY</source> | 6067 | <source>AUTOPLAY</source> |
6019 | <target>تشغيل تلقائي</target> | 6068 | <target>تشغيل تلقائي</target> |
6020 | 6069 | <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> | |
6021 | <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> | 6070 | </trans-unit> |
6022 | <trans-unit id="4619111912751495491" datatype="html"> | 6071 | <trans-unit id="4619111912751495491" datatype="html"> |
6023 | <source>Report this comment</source> | 6072 | <source>Report this comment</source> |
6024 | <target state="translated">أبلغ عن هذا التعليق</target> | 6073 | <target state="translated">أبلغ عن هذا التعليق</target> |
6025 | 6074 | <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> | |
6026 | <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> | 6075 | </trans-unit> |
6027 | <trans-unit id="7419704019640008953" datatype="html"> | 6076 | <trans-unit id="7419704019640008953" datatype="html"> |
6028 | <source>Share</source> | 6077 | <source>Share</source> |
6029 | <target>شارك</target> | 6078 | <target>شارك</target> |
@@ -6134,65 +6183,61 @@ The link will expire within 1 hour.</source> | |||
6134 | <trans-unit id="8928816882866356838" datatype="html"> | 6183 | <trans-unit id="8928816882866356838" datatype="html"> |
6135 | <source>Public</source> | 6184 | <source>Public</source> |
6136 | <target>للعامة</target> | 6185 | <target>للعامة</target> |
6137 | 6186 | <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> | |
6138 | <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> | 6187 | </trans-unit> |
6139 | |||
6140 | |||
6141 | |||
6142 | |||
6143 | |||
6144 | <trans-unit id="4416005356063364306" datatype="html"> | 6188 | <trans-unit id="4416005356063364306" datatype="html"> |
6145 | <source>This video is blocked.</source> | 6189 | <source>This video is blocked.</source> |
6146 | <target>هذا الفيديو محجوب.</target> | 6190 | <target>هذا الفيديو محجوب.</target> |
6147 | 6191 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">26</context></context-group> | |
6148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 6192 | </trans-unit> |
6149 | <trans-unit id="2482137713226830428" datatype="html"> | 6193 | <trans-unit id="2482137713226830428" datatype="html"> |
6150 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source> | 6194 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source> |
6151 | <target state="new">Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></target> | 6195 | <target state="new">Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></target> |
6152 | 6196 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">31</context></context-group> | |
6153 | 6197 | </trans-unit> | |
6154 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | ||
6155 | <trans-unit id="1813238393038053050" datatype="html"> | 6198 | <trans-unit id="1813238393038053050" datatype="html"> |
6156 | <source>SUPPORT</source> | 6199 | <source>SUPPORT</source> |
6157 | <target>الدعم</target> | 6200 | <target>الدعم</target> |
6158 | 6201 | <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> | |
6159 | <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> | 6202 | </trans-unit> |
6160 | <trans-unit id="9219888125536520293" datatype="html"> | 6203 | <trans-unit id="9219888125536520293" datatype="html"> |
6161 | <source>SHARE</source> | 6204 | <source>SHARE</source> |
6162 | <target>شارك</target> | 6205 | <target>شارك</target> |
6163 | 6206 | <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> | |
6164 | <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> | 6207 | </trans-unit> |
6165 | <trans-unit id="6671956963490165282" datatype="html"> | 6208 | <trans-unit id="6671956963490165282" datatype="html"> |
6166 | <source>SAVE</source> | 6209 | <source>SAVE</source> |
6167 | <target>حفظ</target> | 6210 | <target>حفظ</target> |
6168 | 6211 | <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> | |
6169 | <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> | 6212 | </trans-unit> |
6170 | <trans-unit id="647016352598204238" datatype="html"> | 6213 | <trans-unit id="647016352598204238" datatype="html"> |
6171 | <source>DOWNLOAD</source> | 6214 | <source>DOWNLOAD</source> |
6172 | <target state="translated">نزِّل</target> | 6215 | <target state="translated">نزِّل</target> |
6173 | 6216 | <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> | |
6174 | <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> | 6217 | </trans-unit> |
6175 | <trans-unit id="687548610091961489" datatype="html"> | 6218 | <trans-unit id="687548610091961489" datatype="html"> |
6176 | <source>By <x id="INTERPOLATION"/></source> | 6219 | <source>By <x id="INTERPOLATION"/></source> |
6177 | <target>بواسطة <x id="INTERPOLATION"/></target> | 6220 | <target>بواسطة <x id="INTERPOLATION"/></target> |
6178 | 6221 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">71</context></context-group> | |
6179 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">71</context></context-group></trans-unit> | 6222 | </trans-unit> |
6180 | <trans-unit id="7215101881367554791" datatype="html"> | 6223 | <trans-unit id="7215101881367554791" datatype="html"> |
6181 | <source>Show more</source> | 6224 | <source>Show more</source> |
6182 | <target>عرض المزيد</target> | 6225 | <target>عرض المزيد</target> |
6183 | 6226 | <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> | |
6184 | <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> | 6227 | </trans-unit> |
6185 | <trans-unit id="3517550046701184661" datatype="html"> | 6228 | <trans-unit id="3517550046701184661" datatype="html"> |
6186 | <source>Show less</source> | 6229 | <source>Show less</source> |
6187 | <target>عرض القليل</target> | 6230 | <target>عرض القليل</target> |
6188 | 6231 | <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> | |
6189 | <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> | 6232 | </trans-unit> |
6190 | <trans-unit id="66785722678644243" datatype="html"> | 6233 | <trans-unit id="66785722678644243" datatype="html"> |
6191 | <source>Origin</source> | 6234 | <source>Origin</source> |
6192 | <target state="new">Origin</target> | 6235 | <target state="new">Origin</target> |
6193 | 6236 | <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> | |
6194 | <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"> | 6237 | </trans-unit> |
6195 | <source>Open the video on the origin instance</source><target state="new">Open the video on the origin instance</target> | 6238 | <trans-unit id="6981359593518942576" datatype="html"> |
6239 | <source>Open the video on the origin instance</source> | ||
6240 | <target state="new">Open the video on the origin instance</target> | ||
6196 | <context-group purpose="location"> | 6241 | <context-group purpose="location"> |
6197 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context> | 6242 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context> |
6198 | <context context-type="linenumber">14</context> | 6243 | <context context-type="linenumber">14</context> |
@@ -6201,196 +6246,202 @@ The link will expire within 1 hour.</source> | |||
6201 | <trans-unit id="5139892963394684487" datatype="html"> | 6246 | <trans-unit id="5139892963394684487" datatype="html"> |
6202 | <source>Originally published</source> | 6247 | <source>Originally published</source> |
6203 | <target>نشر في الأصل</target> | 6248 | <target>نشر في الأصل</target> |
6204 | 6249 | <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> | |
6205 | <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> | 6250 | </trans-unit> |
6206 | <trans-unit id="6402393085909200998" datatype="html"> | 6251 | <trans-unit id="6402393085909200998" datatype="html"> |
6207 | <source>Friendly Reminder:</source> | 6252 | <source>Friendly Reminder:</source> |
6208 | <target>تذكير ودي:</target> | 6253 | <target>تذكير ودي:</target> |
6209 | 6254 | <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> | |
6210 | <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> | 6255 | </trans-unit> |
6211 | <trans-unit id="2935783216050341269" datatype="html"> | 6256 | <trans-unit id="2935783216050341269" datatype="html"> |
6212 | <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> | 6257 | <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> |
6213 | <target>يشير نظام المشاركة المستخدم لهذا الفيديو إلى أنه يمكن إرسال بعض المعلومات الفنية حول نظامك (مثل عنوان IP العام) إلى نظرائك الآخرين.</target> | 6258 | <target>يشير نظام المشاركة المستخدم لهذا الفيديو إلى أنه يمكن إرسال بعض المعلومات الفنية حول نظامك (مثل عنوان IP العام) إلى نظرائك الآخرين.</target> |
6214 | 6259 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">6</context></context-group> | |
6215 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 6260 | </trans-unit> |
6216 | <trans-unit id="4512155674928869984" datatype="html"> | 6261 | <trans-unit id="4512155674928869984" datatype="html"> |
6217 | <source>Get more information</source> | 6262 | <source>Get more information</source> |
6218 | <target>احصل على معلومات أكثر</target> | 6263 | <target>احصل على معلومات أكثر</target> |
6219 | 6264 | <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> | |
6220 | <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> | 6265 | </trans-unit> |
6221 | <trans-unit id="5184373289520493569" datatype="html"> | 6266 | <trans-unit id="5184373289520493569" datatype="html"> |
6222 | <source>OK</source> | 6267 | <source>OK</source> |
6223 | <target>موافق</target> | 6268 | <target>موافق</target> |
6224 | 6269 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">13</context></context-group> | |
6225 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit><trans-unit id="4092533321838934102" datatype="html"> | 6270 | </trans-unit> |
6226 | <source> The video is being imported, it will be available when the import is finished. | 6271 | <trans-unit id="4092533321838934102" datatype="html"> |
6227 | </source><target state="new"> The video is being imported, it will be available when the import is finished. | 6272 | <source>The video is being imported, it will be available when the import is finished.</source> |
6273 | <target state="new"> The video is being imported, it will be available when the import is finished. | ||
6228 | </target> | 6274 | </target> |
6229 | <context-group purpose="location"> | 6275 | <context-group purpose="location"> |
6230 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 6276 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
6231 | <context context-type="linenumber">2,3</context> | 6277 | <context context-type="linenumber">2,3</context> |
6232 | </context-group> | 6278 | </context-group> |
6233 | </trans-unit><trans-unit id="8304621069698650554" datatype="html"> | 6279 | </trans-unit> |
6234 | <source> The video is being transcoded, it may not work properly. | 6280 | <trans-unit id="8304621069698650554" datatype="html"> |
6235 | </source><target state="new"> The video is being transcoded, it may not work properly. | 6281 | <source>The video is being transcoded, it may not work properly.</source> |
6282 | <target state="new"> The video is being transcoded, it may not work properly. | ||
6236 | </target> | 6283 | </target> |
6237 | <context-group purpose="location"> | 6284 | <context-group purpose="location"> |
6238 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 6285 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
6239 | <context context-type="linenumber">6,7</context> | 6286 | <context context-type="linenumber">6,7</context> |
6240 | </context-group> | 6287 | </context-group> |
6241 | </trans-unit><trans-unit id="9080034597841586171" datatype="html"> | 6288 | </trans-unit> |
6242 | <source> The video is being moved to an external server, it may not work properly. | 6289 | <trans-unit id="9080034597841586171" datatype="html"> |
6243 | </source><target state="new"> The video is being moved to an external server, it may not work properly. | 6290 | <source>The video is being moved to an external server, it may not work properly.</source> |
6291 | <target state="new"> The video is being moved to an external server, it may not work properly. | ||
6244 | </target> | 6292 | </target> |
6245 | <context-group purpose="location"> | 6293 | <context-group purpose="location"> |
6246 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 6294 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
6247 | <context context-type="linenumber">10,11</context> | 6295 | <context context-type="linenumber">10,11</context> |
6248 | </context-group> | 6296 | </context-group> |
6249 | </trans-unit><trans-unit id="8619499607322327082" datatype="html"> | 6297 | </trans-unit> |
6250 | <source> This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. | 6298 | <trans-unit id="8619499607322327082" datatype="html"> |
6251 | </source><target state="new"> This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. | 6299 | <source>This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. </source> |
6300 | <target state="new"> This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. | ||
6252 | </target> | 6301 | </target> |
6253 | 6302 | <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> | |
6254 | <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="4262297989675590582" datatype="html"> | 6303 | </trans-unit> |
6255 | <source> This live has not started yet. | 6304 | <trans-unit id="4262297989675590582" datatype="html"> |
6256 | </source><target state="new"> This live has not started yet. | 6305 | <source>This live has not started yet.</source> |
6306 | <target state="new"> This live has not started yet. | ||
6257 | </target> | 6307 | </target> |
6258 | 6308 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">18</context></context-group> | |
6259 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit><trans-unit id="4926204350710628499" datatype="html"> | 6309 | </trans-unit> |
6260 | <source> This live has ended. | 6310 | <trans-unit id="4926204350710628499" datatype="html"> |
6261 | </source><target state="new"> This live has ended. | 6311 | <source>This live has ended.</source> |
6312 | <target state="new"> This live has ended. | ||
6262 | </target> | 6313 | </target> |
6263 | 6314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">22</context></context-group> | |
6264 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 6315 | </trans-unit> |
6265 | <trans-unit id="8518611938109939710" datatype="html"> | 6316 | <trans-unit id="8518611938109939710" datatype="html"> |
6266 | <source>SORT BY</source> | 6317 | <source>SORT BY</source> |
6267 | <target>ترتيب حسب</target> | 6318 | <target>ترتيب حسب</target> |
6268 | 6319 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">11</context></context-group> | |
6269 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 6320 | </trans-unit> |
6270 | <trans-unit id="6448160249466325288" datatype="html"> | 6321 | <trans-unit id="6448160249466325288" datatype="html"> |
6271 | <source>Most recent first (default)</source> | 6322 | <source>Most recent first (default)</source> |
6272 | <target>الأحدث أولاً (افتراضي)</target> | 6323 | <target>الأحدث أولاً (افتراضي)</target> |
6273 | 6324 | <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> | |
6274 | <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> | 6325 | </trans-unit> |
6275 | <trans-unit id="5179007899354903649" datatype="html"> | 6326 | <trans-unit id="5179007899354903649" datatype="html"> |
6276 | <source>Most replies first</source> | 6327 | <source>Most replies first</source> |
6277 | <target>الأكثر ردودًا أولاً</target> | 6328 | <target>الأكثر ردودًا أولاً</target> |
6278 | 6329 | <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> | |
6279 | <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> | 6330 | </trans-unit> |
6280 | <trans-unit id="7494537777006082055" datatype="html"> | 6331 | <trans-unit id="7494537777006082055" datatype="html"> |
6281 | <source>No comments.</source> | 6332 | <source>No comments.</source> |
6282 | <target>ليس هناك تعليقات.</target> | 6333 | <target>ليس هناك تعليقات.</target> |
6283 | 6334 | <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> | |
6284 | <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> | 6335 | </trans-unit> |
6285 | <trans-unit id="6390009909920475335" datatype="html"> | 6336 | <trans-unit id="6390009909920475335" datatype="html"> |
6286 | <source>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 </source> | 6337 | <source>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 </source> |
6287 | <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> | 6338 | <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> |
6288 | 6339 | <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> | |
6289 | <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></trans-unit> | 6340 | </trans-unit> |
6290 | <trans-unit id="4036338619293319383" datatype="html"> | 6341 | <trans-unit id="4036338619293319383" datatype="html"> |
6291 | <source>{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</source> | 6342 | <source>{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</source> |
6292 | <target state="new">{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</target> | 6343 | <target state="new">{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</target> |
6293 | 6344 | <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> | |
6294 | 6345 | <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> | |
6295 | 6346 | <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> | |
6296 | <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> | 6347 | </trans-unit> |
6297 | <trans-unit id="127329338495775339" datatype="html"> | 6348 | <trans-unit id="127329338495775339" datatype="html"> |
6298 | <source>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' }}"/> </source> | 6349 | <source>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' }}"/> </source> |
6299 | <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> | 6350 | <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> |
6300 | 6351 | <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> | |
6301 | <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></trans-unit> | 6352 | </trans-unit> |
6302 | <trans-unit id="5535545444690528619" datatype="html"> | 6353 | <trans-unit id="5535545444690528619" datatype="html"> |
6303 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></source> | 6354 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></source> |
6304 | <target state="new">View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></target> | 6355 | <target state="new">View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></target> |
6305 | 6356 | <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> | |
6306 | <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> | 6357 | </trans-unit> |
6307 | <trans-unit id="1055254162789146714" datatype="html"> | 6358 | <trans-unit id="1055254162789146714" datatype="html"> |
6308 | <source>Comments are disabled.</source> | 6359 | <source>Comments are disabled.</source> |
6309 | <target>تم تعطيل التعليقات.</target> | 6360 | <target>تم تعطيل التعليقات.</target> |
6310 | 6361 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">92</context></context-group> | |
6311 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> | 6362 | </trans-unit> |
6312 | <trans-unit id="3691787517663044217" datatype="html"> | 6363 | <trans-unit id="3691787517663044217" datatype="html"> |
6313 | <source>The deletion will be sent to remote instances so they can reflect the change.</source> | 6364 | <source>The deletion will be sent to remote instances so they can reflect the change.</source> |
6314 | <target state="translated">سيتم إرسال الحذف إلى المثيلات البعيدة بحيث تعكس التغيير.</target> | 6365 | <target state="translated">سيتم إرسال الحذف إلى المثيلات البعيدة بحيث تعكس التغيير.</target> |
6315 | 6366 | <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> | |
6316 | <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> | 6367 | </trans-unit> |
6317 | <trans-unit id="7321800851971795962" datatype="html"> | 6368 | <trans-unit id="7321800851971795962" datatype="html"> |
6318 | <source>It is a remote comment, so the deletion will only be effective on your instance.</source> | 6369 | <source>It is a remote comment, so the deletion will only be effective on your instance.</source> |
6319 | <target state="translated">إنه تعليق عن بعد ، لذلك لن يكون الحذف ساريًا إلا على المنصة الخاص بك.</target> | 6370 | <target state="translated">إنه تعليق عن بعد ، لذلك لن يكون الحذف ساريًا إلا على المنصة الخاص بك.</target> |
6320 | 6371 | <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> | |
6321 | <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> | 6372 | </trans-unit> |
6322 | <trans-unit id="5964038603724691720" datatype="html"> | 6373 | <trans-unit id="5964038603724691720" datatype="html"> |
6323 | <source>Delete and re-draft</source> | 6374 | <source>Delete and re-draft</source> |
6324 | <target state="translated">احذف وأعد الصياغة</target> | 6375 | <target state="translated">احذف وأعد الصياغة</target> |
6325 | 6376 | <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> | |
6326 | <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> | 6377 | </trans-unit> |
6327 | <trans-unit id="7163633882758007711" datatype="html"> | 6378 | <trans-unit id="7163633882758007711" datatype="html"> |
6328 | <source>Do you really want to delete and re-draft this comment?</source> | 6379 | <source>Do you really want to delete and re-draft this comment?</source> |
6329 | <target state="translated">أتريد حذف وإعادة صياغة هذا التعليق؟</target> | 6380 | <target state="translated">أتريد حذف وإعادة صياغة هذا التعليق؟</target> |
6330 | 6381 | <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> | |
6331 | <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> | 6382 | </trans-unit> |
6332 | <trans-unit id="5733075023444401902" datatype="html"> | 6383 | <trans-unit id="5733075023444401902" datatype="html"> |
6333 | <source>Add comment...</source> | 6384 | <source>Add comment...</source> |
6334 | <target>إضافة تعليق…</target> | 6385 | <target>إضافة تعليق…</target> |
6335 | 6386 | <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> | |
6336 | <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> | 6387 | </trans-unit> |
6337 | <trans-unit id="982956590420630883" datatype="html"> | 6388 | <trans-unit id="982956590420630883" datatype="html"> |
6338 | <source>Markdown compatible</source> | 6389 | <source>Markdown compatible</source> |
6339 | <target state="translated">متوافق مع ماركداون</target> | 6390 | <target state="translated">متوافق مع ماركداون</target> |
6340 | 6391 | <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> | |
6341 | <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> | 6392 | </trans-unit> |
6342 | <trans-unit id="5793595564950675122" datatype="html"> | 6393 | <trans-unit id="5793595564950675122" datatype="html"> |
6343 | <source>Markdown compatible that supports:</source> | 6394 | <source>Markdown compatible that supports:</source> |
6344 | <target state="translated">توافق ماركداون يدعم:</target> | 6395 | <target state="translated">توافق ماركداون يدعم:</target> |
6345 | 6396 | <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> | |
6346 | <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> | 6397 | </trans-unit> |
6347 | <trans-unit id="8422216333877786919" datatype="html"> | 6398 | <trans-unit id="8422216333877786919" datatype="html"> |
6348 | <source>Auto generated links</source> | 6399 | <source>Auto generated links</source> |
6349 | <target state="translated">روابط مولدة تلقائيا</target> | 6400 | <target state="translated">روابط مولدة تلقائيا</target> |
6350 | 6401 | <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> | |
6351 | <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> | 6402 | </trans-unit> |
6352 | <trans-unit id="6365822416124232422" datatype="html"> | 6403 | <trans-unit id="6365822416124232422" datatype="html"> |
6353 | <source>Break lines</source> | 6404 | <source>Break lines</source> |
6354 | <target state="translated">قسم السطور</target> | 6405 | <target state="translated">قسم السطور</target> |
6355 | 6406 | <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> | |
6356 | <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> | 6407 | </trans-unit> |
6357 | <trans-unit id="8756167649220050929" datatype="html"> | 6408 | <trans-unit id="8756167649220050929" datatype="html"> |
6358 | <source>Lists</source> | 6409 | <source>Lists</source> |
6359 | <target state="translated">القوائم</target> | 6410 | <target state="translated">القوائم</target> |
6360 | 6411 | <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> | |
6361 | 6412 | <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> | |
6362 | <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> | 6413 | </trans-unit> |
6363 | <trans-unit id="2516633974298697807" datatype="html"> | 6414 | <trans-unit id="2516633974298697807" datatype="html"> |
6364 | <source>Emphasis</source> | 6415 | <source>Emphasis</source> |
6365 | <target state="translated">تشديد</target> | 6416 | <target state="translated">تشديد</target> |
6366 | 6417 | <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> | |
6367 | 6418 | <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> | |
6368 | <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> | 6419 | </trans-unit> |
6369 | <trans-unit id="2810844969104710423" datatype="html"> | 6420 | <trans-unit id="2810844969104710423" datatype="html"> |
6370 | <source>bold</source> | 6421 | <source>bold</source> |
6371 | <target state="translated">عريض</target> | 6422 | <target state="translated">عريض</target> |
6372 | 6423 | <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> | |
6373 | <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> | 6424 | </trans-unit> |
6374 | <trans-unit id="8497278965577453274" datatype="html"> | 6425 | <trans-unit id="8497278965577453274" datatype="html"> |
6375 | <source>italic</source> | 6426 | <source>italic</source> |
6376 | <target state="translated">مائل</target> | 6427 | <target state="translated">مائل</target> |
6377 | 6428 | <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> | |
6378 | <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> | 6429 | </trans-unit> |
6379 | <trans-unit id="7227611412155083002" datatype="html"> | 6430 | <trans-unit id="7227611412155083002" datatype="html"> |
6380 | <source>Emoji shortcuts</source> | 6431 | <source>Emoji shortcuts</source> |
6381 | <target state="translated">اختصارات ايموجي</target> | 6432 | <target state="translated">اختصارات ايموجي</target> |
6382 | 6433 | <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> | |
6383 | <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> | 6434 | </trans-unit> |
6384 | <trans-unit id="6608581312644027413" datatype="html"> | 6435 | <trans-unit id="6608581312644027413" datatype="html"> |
6385 | <source>Emoji markup</source> | 6436 | <source>Emoji markup</source> |
6386 | <target state="translated">ترميز ايموجي</target> | 6437 | <target state="translated">ترميز ايموجي</target> |
6387 | 6438 | <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> | |
6388 | <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> | 6439 | </trans-unit> |
6389 | <trans-unit id="381522038671562286" datatype="html"> | 6440 | <trans-unit id="381522038671562286" datatype="html"> |
6390 | <source>See complete list</source> | 6441 | <source>See complete list</source> |
6391 | <target state="translated">اعرض القائمة كاملة</target> | 6442 | <target state="translated">اعرض القائمة كاملة</target> |
6392 | 6443 | <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> | |
6393 | <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> | 6444 | </trans-unit> |
6394 | <trans-unit id="2330577642930707695" datatype="html"> | 6445 | <trans-unit id="2330577642930707695" datatype="html"> |
6395 | <source>Cancel</source> | 6446 | <source>Cancel</source> |
6396 | <target>الغاء</target> | 6447 | <target>الغاء</target> |
@@ -6399,23 +6450,23 @@ The link will expire within 1 hour.</source> | |||
6399 | <trans-unit id="2263890353858735493" datatype="html"> | 6450 | <trans-unit id="2263890353858735493" datatype="html"> |
6400 | <source>You are one step away from commenting</source> | 6451 | <source>You are one step away from commenting</source> |
6401 | <target>أنت على بعد خطوة واحدة من التعليق</target> | 6452 | <target>أنت على بعد خطوة واحدة من التعليق</target> |
6402 | 6453 | <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> | |
6403 | <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> | 6454 | </trans-unit> |
6404 | <trans-unit id="7508177761852352782" datatype="html"> | 6455 | <trans-unit id="7508177761852352782" datatype="html"> |
6405 | <source>You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example).</source> | 6456 | <source>You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example).</source> |
6406 | <target state="new"> You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). </target> | 6457 | <target state="new"> You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). </target> |
6407 | 6458 | <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">65</context></context-group> | |
6408 | <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">65</context></context-group></trans-unit> | 6459 | </trans-unit> |
6409 | <trans-unit id="2958389355547305739" datatype="html"> | 6460 | <trans-unit id="2958389355547305739" datatype="html"> |
6410 | <source>Login to comment</source> | 6461 | <source>Login to comment</source> |
6411 | <target>يرجى الولوج أولًا للتعليق</target> | 6462 | <target>يرجى الولوج أولًا للتعليق</target> |
6412 | 6463 | <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> | |
6413 | <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> | 6464 | </trans-unit> |
6414 | <trans-unit id="4817080330698362530" datatype="html"> | 6465 | <trans-unit id="4817080330698362530" datatype="html"> |
6415 | <source>Markdown Emoji List</source> | 6466 | <source>Markdown Emoji List</source> |
6416 | <target state="translated">قائمة ايموج الخاصة بماركداون</target> | 6467 | <target state="translated">قائمة ايموج الخاصة بماركداون</target> |
6417 | 6468 | <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> | |
6418 | <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> | 6469 | </trans-unit> |
6419 | <trans-unit id="2662644497259948010" datatype="html"> | 6470 | <trans-unit id="2662644497259948010" datatype="html"> |
6420 | <source>Comment</source> | 6471 | <source>Comment</source> |
6421 | <target state="translated">تعليق</target> | 6472 | <target state="translated">تعليق</target> |
@@ -6424,14 +6475,14 @@ The link will expire within 1 hour.</source> | |||
6424 | <trans-unit id="4502286564339177240" datatype="html"> | 6475 | <trans-unit id="4502286564339177240" datatype="html"> |
6425 | <source>Reply</source> | 6476 | <source>Reply</source> |
6426 | <target state="translated">رد</target> | 6477 | <target state="translated">رد</target> |
6427 | 6478 | <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> | |
6428 | 6479 | <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> | |
6429 | <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> | 6480 | </trans-unit> |
6430 | <trans-unit id="3572897237443938692" datatype="html"> | 6481 | <trans-unit id="3572897237443938692" datatype="html"> |
6431 | <source>Highlighted comment</source> | 6482 | <source>Highlighted comment</source> |
6432 | <target>تعليق مميز</target> | 6483 | <target>تعليق مميز</target> |
6433 | 6484 | <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> | |
6434 | <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> | 6485 | </trans-unit> |
6435 | <trans-unit id="4502286564339177240" datatype="html"> | 6486 | <trans-unit id="4502286564339177240" datatype="html"> |
6436 | <source>Reply</source> | 6487 | <source>Reply</source> |
6437 | <target>رد</target> | 6488 | <target>رد</target> |
@@ -6440,24 +6491,23 @@ The link will expire within 1 hour.</source> | |||
6440 | <trans-unit id="2447932355167015019" datatype="html"> | 6491 | <trans-unit id="2447932355167015019" datatype="html"> |
6441 | <source>This comment has been deleted</source> | 6492 | <source>This comment has been deleted</source> |
6442 | <target>تم حذف هذا التعليق</target> | 6493 | <target>تم حذف هذا التعليق</target> |
6443 | 6494 | <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> | |
6444 | <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> | 6495 | </trans-unit> |
6445 | <trans-unit id="6979021199788941693" datatype="html"> | 6496 | <trans-unit id="6979021199788941693" datatype="html"> |
6446 | <source>Your message has been sent.</source> | 6497 | <source>Your message has been sent.</source> |
6447 | <target>تم ارسال رسالتك.</target> | 6498 | <target>تم ارسال رسالتك.</target> |
6448 | 6499 | <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> | |
6449 | <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> | 6500 | </trans-unit> |
6450 | <trans-unit id="2072135752262464360" datatype="html"> | 6501 | <trans-unit id="2072135752262464360" datatype="html"> |
6451 | <source>You already sent this form recently</source> | 6502 | <source>You already sent this form recently</source> |
6452 | <target>لقد أرسلت هذا النموذج بالفعل مؤخرًا</target> | 6503 | <target>لقد أرسلت هذا النموذج بالفعل مؤخرًا</target> |
6453 | 6504 | <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> | |
6454 | <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> | 6505 | </trans-unit> |
6455 | <trans-unit id="819067926858619041" datatype="html"> | 6506 | <trans-unit id="819067926858619041" datatype="html"> |
6456 | <source>Account videos</source> | 6507 | <source>Account videos</source> |
6457 | <target state="translated">فيديوهات الحساب</target> | 6508 | <target state="translated">فيديوهات الحساب</target> |
6458 | 6509 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">35</context></context-group> | |
6459 | <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> | 6510 | </trans-unit> |
6460 | |||
6461 | <trans-unit id="4605517634011438234" datatype="html"> | 6511 | <trans-unit id="4605517634011438234" datatype="html"> |
6462 | <source>ACCOUNT</source> | 6512 | <source>ACCOUNT</source> |
6463 | <target state="new">ACCOUNT</target> | 6513 | <target state="new">ACCOUNT</target> |
@@ -6469,63 +6519,78 @@ The link will expire within 1 hour.</source> | |||
6469 | <trans-unit id="6823616469362610020" datatype="html"> | 6519 | <trans-unit id="6823616469362610020" datatype="html"> |
6470 | <source>Account video channels</source> | 6520 | <source>Account video channels</source> |
6471 | <target state="translated">قنوات الفيديو للحساب</target> | 6521 | <target state="translated">قنوات الفيديو للحساب</target> |
6472 | 6522 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">26</context></context-group> | |
6473 | <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> | 6523 | </trans-unit> |
6474 | |||
6475 | <trans-unit id="807777065817324789" datatype="html"> | 6524 | <trans-unit id="807777065817324789" datatype="html"> |
6476 | <source>Display all videos (private, unlisted or not yet published)</source> | 6525 | <source>Display all videos (private, unlisted or not yet published)</source> |
6477 | <target state="new">Display all videos (private, unlisted or not yet published)</target> | 6526 | <target state="new">Display all videos (private, unlisted or not yet published)</target> |
6478 | 6527 | <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> | |
6479 | 6528 | </trans-unit> | |
6480 | 6529 | <trans-unit id="784681343382270982" datatype="html"> | |
6481 | 6530 | <source>Remove this filter</source> | |
6482 | 6531 | <target state="new">Remove this filter</target> | |
6483 | 6532 | <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> | |
6484 | 6533 | </trans-unit> | |
6485 | <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"> | 6534 | <trans-unit id="5254305728396198887" datatype="html"> |
6486 | <source>Remove this filter</source><target state="new">Remove this filter</target> | 6535 | <source>Sensitive content</source> |
6487 | 6536 | <target state="new">Sensitive content</target> | |
6488 | <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"> | 6537 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">115</context></context-group> |
6489 | <source>Sensitive content</source><target state="new">Sensitive content</target> | 6538 | </trans-unit> |
6490 | 6539 | <trans-unit id="5590086849807274701" datatype="html"> | |
6491 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">115</context></context-group></trans-unit><trans-unit id="5590086849807274701" datatype="html"> | 6540 | <source>Scope</source> |
6492 | <source>Scope</source><target state="new">Scope</target> | 6541 | <target state="new">Scope</target> |
6493 | 6542 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">122</context></context-group> | |
6494 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">122</context></context-group></trans-unit><trans-unit id="5019568087038659501" datatype="html"> | 6543 | </trans-unit> |
6495 | <source>Federated</source><target state="new">Federated</target> | 6544 | <trans-unit id="5019568087038659501" datatype="html"> |
6496 | 6545 | <source>Federated</source> | |
6497 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">124</context></context-group></trans-unit><trans-unit id="1949800099101277248" datatype="html"> | 6546 | <target state="new">Federated</target> |
6498 | <source>Languages</source><target state="new">Languages</target> | 6547 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">124</context></context-group> |
6499 | 6548 | </trans-unit> | |
6500 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">132</context></context-group></trans-unit><trans-unit id="1902100407096396858" datatype="html"> | 6549 | <trans-unit id="1949800099101277248" datatype="html"> |
6501 | <source>Categories</source><target state="new">Categories</target> | 6550 | <source>Languages</source> |
6502 | 6551 | <target state="new">Languages</target> | |
6503 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">141</context></context-group></trans-unit><trans-unit id="3599150758014724057" datatype="html"> | 6552 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">132</context></context-group> |
6504 | <source>All videos</source><target state="new">All videos</target> | 6553 | </trans-unit> |
6505 | 6554 | <trans-unit id="1902100407096396858" datatype="html"> | |
6506 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">150</context></context-group></trans-unit><trans-unit id="8466337030143068285" datatype="html"> | 6555 | <source>Categories</source> |
6507 | <source>Blurred</source><target state="new">Blurred</target> | 6556 | <target state="new">Categories</target> |
6508 | 6557 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">141</context></context-group> | |
6509 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">225</context></context-group></trans-unit><trans-unit id="7054829409324166420" datatype="html"> | 6558 | </trans-unit> |
6510 | <source>hidden</source><target state="new">hidden</target> | 6559 | <trans-unit id="3599150758014724057" datatype="html"> |
6511 | 6560 | <source>All videos</source> | |
6512 | <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="5766954855630346873" datatype="html"> | 6561 | <target state="new">All videos</target> |
6513 | <source>blurred</source><target state="new">blurred</target> | 6562 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">150</context></context-group> |
6514 | 6563 | </trans-unit> | |
6515 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">232</context></context-group></trans-unit><trans-unit id="1833483831276078393" datatype="html"> | 6564 | <trans-unit id="8466337030143068285" datatype="html"> |
6516 | <source>displayed</source><target state="new">displayed</target> | 6565 | <source>Blurred</source> |
6517 | 6566 | <target state="new">Blurred</target> | |
6518 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">234</context></context-group></trans-unit> | 6567 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">225</context></context-group> |
6568 | </trans-unit> | ||
6569 | <trans-unit id="7054829409324166420" datatype="html"> | ||
6570 | <source>hidden</source> | ||
6571 | <target state="new">hidden</target> | ||
6572 | <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> | ||
6573 | </trans-unit> | ||
6574 | <trans-unit id="5766954855630346873" datatype="html"> | ||
6575 | <source>blurred</source> | ||
6576 | <target state="new">blurred</target> | ||
6577 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">232</context></context-group> | ||
6578 | </trans-unit> | ||
6579 | <trans-unit id="1833483831276078393" datatype="html"> | ||
6580 | <source>displayed</source> | ||
6581 | <target state="new">displayed</target> | ||
6582 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">234</context></context-group> | ||
6583 | </trans-unit> | ||
6519 | <trans-unit id="4856575356061361269" datatype="html"> | 6584 | <trans-unit id="4856575356061361269" datatype="html"> |
6520 | <source><x id="PH"/> direct account followers </source> | 6585 | <source><x id="PH"/> direct account followers </source> |
6521 | <target><x id="PH"/> متابعًا مباشرًا للحساب </target> | 6586 | <target><x id="PH"/> متابعًا مباشرًا للحساب </target> |
6522 | 6587 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">152</context></context-group> | |
6523 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">152</context></context-group></trans-unit> | 6588 | </trans-unit> |
6524 | <trans-unit id="6250999352462648289" datatype="html"> | 6589 | <trans-unit id="6250999352462648289" datatype="html"> |
6525 | <source>Report this account</source> | 6590 | <source>Report this account</source> |
6526 | <target state="translated">بلِّغ عن هذا الحساب</target> | 6591 | <target state="translated">بلِّغ عن هذا الحساب</target> |
6527 | 6592 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">196</context></context-group> | |
6528 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> | 6593 | </trans-unit> |
6529 | <trans-unit id="1504521795586863905" datatype="html"> | 6594 | <trans-unit id="1504521795586863905" datatype="html"> |
6530 | <source>VIDEOS</source> | 6595 | <source>VIDEOS</source> |
6531 | <target state="translated">فيديوهات</target> | 6596 | <target state="translated">فيديوهات</target> |
@@ -6535,19 +6600,19 @@ The link will expire within 1 hour.</source> | |||
6535 | <trans-unit id="25349740244798533" datatype="html"> | 6600 | <trans-unit id="25349740244798533" datatype="html"> |
6536 | <source>Username copied</source> | 6601 | <source>Username copied</source> |
6537 | <target>تم نسخ اسم المستخدم</target> | 6602 | <target>تم نسخ اسم المستخدم</target> |
6538 | 6603 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">120</context></context-group> | |
6539 | 6604 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">103</context></context-group> | |
6540 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">120</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit> | 6605 | </trans-unit> |
6541 | <trans-unit id="9221735175659318025" datatype="html"> | 6606 | <trans-unit id="9221735175659318025" datatype="html"> |
6542 | <source>1 subscriber</source> | 6607 | <source>1 subscriber</source> |
6543 | <target state="translated">مشترك</target> | 6608 | <target state="translated">مشترك</target> |
6544 | 6609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">124</context></context-group> | |
6545 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 6610 | </trans-unit> |
6546 | <trans-unit id="4097331874769079975" datatype="html"> | 6611 | <trans-unit id="4097331874769079975" datatype="html"> |
6547 | <source><x id="PH"/> subscribers</source> | 6612 | <source><x id="PH"/> subscribers</source> |
6548 | <target state="translated"><x id="PH"/> مشتركا</target> | 6613 | <target state="translated"><x id="PH"/> مشتركا</target> |
6549 | 6614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">126</context></context-group> | |
6550 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 6615 | </trans-unit> |
6551 | <trans-unit id="1035838766454786107" datatype="html"> | 6616 | <trans-unit id="1035838766454786107" datatype="html"> |
6552 | <source>Audio-only</source> | 6617 | <source>Audio-only</source> |
6553 | <target>صوت فقط</target> | 6618 | <target>صوت فقط</target> |
@@ -6597,8 +6662,10 @@ The link will expire within 1 hour.</source> | |||
6597 | <source>Auto (via ffmpeg)</source> | 6662 | <source>Auto (via ffmpeg)</source> |
6598 | <target>تلقائي (عبر ffmpeg)</target> | 6663 | <target>تلقائي (عبر ffmpeg)</target> |
6599 | <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> | 6664 | <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> |
6600 | </trans-unit><trans-unit id="3642770981085338761" datatype="html"> | 6665 | </trans-unit> |
6601 | <source>Followers of your instance</source><target state="new">Followers of your instance</target> | 6666 | <trans-unit id="3642770981085338761" datatype="html"> |
6667 | <source>Followers of your instance</source> | ||
6668 | <target state="new">Followers of your instance</target> | ||
6602 | <context-group purpose="location"> | 6669 | <context-group purpose="location"> |
6603 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> | 6670 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> |
6604 | <context context-type="linenumber">3</context> | 6671 | <context context-type="linenumber">3</context> |
@@ -6708,8 +6775,8 @@ The link will expire within 1 hour.</source> | |||
6708 | <trans-unit id="2060042292048624940" datatype="html"> | 6775 | <trans-unit id="2060042292048624940" datatype="html"> |
6709 | <source>Configuration updated.</source> | 6776 | <source>Configuration updated.</source> |
6710 | <target>تم تحديث الإعدادات.</target> | 6777 | <target>تم تحديث الإعدادات.</target> |
6711 | 6778 | <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">286</context></context-group> | |
6712 | <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">286</context></context-group></trans-unit> | 6779 | </trans-unit> |
6713 | <trans-unit id="6920964195632624609" datatype="html"> | 6780 | <trans-unit id="6920964195632624609" datatype="html"> |
6714 | <source>INSTANCE HOMEPAGE</source> | 6781 | <source>INSTANCE HOMEPAGE</source> |
6715 | <target state="new">INSTANCE HOMEPAGE</target> | 6782 | <target state="new">INSTANCE HOMEPAGE</target> |
@@ -6881,8 +6948,10 @@ The link will expire within 1 hour.</source> | |||
6881 | <source><x id="PH"/> removed from instance followers </source> | 6948 | <source><x id="PH"/> removed from instance followers </source> |
6882 | <target>أُزيل <x id="PH"/> من متابعي المثيل </target> | 6949 | <target>أُزيل <x id="PH"/> من متابعي المثيل </target> |
6883 | <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> | 6950 | <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> |
6884 | </trans-unit><trans-unit id="6018246591673612412" datatype="html"> | 6951 | </trans-unit> |
6885 | <source>Follow</source><target state="new">Follow</target> | 6952 | <trans-unit id="6018246591673612412" datatype="html"> |
6953 | <source>Follow</source> | ||
6954 | <target state="new">Follow</target> | ||
6886 | <context-group purpose="location"> | 6955 | <context-group purpose="location"> |
6887 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> | 6956 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> |
6888 | <context context-type="linenumber">3</context> | 6957 | <context context-type="linenumber">3</context> |
@@ -6895,8 +6964,10 @@ The link will expire within 1 hour.</source> | |||
6895 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | 6964 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> |
6896 | <context context-type="linenumber">18</context> | 6965 | <context context-type="linenumber">18</context> |
6897 | </context-group> | 6966 | </context-group> |
6898 | </trans-unit><trans-unit id="3596798855644241001" datatype="html"> | 6967 | </trans-unit> |
6899 | <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> | 6968 | <trans-unit id="3596798855644241001" datatype="html"> |
6969 | <source>1 host (without "http://"), account handle or channel handle per line</source> | ||
6970 | <target state="new">1 host (without "http://"), account handle or channel handle per line</target> | ||
6900 | <context-group purpose="location"> | 6971 | <context-group purpose="location"> |
6901 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> | 6972 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> |
6902 | <context context-type="linenumber">11</context> | 6973 | <context context-type="linenumber">11</context> |
@@ -6905,9 +6976,11 @@ The link will expire within 1 hour.</source> | |||
6905 | <trans-unit id="2355066641781598196" datatype="html"> | 6976 | <trans-unit id="2355066641781598196" datatype="html"> |
6906 | <source>Follow request(s) sent!</source> | 6977 | <source>Follow request(s) sent!</source> |
6907 | <target>تم إرسال طلب المتابعة!</target> | 6978 | <target>تم إرسال طلب المتابعة!</target> |
6908 | 6979 | <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> | |
6909 | <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"> | 6980 | </trans-unit> |
6910 | <source>Your instance subscriptions</source><target state="new">Your instance subscriptions</target> | 6981 | <trans-unit id="3459358413436264734" datatype="html"> |
6982 | <source>Your instance subscriptions</source> | ||
6983 | <target state="new">Your instance subscriptions</target> | ||
6911 | <context-group purpose="location"> | 6984 | <context-group purpose="location"> |
6912 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | 6985 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> |
6913 | <context context-type="linenumber">3</context> | 6986 | <context context-type="linenumber">3</context> |
@@ -6916,8 +6989,8 @@ The link will expire within 1 hour.</source> | |||
6916 | <trans-unit id="4245720728052819482" datatype="html"> | 6989 | <trans-unit id="4245720728052819482" datatype="html"> |
6917 | <source>Do you really want to unfollow <x id="PH"/>?</source> | 6990 | <source>Do you really want to unfollow <x id="PH"/>?</source> |
6918 | <target>هل تريد الغاء متابعة <x id="PH"/>؟</target> | 6991 | <target>هل تريد الغاء متابعة <x id="PH"/>؟</target> |
6919 | 6992 | <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> | |
6920 | <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> | 6993 | </trans-unit> |
6921 | <trans-unit id="9160510009013134726" datatype="html"> | 6994 | <trans-unit id="9160510009013134726" datatype="html"> |
6922 | <source>Unfollow</source> | 6995 | <source>Unfollow</source> |
6923 | <target>إلغاء المتابَعة</target> | 6996 | <target>إلغاء المتابَعة</target> |
@@ -6926,8 +6999,8 @@ The link will expire within 1 hour.</source> | |||
6926 | <trans-unit id="3935234189109112926" datatype="html"> | 6999 | <trans-unit id="3935234189109112926" datatype="html"> |
6927 | <source>You are not following <x id="PH"/> anymore.</source> | 7000 | <source>You are not following <x id="PH"/> anymore.</source> |
6928 | <target>انت لا تتابع <x id="PH"/> بعد الآن.</target> | 7001 | <target>انت لا تتابع <x id="PH"/> بعد الآن.</target> |
6929 | 7002 | <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> | |
6930 | <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> | 7003 | </trans-unit> |
6931 | <trans-unit id="2593763089859685916" datatype="html"> | 7004 | <trans-unit id="2593763089859685916" datatype="html"> |
6932 | <source>enabled</source> | 7005 | <source>enabled</source> |
6933 | <target>مفعّل</target> | 7006 | <target>مفعّل</target> |
@@ -6946,28 +7019,28 @@ The link will expire within 1 hour.</source> | |||
6946 | <trans-unit id="81585474102700882" datatype="html"> | 7019 | <trans-unit id="81585474102700882" datatype="html"> |
6947 | <source>Used</source> | 7020 | <source>Used</source> |
6948 | <target>مُستعمَل</target> | 7021 | <target>مُستعمَل</target> |
6949 | 7022 | <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">102</context></context-group> | |
6950 | <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">102</context></context-group></trans-unit> | 7023 | </trans-unit> |
6951 | <trans-unit id="3955868613858648955" datatype="html"> | 7024 | <trans-unit id="3955868613858648955" datatype="html"> |
6952 | <source>Available</source> | 7025 | <source>Available</source> |
6953 | <target>متوفر</target> | 7026 | <target>متوفر</target> |
6954 | 7027 | <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">102</context></context-group> | |
6955 | <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">102</context></context-group></trans-unit> | 7028 | </trans-unit> |
6956 | <trans-unit id="5875705095657098468" datatype="html"> | 7029 | <trans-unit id="5875705095657098468" datatype="html"> |
6957 | <source>Do you really want to remove this video redundancy?</source> | 7030 | <source>Do you really want to remove this video redundancy?</source> |
6958 | <target>هل تريد حقًا إزالة تكرار هذا الفيديو؟</target> | 7031 | <target>هل تريد حقًا إزالة تكرار هذا الفيديو؟</target> |
6959 | 7032 | <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">142</context></context-group> | |
6960 | <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">142</context></context-group></trans-unit> | 7033 | </trans-unit> |
6961 | <trans-unit id="9098272570113000349" datatype="html"> | 7034 | <trans-unit id="9098272570113000349" datatype="html"> |
6962 | <source>Remove redundancy</source> | 7035 | <source>Remove redundancy</source> |
6963 | <target>إزالة التكرار</target> | 7036 | <target>إزالة التكرار</target> |
6964 | 7037 | <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">143</context></context-group> | |
6965 | <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">143</context></context-group></trans-unit> | 7038 | </trans-unit> |
6966 | <trans-unit id="6537102123107780785" datatype="html"> | 7039 | <trans-unit id="6537102123107780785" datatype="html"> |
6967 | <source>Video redundancies removed!</source> | 7040 | <source>Video redundancies removed!</source> |
6968 | <target>تمت إزالة تكرار الفيديو!</target> | 7041 | <target>تمت إزالة تكرار الفيديو!</target> |
6969 | 7042 | <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> | |
6970 | <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> | 7043 | </trans-unit> |
6971 | <trans-unit id="2393853062458645999" datatype="html"> | 7044 | <trans-unit id="2393853062458645999" datatype="html"> |
6972 | <source>Comment updated.</source> | 7045 | <source>Comment updated.</source> |
6973 | <target>تم تحديث التعليق.</target> | 7046 | <target>تم تحديث التعليق.</target> |
@@ -6996,9 +7069,9 @@ The link will expire within 1 hour.</source> | |||
6996 | <trans-unit id="8768506950499277937" datatype="html"> | 7069 | <trans-unit id="8768506950499277937" datatype="html"> |
6997 | <source>Copyright</source> | 7070 | <source>Copyright</source> |
6998 | <target state="translated">حقوق النشر</target> | 7071 | <target state="translated">حقوق النشر</target> |
6999 | 7072 | <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> | |
7000 | 7073 | <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> | |
7001 | <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">161</context></context-group></trans-unit> | 7074 | </trans-unit> |
7002 | <trans-unit id="3776575731053010580" datatype="html"> | 7075 | <trans-unit id="3776575731053010580" datatype="html"> |
7003 | <source>Server rules</source> | 7076 | <source>Server rules</source> |
7004 | <target>قواعد الخادم</target> | 7077 | <target>قواعد الخادم</target> |
@@ -7007,31 +7080,31 @@ The link will expire within 1 hour.</source> | |||
7007 | <trans-unit id="6907161397537530258" datatype="html"> | 7080 | <trans-unit id="6907161397537530258" datatype="html"> |
7008 | <source>Thumbnails</source> | 7081 | <source>Thumbnails</source> |
7009 | <target>صور مصغرة</target> | 7082 | <target>صور مصغرة</target> |
7010 | 7083 | <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> | |
7011 | 7084 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">176</context></context-group> | |
7012 | <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">176</context></context-group></trans-unit> | 7085 | </trans-unit> |
7013 | <trans-unit id="6473213678768782133" datatype="html"> | 7086 | <trans-unit id="6473213678768782133" datatype="html"> |
7014 | <source>Internal actions</source> | 7087 | <source>Internal actions</source> |
7015 | <target>الإجراءات الداخلية</target> | 7088 | <target>الإجراءات الداخلية</target> |
7016 | 7089 | <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">56</context></context-group> | |
7017 | 7090 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">256</context></context-group> | |
7018 | <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">56</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">256</context></context-group></trans-unit> | 7091 | </trans-unit> |
7019 | <trans-unit id="4559872264406386913" datatype="html"> | 7092 | <trans-unit id="4559872264406386913" datatype="html"> |
7020 | <source>Delete report</source> | 7093 | <source>Delete report</source> |
7021 | <target>احذف الإبلاغ</target> | 7094 | <target>احذف الإبلاغ</target> |
7022 | 7095 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">287</context></context-group> | |
7023 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">287</context></context-group></trans-unit> | 7096 | </trans-unit> |
7024 | <trans-unit id="5793550984155962433" datatype="html"> | 7097 | <trans-unit id="5793550984155962433" datatype="html"> |
7025 | <source>Actions for the flagged account</source> | 7098 | <source>Actions for the flagged account</source> |
7026 | <target state="translated">الاجراءات للحسابات المعلمة</target> | 7099 | <target state="translated">الاجراءات للحسابات المعلمة</target> |
7027 | 7100 | <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> | |
7028 | <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> | 7101 | </trans-unit> |
7029 | <trans-unit id="4903651219400691248" datatype="html"> | 7102 | <trans-unit id="4903651219400691248" datatype="html"> |
7030 | <source>Mute account</source> | 7103 | <source>Mute account</source> |
7031 | <target state="translated">أكتم حسابا</target> | 7104 | <target state="translated">أكتم حسابا</target> |
7032 | 7105 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">304</context></context-group> | |
7033 | 7106 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">322</context></context-group> | |
7034 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">304</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">322</context></context-group></trans-unit> | 7107 | </trans-unit> |
7035 | <trans-unit id="4021487547497211597" datatype="html"> | 7108 | <trans-unit id="4021487547497211597" datatype="html"> |
7036 | <source>Open video actions</source> | 7109 | <source>Open video actions</source> |
7037 | <target state="new">Open video actions</target> | 7110 | <target state="new">Open video actions</target> |
@@ -7047,115 +7120,115 @@ The link will expire within 1 hour.</source> | |||
7047 | <trans-unit id="3719503424625455635" datatype="html"> | 7120 | <trans-unit id="3719503424625455635" datatype="html"> |
7048 | <source>Mute server account</source> | 7121 | <source>Mute server account</source> |
7049 | <target state="translated">اكتم حساب خادم</target> | 7122 | <target state="translated">اكتم حساب خادم</target> |
7050 | 7123 | <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> | |
7051 | <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> | 7124 | </trans-unit> |
7052 | <trans-unit id="1679841953757186358" datatype="html"> | 7125 | <trans-unit id="1679841953757186358" datatype="html"> |
7053 | <source>Mark as accepted</source> | 7126 | <source>Mark as accepted</source> |
7054 | <target>وضع علامة "مقبول"</target> | 7127 | <target>وضع علامة "مقبول"</target> |
7055 | 7128 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">272</context></context-group> | |
7056 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">272</context></context-group></trans-unit> | 7129 | </trans-unit> |
7057 | <trans-unit id="7993358694073742566" datatype="html"> | 7130 | <trans-unit id="7993358694073742566" datatype="html"> |
7058 | <source>Mark as rejected</source> | 7131 | <source>Mark as rejected</source> |
7059 | <target>وضع علامة مرفوض</target> | 7132 | <target>وضع علامة مرفوض</target> |
7060 | 7133 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">277</context></context-group> | |
7061 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">277</context></context-group></trans-unit> | 7134 | </trans-unit> |
7062 | <trans-unit id="4175703770051343108" datatype="html"> | 7135 | <trans-unit id="4175703770051343108" datatype="html"> |
7063 | <source>Add internal note</source> | 7136 | <source>Add internal note</source> |
7064 | <target state="translated">أضف ملاحظة داخلية</target> | 7137 | <target state="translated">أضف ملاحظة داخلية</target> |
7065 | 7138 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">282</context></context-group> | |
7066 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">282</context></context-group></trans-unit> | 7139 | </trans-unit> |
7067 | <trans-unit id="296166371893775555" datatype="html"> | 7140 | <trans-unit id="296166371893775555" datatype="html"> |
7068 | <source>Actions for the video</source> | 7141 | <source>Actions for the video</source> |
7069 | <target>الإجراءات على هذه الفيديو</target> | 7142 | <target>الإجراءات على هذه الفيديو</target> |
7070 | 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">79</context></context-group> | |
7071 | 7144 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">346</context></context-group> | |
7072 | <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">79</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">346</context></context-group></trans-unit> | 7145 | </trans-unit> |
7073 | <trans-unit id="3924877328520650445" datatype="html"> | 7146 | <trans-unit id="3924877328520650445" datatype="html"> |
7074 | <source>Block video</source> | 7147 | <source>Block video</source> |
7075 | <target>احجب الفيديو</target> | 7148 | <target>احجب الفيديو</target> |
7076 | 7149 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">351</context></context-group> | |
7077 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">351</context></context-group></trans-unit> | 7150 | </trans-unit> |
7078 | <trans-unit id="4762794934098378428" datatype="html"> | 7151 | <trans-unit id="4762794934098378428" datatype="html"> |
7079 | <source>Video blocked.</source> | 7152 | <source>Video blocked.</source> |
7080 | <target>حُجب الفيديو.</target> | 7153 | <target>حُجب الفيديو.</target> |
7081 | 7154 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">357</context></context-group> | |
7082 | 7155 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context><context context-type="linenumber">60</context></context-group> | |
7083 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">357</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> | 7156 | </trans-unit> |
7084 | <trans-unit id="4328862996304258770" datatype="html"> | 7157 | <trans-unit id="4328862996304258770" datatype="html"> |
7085 | <source>Unblock video</source> | 7158 | <source>Unblock video</source> |
7086 | <target>إلغاء حجب الفيديو</target> | 7159 | <target>إلغاء حجب الفيديو</target> |
7087 | 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">367</context></context-group> | |
7088 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">367</context></context-group></trans-unit> | 7161 | </trans-unit> |
7089 | <trans-unit id="9065327551191479877" datatype="html"> | 7162 | <trans-unit id="9065327551191479877" datatype="html"> |
7090 | <source>Video unblocked.</source> | 7163 | <source>Video unblocked.</source> |
7091 | <target>حُجب الفيديو.</target> | 7164 | <target>حُجب الفيديو.</target> |
7092 | 7165 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">373</context></context-group> | |
7093 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">373</context></context-group></trans-unit> | 7166 | </trans-unit> |
7094 | <trans-unit id="2909684945706361544" datatype="html"> | 7167 | <trans-unit id="2909684945706361544" datatype="html"> |
7095 | <source>Delete video</source> | 7168 | <source>Delete video</source> |
7096 | <target>حذف الفيديو</target> | 7169 | <target>حذف الفيديو</target> |
7097 | 7170 | <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> | |
7098 | <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> | 7171 | </trans-unit> |
7099 | <trans-unit id="2210418817778733727" datatype="html"> | 7172 | <trans-unit id="2210418817778733727" datatype="html"> |
7100 | <source>Actions for the comment</source> | 7173 | <source>Actions for the comment</source> |
7101 | <target state="translated">إجراءات على التعليق</target> | 7174 | <target state="translated">إجراءات على التعليق</target> |
7102 | 7175 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">412</context></context-group> | |
7103 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">412</context></context-group></trans-unit> | 7176 | </trans-unit> |
7104 | <trans-unit id="7978668497183230348" datatype="html"> | 7177 | <trans-unit id="7978668497183230348" datatype="html"> |
7105 | <source>Delete comment</source> | 7178 | <source>Delete comment</source> |
7106 | <target state="translated">أزل التعليق</target> | 7179 | <target state="translated">أزل التعليق</target> |
7107 | 7180 | <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> | |
7108 | <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> | 7181 | </trans-unit> |
7109 | <trans-unit id="6747218355168080191" datatype="html"> | 7182 | <trans-unit id="6747218355168080191" datatype="html"> |
7110 | <source>Do you really want to delete this comment?</source> | 7183 | <source>Do you really want to delete this comment?</source> |
7111 | <target state="translated">أتريد إزالة هذا التعليق؟</target> | 7184 | <target state="translated">أتريد إزالة هذا التعليق؟</target> |
7112 | 7185 | <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> | |
7113 | 7186 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">422</context></context-group> | |
7114 | <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">422</context></context-group></trans-unit> | 7187 | </trans-unit> |
7115 | <trans-unit id="7837272126865175984" datatype="html"> | 7188 | <trans-unit id="7837272126865175984" datatype="html"> |
7116 | <source>Comment deleted.</source> | 7189 | <source>Comment deleted.</source> |
7117 | <target state="translated">حُذف التعليق.</target> | 7190 | <target state="translated">حُذف التعليق.</target> |
7118 | 7191 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">430</context></context-group> | |
7119 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">430</context></context-group></trans-unit> | 7192 | </trans-unit> |
7120 | <trans-unit id="3622946684246476652" datatype="html"> | 7193 | <trans-unit id="3622946684246476652" datatype="html"> |
7121 | <source>Do you really want to delete this video?</source> | 7194 | <source>Do you really want to delete this video?</source> |
7122 | <target>متأكد من حذف هذا الفيديو؟</target> | 7195 | <target>متأكد من حذف هذا الفيديو؟</target> |
7123 | 7196 | <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> | |
7124 | 7197 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">387</context></context-group> | |
7125 | 7198 | <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> | |
7126 | <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/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">387</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">203</context></context-group></trans-unit> | 7199 | </trans-unit> |
7127 | <trans-unit id="3941342949736653028" datatype="html"> | 7200 | <trans-unit id="3941342949736653028" datatype="html"> |
7128 | <source>Video deleted.</source> | 7201 | <source>Video deleted.</source> |
7129 | <target>تم حذف الفيديو.</target> | 7202 | <target>تم حذف الفيديو.</target> |
7130 | 7203 | <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">98</context></context-group> | |
7131 | 7204 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">395</context></context-group> | |
7132 | <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">98</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">395</context></context-group></trans-unit> | 7205 | </trans-unit> |
7133 | <trans-unit id="5072091387445907742" datatype="html"> | 7206 | <trans-unit id="5072091387445907742" datatype="html"> |
7134 | <source>Actions for the reporter</source> | 7207 | <source>Actions for the reporter</source> |
7135 | <target>إجراءات على المبلِّغ</target> | 7208 | <target>إجراءات على المبلِّغ</target> |
7136 | 7209 | <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> | |
7137 | <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> | 7210 | </trans-unit> |
7138 | <trans-unit id="6599069899275412095" datatype="html"> | 7211 | <trans-unit id="6599069899275412095" datatype="html"> |
7139 | <source>Mute reporter</source> | 7212 | <source>Mute reporter</source> |
7140 | <target>أكتم المبلِّغ</target> | 7213 | <target>أكتم المبلِّغ</target> |
7141 | 7214 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">328</context></context-group> | |
7142 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">328</context></context-group></trans-unit> | 7215 | </trans-unit> |
7143 | <trans-unit id="2558977494773636050" datatype="html"> | 7216 | <trans-unit id="2558977494773636050" datatype="html"> |
7144 | <source>Account <x id="PH"/> muted by the instance.</source> | 7217 | <source>Account <x id="PH"/> muted by the instance.</source> |
7145 | <target>كُتم حساب <x id="PH"/> بواسطة المثيل.</target> | 7218 | <target>كُتم حساب <x id="PH"/> بواسطة المثيل.</target> |
7146 | 7219 | <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> | |
7147 | 7220 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">173</context></context-group> | |
7148 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 7221 | </trans-unit> |
7149 | <trans-unit id="1595779426198793580" datatype="html"> | 7222 | <trans-unit id="1595779426198793580" datatype="html"> |
7150 | <source>Mute server</source> | 7223 | <source>Mute server</source> |
7151 | <target>أكتم الخادم</target> | 7224 | <target>أكتم الخادم</target> |
7152 | 7225 | <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> | |
7153 | <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> | 7226 | </trans-unit> |
7154 | <trans-unit id="8014491157078444256" datatype="html"> | 7227 | <trans-unit id="8014491157078444256" datatype="html"> |
7155 | <source>Server <x id="PH"/> muted by the instance.</source> | 7228 | <source>Server <x id="PH"/> muted by the instance.</source> |
7156 | <target>كُتم الخادم <x id="PH"/> بواسطة المثيل.</target> | 7229 | <target>كُتم الخادم <x id="PH"/> بواسطة المثيل.</target> |
7157 | 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">458</context></context-group> | |
7158 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">458</context></context-group></trans-unit> | 7231 | </trans-unit> |
7159 | <trans-unit id="2044813052587776285" datatype="html"> | 7232 | <trans-unit id="2044813052587776285" datatype="html"> |
7160 | <source>Add a message to communicate with the reporter</source> | 7233 | <source>Add a message to communicate with the reporter</source> |
7161 | <target state="translated">أضف رسالة لتواصل مع المبلِّغ</target> | 7234 | <target state="translated">أضف رسالة لتواصل مع المبلِّغ</target> |
@@ -7169,63 +7242,63 @@ The link will expire within 1 hour.</source> | |||
7169 | <trans-unit id="1250415136605923486" datatype="html"> | 7242 | <trans-unit id="1250415136605923486" datatype="html"> |
7170 | <source>Do you really want to delete this abuse report?</source> | 7243 | <source>Do you really want to delete this abuse report?</source> |
7171 | <target>هل تريد حقًا حذف تقرير إساءة الاستخدام هذا؟</target> | 7244 | <target>هل تريد حقًا حذف تقرير إساءة الاستخدام هذا؟</target> |
7172 | 7245 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">145</context></context-group> | |
7173 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">145</context></context-group></trans-unit> | 7246 | </trans-unit> |
7174 | <trans-unit id="3482559157143817408" datatype="html"> | 7247 | <trans-unit id="3482559157143817408" datatype="html"> |
7175 | <source>Abuse deleted.</source> | 7248 | <source>Abuse deleted.</source> |
7176 | <target>تم حذف الإساءة.</target> | 7249 | <target>تم حذف الإساءة.</target> |
7177 | 7250 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">151</context></context-group> | |
7178 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">151</context></context-group></trans-unit> | 7251 | </trans-unit> |
7179 | <trans-unit id="6282990098351939529" datatype="html"> | 7252 | <trans-unit id="6282990098351939529" datatype="html"> |
7180 | <source>Deleted comment</source> | 7253 | <source>Deleted comment</source> |
7181 | <target state="translated">تعليق محذوف</target> | 7254 | <target state="translated">تعليق محذوف</target> |
7182 | 7255 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">227</context></context-group> | |
7183 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">227</context></context-group></trans-unit> | 7256 | </trans-unit> |
7184 | <trans-unit id="9196775343330824083" datatype="html"> | 7257 | <trans-unit id="9196775343330824083" datatype="html"> |
7185 | <source>Messages with reporter</source> | 7258 | <source>Messages with reporter</source> |
7186 | <target state="translated">راسل المبلِّغ</target> | 7259 | <target state="translated">راسل المبلِّغ</target> |
7187 | 7260 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">261</context></context-group> | |
7188 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">261</context></context-group></trans-unit> | 7261 | </trans-unit> |
7189 | <trans-unit id="8770468575924421391" datatype="html"> | 7262 | <trans-unit id="8770468575924421391" datatype="html"> |
7190 | <source>Messages with moderators</source> | 7263 | <source>Messages with moderators</source> |
7191 | <target state="translated">راسل المشرفين</target> | 7264 | <target state="translated">راسل المشرفين</target> |
7192 | 7265 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">262</context></context-group> | |
7193 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">262</context></context-group></trans-unit> | 7266 | </trans-unit> |
7194 | <trans-unit id="8528549800795985099" datatype="html"> | 7267 | <trans-unit id="8528549800795985099" datatype="html"> |
7195 | <source>Update internal note</source> | 7268 | <source>Update internal note</source> |
7196 | <target state="translated">حدِّث الملاحظة الداخلية</target> | 7269 | <target state="translated">حدِّث الملاحظة الداخلية</target> |
7197 | 7270 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">267</context></context-group> | |
7198 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">267</context></context-group></trans-unit> | 7271 | </trans-unit> |
7199 | <trans-unit id="3962242315365992494" datatype="html"> | 7272 | <trans-unit id="3962242315365992494" datatype="html"> |
7200 | <source>Switch video block to manual</source> | 7273 | <source>Switch video block to manual</source> |
7201 | <target>بدِّل طريقة حجب الفيديو إلى اليدوية</target> | 7274 | <target>بدِّل طريقة حجب الفيديو إلى اليدوية</target> |
7202 | 7275 | <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">61</context></context-group> | |
7203 | <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">61</context></context-group></trans-unit> | 7276 | </trans-unit> |
7204 | <trans-unit id="6906423861055262169" datatype="html"> | 7277 | <trans-unit id="6906423861055262169" datatype="html"> |
7205 | <source>Video <x id="PH"/> switched to manual block.</source> | 7278 | <source>Video <x id="PH"/> switched to manual block.</source> |
7206 | <target state="translated">Video <x id="PH"/> switched to manual block.</target> | 7279 | <target state="translated">Video <x id="PH"/> switched to manual block.</target> |
7207 | 7280 | <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">67</context></context-group> | |
7208 | <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">67</context></context-group></trans-unit> | 7281 | </trans-unit> |
7209 | <trans-unit id="7293356040886494773" datatype="html"> | 7282 | <trans-unit id="7293356040886494773" datatype="html"> |
7210 | <source>Do you really want to unblock this video? It will be available again in the videos list.</source> | 7283 | <source>Do you really want to unblock this video? It will be available again in the videos list.</source> |
7211 | <target>هل تريد إلغاء حجب هذا الفيديو؟ سيكون متاحًا مرة أخرى في قائمة مقاطع الفيديو.</target> | 7284 | <target>هل تريد إلغاء حجب هذا الفيديو؟ سيكون متاحًا مرة أخرى في قائمة مقاطع الفيديو.</target> |
7212 | 7285 | <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">132</context></context-group> | |
7213 | 7286 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">180</context></context-group> | |
7214 | <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">132</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">180</context></context-group></trans-unit> | 7287 | </trans-unit> |
7215 | <trans-unit id="4859202148272511129" datatype="html"> | 7288 | <trans-unit id="4859202148272511129" datatype="html"> |
7216 | <source>Unblock</source> | 7289 | <source>Unblock</source> |
7217 | <target>ألغ الحجب</target> | 7290 | <target>ألغ الحجب</target> |
7218 | 7291 | <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">83</context></context-group> | |
7219 | 7292 | <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">134</context></context-group> | |
7220 | 7293 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">182</context></context-group> | |
7221 | 7294 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">296</context></context-group> | |
7222 | <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">83</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">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">182</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">296</context></context-group></trans-unit> | 7295 | </trans-unit> |
7223 | <trans-unit id="4922469417589203720" datatype="html"> | 7296 | <trans-unit id="4922469417589203720" datatype="html"> |
7224 | <source>Video <x id="PH"/> unblocked.</source> | 7297 | <source>Video <x id="PH"/> unblocked.</source> |
7225 | <target>ألغي حجب <x id="PH"/>.</target> | 7298 | <target>ألغي حجب <x id="PH"/>.</target> |
7226 | 7299 | <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">140</context></context-group> | |
7227 | 7300 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">188</context></context-group> | |
7228 | <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">140</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">188</context></context-group></trans-unit> | 7301 | </trans-unit> |
7229 | <trans-unit id="212615365039028546" datatype="html"> | 7302 | <trans-unit id="212615365039028546" datatype="html"> |
7230 | <source>You don't have plugins installed yet.</source> | 7303 | <source>You don't have plugins installed yet.</source> |
7231 | <target>حاليا ليس لديك أية إضافة مثبتة.</target> | 7304 | <target>حاليا ليس لديك أية إضافة مثبتة.</target> |
@@ -7316,23 +7389,23 @@ The link will expire within 1 hour.</source> | |||
7316 | <trans-unit id="6901018060567164184" datatype="html"> | 7389 | <trans-unit id="6901018060567164184" datatype="html"> |
7317 | <source>Plugins</source> | 7390 | <source>Plugins</source> |
7318 | <target>الإضافات</target> | 7391 | <target>الإضافات</target> |
7319 | 7392 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">31</context></context-group> | |
7320 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">31</context></context-group></trans-unit> | 7393 | </trans-unit> |
7321 | <trans-unit id="2798270190074840767" datatype="html"> | 7394 | <trans-unit id="2798270190074840767" datatype="html"> |
7322 | <source>Themes</source> | 7395 | <source>Themes</source> |
7323 | <target>السمات</target> | 7396 | <target>السمات</target> |
7324 | 7397 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">35</context></context-group> | |
7325 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">35</context></context-group></trans-unit> | 7398 | </trans-unit> |
7326 | <trans-unit id="2941409202780782189" datatype="html"> | 7399 | <trans-unit id="2941409202780782189" datatype="html"> |
7327 | <source>plugin</source> | 7400 | <source>plugin</source> |
7328 | <target>إضافة</target> | 7401 | <target>إضافة</target> |
7329 | 7402 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">43</context></context-group> | |
7330 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">43</context></context-group></trans-unit> | 7403 | </trans-unit> |
7331 | <trans-unit id="840045833311458646" datatype="html"> | 7404 | <trans-unit id="840045833311458646" datatype="html"> |
7332 | <source>theme</source> | 7405 | <source>theme</source> |
7333 | <target>سمة</target> | 7406 | <target>سمة</target> |
7334 | 7407 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">46</context></context-group> | |
7335 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 7408 | </trans-unit> |
7336 | <trans-unit id="2483018961011868950" datatype="html"> | 7409 | <trans-unit id="2483018961011868950" datatype="html"> |
7337 | <source>IP address</source> | 7410 | <source>IP address</source> |
7338 | <target state="new">IP address</target> | 7411 | <target state="new">IP address</target> |
@@ -7458,9 +7531,9 @@ The link will expire within 1 hour.</source> | |||
7458 | <trans-unit id="1519954996184640001" datatype="html"> | 7531 | <trans-unit id="1519954996184640001" datatype="html"> |
7459 | <source>Error</source> | 7532 | <source>Error</source> |
7460 | <target>خطأ</target> | 7533 | <target>خطأ</target> |
7461 | 7534 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">103</context></context-group> | |
7462 | 7535 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">18</context></context-group> | |
7463 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">103</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> | 7536 | </trans-unit> |
7464 | <trans-unit id="5076187961693950167" datatype="html"> | 7537 | <trans-unit id="5076187961693950167" datatype="html"> |
7465 | <source>Standard logs</source> | 7538 | <source>Standard logs</source> |
7466 | <target>السجلات القياسية</target> | 7539 | <target>السجلات القياسية</target> |
@@ -7474,8 +7547,8 @@ The link will expire within 1 hour.</source> | |||
7474 | <trans-unit id="1886888801485703107" datatype="html"> | 7547 | <trans-unit id="1886888801485703107" datatype="html"> |
7475 | <source>User <x id="PH"/> created.</source> | 7548 | <source>User <x id="PH"/> created.</source> |
7476 | <target>أُنشئ المستخدم <x id="PH"/>.</target> | 7549 | <target>أُنشئ المستخدم <x id="PH"/>.</target> |
7477 | 7550 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">77</context></context-group> | |
7478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 7551 | </trans-unit> |
7479 | <trans-unit id="8286337167859377104" datatype="html"> | 7552 | <trans-unit id="8286337167859377104" datatype="html"> |
7480 | <source>Create user</source> | 7553 | <source>Create user</source> |
7481 | <target state="translated">أنشئ مستخدما</target> | 7554 | <target state="translated">أنشئ مستخدما</target> |
@@ -7499,25 +7572,23 @@ The link will expire within 1 hour.</source> | |||
7499 | <trans-unit id="149953821752893163" datatype="html"> | 7572 | <trans-unit id="149953821752893163" datatype="html"> |
7500 | <source>Update user password</source> | 7573 | <source>Update user password</source> |
7501 | <target>حدّث كلمة مرور المستخدم</target> | 7574 | <target>حدّث كلمة مرور المستخدم</target> |
7502 | 7575 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">53</context></context-group> | |
7503 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">53</context></context-group></trans-unit> | 7576 | </trans-unit> |
7504 | |||
7505 | |||
7506 | <trans-unit id="780323526182667308" datatype="html"> | 7577 | <trans-unit id="780323526182667308" datatype="html"> |
7507 | <source>User <x id="PH"/> updated.</source> | 7578 | <source>User <x id="PH"/> updated.</source> |
7508 | <target>حُدّث حساب المستخدم <x id="PH"/>.</target> | 7579 | <target>حُدّث حساب المستخدم <x id="PH"/>.</target> |
7509 | 7580 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">92</context></context-group> | |
7510 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">92</context></context-group></trans-unit> | 7581 | </trans-unit> |
7511 | <trans-unit id="1349763489797682899" datatype="html"> | 7582 | <trans-unit id="1349763489797682899" datatype="html"> |
7512 | <source>Update user</source> | 7583 | <source>Update user</source> |
7513 | <target>تحديث المستخدِم</target> | 7584 | <target>تحديث المستخدِم</target> |
7514 | 7585 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">111</context></context-group> | |
7515 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">111</context></context-group></trans-unit> | 7586 | </trans-unit> |
7516 | <trans-unit id="8819563010322372715" datatype="html"> | 7587 | <trans-unit id="8819563010322372715" datatype="html"> |
7517 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> | 7588 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> |
7518 | <target>أُرسل بريد لاستعادة كلمة المرور الى <x id="PH"/>.</target> | 7589 | <target>أُرسل بريد لاستعادة كلمة المرور الى <x id="PH"/>.</target> |
7519 | 7590 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">118</context></context-group> | |
7520 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7591 | </trans-unit> |
7521 | <trans-unit id="7483807629538115183" datatype="html"> | 7592 | <trans-unit id="7483807629538115183" datatype="html"> |
7522 | <source>Users list</source> | 7593 | <source>Users list</source> |
7523 | <target state="translated">قائمة المستخدمين</target> | 7594 | <target state="translated">قائمة المستخدمين</target> |
@@ -7538,14 +7609,12 @@ The link will expire within 1 hour.</source> | |||
7538 | <target state="translated">الاتحادية</target> | 7609 | <target state="translated">الاتحادية</target> |
7539 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</context></context-group> | 7610 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</context></context-group> |
7540 | </trans-unit> | 7611 | </trans-unit> |
7541 | |||
7542 | |||
7543 | <trans-unit id="3767259920053407667" datatype="html"> | 7612 | <trans-unit id="3767259920053407667" datatype="html"> |
7544 | <source>Videos will be deleted, comments will be tombstoned.</source> | 7613 | <source>Videos will be deleted, comments will be tombstoned.</source> |
7545 | <target state="translated">سيحذف مقاطع الفيديو ، ستحذف التعليقات.</target> | 7614 | <target state="translated">سيحذف مقاطع الفيديو ، ستحذف التعليقات.</target> |
7546 | 7615 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">82</context></context-group> | |
7547 | 7616 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">267</context></context-group> | |
7548 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">82</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">267</context></context-group></trans-unit> | 7617 | </trans-unit> |
7549 | <trans-unit id="4209525355702493436" datatype="html"> | 7618 | <trans-unit id="4209525355702493436" datatype="html"> |
7550 | <source>Ban</source> | 7619 | <source>Ban</source> |
7551 | <target state="translated">حظر</target> | 7620 | <target state="translated">حظر</target> |
@@ -7555,9 +7624,9 @@ The link will expire within 1 hour.</source> | |||
7555 | <trans-unit id="3855396975723886053" datatype="html"> | 7624 | <trans-unit id="3855396975723886053" datatype="html"> |
7556 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> | 7625 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> |
7557 | <target>لن يتمكن المستخدم من تسجيل الدخول بعد الآن ، ولكن سيتم الاحتفاظ بمقاطع الفيديو والتعليقات كما هي.</target> | 7626 | <target>لن يتمكن المستخدم من تسجيل الدخول بعد الآن ، ولكن سيتم الاحتفاظ بمقاطع الفيديو والتعليقات كما هي.</target> |
7558 | 7627 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">88</context></context-group> | |
7559 | 7628 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">272</context></context-group> | |
7560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">88</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">272</context></context-group></trans-unit> | 7629 | </trans-unit> |
7561 | <trans-unit id="4451482225013335720" datatype="html"> | 7630 | <trans-unit id="4451482225013335720" datatype="html"> |
7562 | <source>Unban</source> | 7631 | <source>Unban</source> |
7563 | <target>ألغ الحظر</target> | 7632 | <target>ألغ الحظر</target> |
@@ -7568,22 +7637,28 @@ The link will expire within 1 hour.</source> | |||
7568 | <trans-unit id="7210277223053877333" datatype="html"> | 7637 | <trans-unit id="7210277223053877333" datatype="html"> |
7569 | <source>Set Email as Verified</source> | 7638 | <source>Set Email as Verified</source> |
7570 | <target>تعيين البريد الإلكتروني كمتحقق منه</target> | 7639 | <target>تعيين البريد الإلكتروني كمتحقق منه</target> |
7571 | 7640 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">100</context></context-group> | |
7572 | 7641 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">283</context></context-group> | |
7573 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">100</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">283</context></context-group></trans-unit><trans-unit id="4207916966377787111" datatype="html"> | 7642 | </trans-unit> |
7574 | <source>Created</source><target state="new">Created</target> | 7643 | <trans-unit id="4207916966377787111" datatype="html"> |
7644 | <source>Created</source> | ||
7645 | <target state="new">Created</target> | ||
7575 | <context-group purpose="location"> | 7646 | <context-group purpose="location"> |
7576 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> | 7647 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> |
7577 | <context context-type="linenumber">115</context> | 7648 | <context context-type="linenumber">115</context> |
7578 | </context-group> | 7649 | </context-group> |
7579 | </trans-unit><trans-unit id="8140268298586972139" datatype="html"> | 7650 | </trans-unit> |
7580 | <source>Daily quota</source><target state="new">Daily quota</target> | 7651 | <trans-unit id="8140268298586972139" datatype="html"> |
7652 | <source>Daily quota</source> | ||
7653 | <target state="new">Daily quota</target> | ||
7581 | <context-group purpose="location"> | 7654 | <context-group purpose="location"> |
7582 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> | 7655 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> |
7583 | <context context-type="linenumber">120</context> | 7656 | <context context-type="linenumber">120</context> |
7584 | </context-group> | 7657 | </context-group> |
7585 | </trans-unit><trans-unit id="7910076708497708162" datatype="html"> | 7658 | </trans-unit> |
7586 | <source>Last login</source><target state="new">Last login</target> | 7659 | <trans-unit id="7910076708497708162" datatype="html"> |
7660 | <source>Last login</source> | ||
7661 | <target state="new">Last login</target> | ||
7587 | <context-group purpose="location"> | 7662 | <context-group purpose="location"> |
7588 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> | 7663 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> |
7589 | <context context-type="linenumber">122</context> | 7664 | <context context-type="linenumber">122</context> |
@@ -7619,72 +7694,71 @@ The link will expire within 1 hour.</source> | |||
7619 | <trans-unit id="7166936623843420016" datatype="html"> | 7694 | <trans-unit id="7166936623843420016" datatype="html"> |
7620 | <source><x id="PH"/> users deleted. </source> | 7695 | <source><x id="PH"/> users deleted. </source> |
7621 | <target>حُذف <x id="PH"/> مستخدما. </target> | 7696 | <target>حُذف <x id="PH"/> مستخدما. </target> |
7622 | 7697 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">201</context></context-group> | |
7623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">201</context></context-group></trans-unit> | 7698 | </trans-unit> |
7624 | <trans-unit id="8360664597512051242" datatype="html"> | 7699 | <trans-unit id="8360664597512051242" datatype="html"> |
7625 | <source><x id="PH"/> users email set as verified. </source> | 7700 | <source><x id="PH"/> users email set as verified. </source> |
7626 | <target>عيِّن البريد الالكتروني ل<x id="PH"/> مستخدما كمتحقق منه. </target> | 7701 | <target>عيِّن البريد الالكتروني ل<x id="PH"/> مستخدما كمتحقق منه. </target> |
7627 | 7702 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">213</context></context-group> | |
7628 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit> | 7703 | </trans-unit> |
7629 | <trans-unit id="1266887509445371246" datatype="html"> | 7704 | <trans-unit id="1266887509445371246" datatype="html"> |
7630 | <source>Incorrect username or password.</source> | 7705 | <source>Incorrect username or password.</source> |
7631 | <target>اسم المستخدم أو كلمة المرور خاطئة.</target> | 7706 | <target>اسم المستخدم أو كلمة المرور خاطئة.</target> |
7632 | 7707 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">163</context></context-group> | |
7633 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 7708 | </trans-unit> |
7634 | <trans-unit id="6974874606619467663" datatype="html"> | 7709 | <trans-unit id="6974874606619467663" datatype="html"> |
7635 | <source>Your account is blocked.</source> | 7710 | <source>Your account is blocked.</source> |
7636 | <target state="translated">حسابك محجوب.</target> | 7711 | <target state="translated">حسابك محجوب.</target> |
7637 | 7712 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">164</context></context-group> | |
7638 | <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> | 7713 | </trans-unit> |
7639 | <trans-unit id="1137937154872046253" datatype="html"> | 7714 | <trans-unit id="1137937154872046253" datatype="html"> |
7640 | <source>Video channel <x id="PH"/> created.</source> | 7715 | <source>Video channel <x id="PH"/> created.</source> |
7641 | <target>أُنشئت قناة الفيديو <x id="PH"/>.</target> | 7716 | <target>أُنشئت قناة الفيديو <x id="PH"/>.</target> |
7642 | 7717 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">66</context></context-group> | |
7643 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 7718 | </trans-unit> |
7644 | <trans-unit id="8723777130353305761" datatype="html"> | 7719 | <trans-unit id="8723777130353305761" datatype="html"> |
7645 | <source>This name already exists on this instance.</source> | 7720 | <source>This name already exists on this instance.</source> |
7646 | <target>هذا الإسم موجود على هذا المثيل.</target> | 7721 | <target>هذا الإسم موجود على هذا المثيل.</target> |
7647 | 7722 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">72</context></context-group> | |
7648 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 7723 | </trans-unit> |
7649 | <trans-unit id="7589345916094713536" datatype="html"> | 7724 | <trans-unit id="7589345916094713536" datatype="html"> |
7650 | <source>Video channel <x id="PH"/> updated.</source> | 7725 | <source>Video channel <x id="PH"/> updated.</source> |
7651 | <target>حُدثت قناة فيديو <x id="PH"/>.</target> | 7726 | <target>حُدثت قناة فيديو <x id="PH"/>.</target> |
7652 | 7727 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">96</context></context-group> | |
7653 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">96</context></context-group></trans-unit> | 7728 | </trans-unit> |
7654 | <trans-unit id="8407755843502300957" datatype="html"> | 7729 | <trans-unit id="8407755843502300957" datatype="html"> |
7655 | <source>Banner changed.</source> | 7730 | <source>Banner changed.</source> |
7656 | <target state="new">Banner changed.</target> | 7731 | <target state="new">Banner changed.</target> |
7657 | 7732 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">141</context></context-group> | |
7658 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">141</context></context-group></trans-unit> | 7733 | </trans-unit> |
7659 | <trans-unit id="689638706960732906" datatype="html"> | 7734 | <trans-unit id="689638706960732906" datatype="html"> |
7660 | <source>banner</source> | 7735 | <source>banner</source> |
7661 | <target state="new">banner</target> | 7736 | <target state="new">banner</target> |
7662 | 7737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">148</context></context-group> | |
7663 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">148</context></context-group></trans-unit> | 7738 | </trans-unit> |
7664 | <trans-unit id="3230561499965076671" datatype="html"> | 7739 | <trans-unit id="3230561499965076671" datatype="html"> |
7665 | <source>Banner deleted.</source> | 7740 | <source>Banner deleted.</source> |
7666 | <target state="new">Banner deleted.</target> | 7741 | <target state="new">Banner deleted.</target> |
7667 | 7742 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">158</context></context-group> | |
7668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">158</context></context-group></trans-unit> | 7743 | </trans-unit> |
7669 | <trans-unit id="3525866160632851851" datatype="html"> | 7744 | <trans-unit id="3525866160632851851" datatype="html"> |
7670 | <source>Avatar changed.</source> | 7745 | <source>Avatar changed.</source> |
7671 | <target>تم تغيير صورتك الرمزية.</target> | 7746 | <target>تم تغيير صورتك الرمزية.</target> |
7672 | 7747 | <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> | |
7673 | 7748 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">111</context></context-group> | |
7674 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">111</context></context-group></trans-unit> | 7749 | </trans-unit> |
7675 | <trans-unit id="8920809083620698740" datatype="html"> | 7750 | <trans-unit id="8920809083620698740" datatype="html"> |
7676 | <source>avatar</source> | 7751 | <source>avatar</source> |
7677 | <target state="new">avatar</target> | 7752 | <target state="new">avatar</target> |
7678 | 7753 | <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> | |
7679 | 7754 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">118</context></context-group> | |
7680 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7755 | </trans-unit> |
7681 | <trans-unit id="2775050991871557896" datatype="html"> | 7756 | <trans-unit id="2775050991871557896" datatype="html"> |
7682 | <source>Avatar deleted.</source> | 7757 | <source>Avatar deleted.</source> |
7683 | <target state="new">Avatar deleted.</target> | 7758 | <target state="new">Avatar deleted.</target> |
7684 | 7759 | <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> | |
7685 | 7760 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">128</context></context-group> | |
7686 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> | 7761 | </trans-unit> |
7687 | |||
7688 | <trans-unit id="624066830180032195" datatype="html"> | 7762 | <trans-unit id="624066830180032195" datatype="html"> |
7689 | <source>Video channel <x id="PH"/> deleted.</source> | 7763 | <source>Video channel <x id="PH"/> deleted.</source> |
7690 | <target>حُذفت قناة فيديو <x id="PH"/>.</target> | 7764 | <target>حُذفت قناة فيديو <x id="PH"/>.</target> |
@@ -7740,28 +7814,28 @@ The link will expire within 1 hour.</source> | |||
7740 | <trans-unit id="5551551295632950210" datatype="html"> | 7814 | <trans-unit id="5551551295632950210" datatype="html"> |
7741 | <source>Videos history is enabled</source> | 7815 | <source>Videos history is enabled</source> |
7742 | <target>سجل مقاطع الفيديو مفعل</target> | 7816 | <target>سجل مقاطع الفيديو مفعل</target> |
7743 | 7817 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">114</context></context-group> | |
7744 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">114</context></context-group></trans-unit> | 7818 | </trans-unit> |
7745 | <trans-unit id="9136227503281311926" datatype="html"> | 7819 | <trans-unit id="9136227503281311926" datatype="html"> |
7746 | <source>Videos history is disabled</source> | 7820 | <source>Videos history is disabled</source> |
7747 | <target>سِجِل الفيديوهات معطّل</target> | 7821 | <target>سِجِل الفيديوهات معطّل</target> |
7748 | 7822 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">115</context></context-group> | |
7749 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">115</context></context-group></trans-unit> | 7823 | </trans-unit> |
7750 | <trans-unit id="8966726118414892732" datatype="html"> | 7824 | <trans-unit id="8966726118414892732" datatype="html"> |
7751 | <source>Delete videos history</source> | 7825 | <source>Delete videos history</source> |
7752 | <target>احذف سِجِل الفيديوهات</target> | 7826 | <target>احذف سِجِل الفيديوهات</target> |
7753 | 7827 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">127</context></context-group> | |
7754 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | 7828 | </trans-unit> |
7755 | <trans-unit id="2482543433481435105" datatype="html"> | 7829 | <trans-unit id="2482543433481435105" datatype="html"> |
7756 | <source>Are you sure you want to delete all your videos history?</source> | 7830 | <source>Are you sure you want to delete all your videos history?</source> |
7757 | <target>هل أنت متأكد من أنك تريد حذف سجل الفيديو بأكمله؟</target> | 7831 | <target>هل أنت متأكد من أنك تريد حذف سجل الفيديو بأكمله؟</target> |
7758 | 7832 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">128</context></context-group> | |
7759 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> | 7833 | </trans-unit> |
7760 | <trans-unit id="4051606152827088952" datatype="html"> | 7834 | <trans-unit id="4051606152827088952" datatype="html"> |
7761 | <source>Videos history deleted</source> | 7835 | <source>Videos history deleted</source> |
7762 | <target>تم حذف سجل مقاطع الفيديو</target> | 7836 | <target>تم حذف سجل مقاطع الفيديو</target> |
7763 | 7837 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">136</context></context-group> | |
7764 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">136</context></context-group></trans-unit> | 7838 | </trans-unit> |
7765 | <trans-unit id="1486537403020619891" datatype="html"> | 7839 | <trans-unit id="1486537403020619891" datatype="html"> |
7766 | <source>My watch history</source> | 7840 | <source>My watch history</source> |
7767 | <target state="new">My watch history</target> | 7841 | <target state="new">My watch history</target> |
@@ -7802,24 +7876,24 @@ The link will expire within 1 hour.</source> | |||
7802 | <trans-unit id="853586874765134886" datatype="html"> | 7876 | <trans-unit id="853586874765134886" datatype="html"> |
7803 | <source>You current password is invalid.</source> | 7877 | <source>You current password is invalid.</source> |
7804 | <target>كلمة المرور الحالية غير صالحة.</target> | 7878 | <target>كلمة المرور الحالية غير صالحة.</target> |
7805 | 7879 | <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> | |
7806 | 7880 | <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> | |
7807 | <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> | 7881 | </trans-unit> |
7808 | <trans-unit id="6159571046971090595" datatype="html"> | 7882 | <trans-unit id="6159571046971090595" datatype="html"> |
7809 | <source>Password updated.</source> | 7883 | <source>Password updated.</source> |
7810 | <target>حُدثت كلمة المرور.</target> | 7884 | <target>حُدثت كلمة المرور.</target> |
7811 | 7885 | <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> | |
7812 | <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> | 7886 | </trans-unit> |
7813 | <trans-unit id="5179099584732142331" datatype="html"> | 7887 | <trans-unit id="5179099584732142331" datatype="html"> |
7814 | <source>Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</source> | 7888 | <source>Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</source> |
7815 | <target>هل انت متأكد من حذف حسابك؟ سيؤدي هذا إلى حذف جميع بياناتك ، بما في ذلك القنوات ومقاطع الفيديو والتعليقات. المحتوى الذي تم تخزينه مؤقتًا بواسطة خوادم أخرى وأطراف أخرى قد يستغرق وقتًا أطول ليتم حذفه.</target> | 7889 | <target>هل انت متأكد من حذف حسابك؟ سيؤدي هذا إلى حذف جميع بياناتك ، بما في ذلك القنوات ومقاطع الفيديو والتعليقات. المحتوى الذي تم تخزينه مؤقتًا بواسطة خوادم أخرى وأطراف أخرى قد يستغرق وقتًا أطول ليتم حذفه.</target> |
7816 | 7890 | <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">23</context></context-group> | |
7817 | <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">23</context></context-group></trans-unit> | 7891 | </trans-unit> |
7818 | <trans-unit id="6897292459203320054" datatype="html"> | 7892 | <trans-unit id="6897292459203320054" datatype="html"> |
7819 | <source>Type your username to confirm</source> | 7893 | <source>Type your username to confirm</source> |
7820 | <target>أدخل اسم المستخدِم للتأكيد</target> | 7894 | <target>أدخل اسم المستخدِم للتأكيد</target> |
7821 | 7895 | <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">24</context></context-group> | |
7822 | <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">24</context></context-group></trans-unit> | 7896 | </trans-unit> |
7823 | <trans-unit id="3122895472333547524" datatype="html"> | 7897 | <trans-unit id="3122895472333547524" datatype="html"> |
7824 | <source>Delete your account</source> | 7898 | <source>Delete your account</source> |
7825 | <target state="translated">احذف حسابك</target> | 7899 | <target state="translated">احذف حسابك</target> |
@@ -7828,13 +7902,13 @@ The link will expire within 1 hour.</source> | |||
7828 | <trans-unit id="2520605306994744004" datatype="html"> | 7902 | <trans-unit id="2520605306994744004" datatype="html"> |
7829 | <source>Delete my account</source> | 7903 | <source>Delete my account</source> |
7830 | <target>احذف حسابي</target> | 7904 | <target>احذف حسابي</target> |
7831 | 7905 | <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">27</context></context-group> | |
7832 | <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">27</context></context-group></trans-unit> | 7906 | </trans-unit> |
7833 | <trans-unit id="3902597758945766483" datatype="html"> | 7907 | <trans-unit id="3902597758945766483" datatype="html"> |
7834 | <source>Your account is deleted.</source> | 7908 | <source>Your account is deleted.</source> |
7835 | <target>حُذف حسابك.</target> | 7909 | <target>حُذف حسابك.</target> |
7836 | 7910 | <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">34</context></context-group> | |
7837 | <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">34</context></context-group></trans-unit> | 7911 | </trans-unit> |
7838 | <trans-unit id="77907918814566205" datatype="html"> | 7912 | <trans-unit id="77907918814566205" datatype="html"> |
7839 | <source>New video from your subscriptions</source> | 7913 | <source>New video from your subscriptions</source> |
7840 | <target>فيديو جديد من اشتراكاتك</target> | 7914 | <target>فيديو جديد من اشتراكاتك</target> |
@@ -7929,8 +8003,8 @@ The link will expire within 1 hour.</source> | |||
7929 | <trans-unit id="4967231969832964676" datatype="html"> | 8003 | <trans-unit id="4967231969832964676" datatype="html"> |
7930 | <source>Profile updated.</source> | 8004 | <source>Profile updated.</source> |
7931 | <target>حُدث ملفك الشخصي.</target> | 8005 | <target>حُدث ملفك الشخصي.</target> |
7932 | 8006 | <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> | |
7933 | <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> | 8007 | </trans-unit> |
7934 | <trans-unit id="6721822899525405039" datatype="html"> | 8008 | <trans-unit id="6721822899525405039" datatype="html"> |
7935 | <source>People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source> | 8009 | <source>People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source> |
7936 | <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> | 8010 | <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> |
@@ -7942,8 +8016,8 @@ The link will expire within 1 hour.</source> | |||
7942 | <trans-unit id="5032453707232754344" datatype="html"> | 8016 | <trans-unit id="5032453707232754344" datatype="html"> |
7943 | <source>Playlist <x id="PH"/> created.</source> | 8017 | <source>Playlist <x id="PH"/> created.</source> |
7944 | <target>أُنشئت القائمة <x id="PH"/>}.</target> | 8018 | <target>أُنشئت القائمة <x id="PH"/>}.</target> |
7945 | 8019 | <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> | |
7946 | <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> | 8020 | </trans-unit> |
7947 | <trans-unit id="5674286808255988565" datatype="html"> | 8021 | <trans-unit id="5674286808255988565" datatype="html"> |
7948 | <source>Create</source> | 8022 | <source>Create</source> |
7949 | <target state="translated">أنشئ</target> | 8023 | <target state="translated">أنشئ</target> |
@@ -7964,7 +8038,7 @@ The link will expire within 1 hour.</source> | |||
7964 | </trans-unit> | 8038 | </trans-unit> |
7965 | <trans-unit id="6658000829978978023" datatype="html"> | 8039 | <trans-unit id="6658000829978978023" datatype="html"> |
7966 | <source>Applications</source> | 8040 | <source>Applications</source> |
7967 | <target state="new">Applications</target> | 8041 | <target state="translated">التطبيقات</target> |
7968 | <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> | 8042 | <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> |
7969 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">127</context></context-group> | 8043 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">127</context></context-group> |
7970 | </trans-unit> | 8044 | </trans-unit> |
@@ -7976,15 +8050,15 @@ The link will expire within 1 hour.</source> | |||
7976 | <trans-unit id="1431617394009162547" datatype="html"> | 8050 | <trans-unit id="1431617394009162547" datatype="html"> |
7977 | <source>Playlist <x id="PH"/> updated.</source> | 8051 | <source>Playlist <x id="PH"/> updated.</source> |
7978 | <target>حُدثت قائمة <x id="PH"/>}.</target> | 8052 | <target>حُدثت قائمة <x id="PH"/>}.</target> |
7979 | 8053 | <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> | |
7980 | <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> | 8054 | </trans-unit> |
7981 | <trans-unit id="2027805873922338635" datatype="html"> | 8055 | <trans-unit id="2027805873922338635" datatype="html"> |
7982 | <source>Do you really want to delete <x id="PH"/>?</source> | 8056 | <source>Do you really want to delete <x id="PH"/>?</source> |
7983 | <target>هل تريد حذف <x id="PH"/>؟</target> | 8057 | <target>هل تريد حذف <x id="PH"/>؟</target> |
7984 | 8058 | <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> | |
7985 | 8059 | <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> | |
7986 | 8060 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">143</context></context-group> | |
7987 | <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">143</context></context-group></trans-unit> | 8061 | </trans-unit> |
7988 | <trans-unit id="4844578664427956129" datatype="html"> | 8062 | <trans-unit id="4844578664427956129" datatype="html"> |
7989 | <source>Change ownership</source> | 8063 | <source>Change ownership</source> |
7990 | <target state="new">Change ownership</target> | 8064 | <target state="new">Change ownership</target> |
@@ -7998,11 +8072,11 @@ The link will expire within 1 hour.</source> | |||
7998 | <trans-unit id="3058024914967508975" datatype="html"> | 8072 | <trans-unit id="3058024914967508975" datatype="html"> |
7999 | <source>My videos</source> | 8073 | <source>My videos</source> |
8000 | <target>فيديوهاتي</target> | 8074 | <target>فيديوهاتي</target> |
8001 | 8075 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">76</context></context-group> | |
8002 | 8076 | <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> | |
8003 | 8077 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">71</context></context-group> | |
8004 | 8078 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">77</context></context-group> | |
8005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">76</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">71</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> | 8079 | </trans-unit> |
8006 | <trans-unit id="5752861278140673787" datatype="html"> | 8080 | <trans-unit id="5752861278140673787" datatype="html"> |
8007 | <source>Ownership changes</source> | 8081 | <source>Ownership changes</source> |
8008 | <target state="new">Ownership changes</target> | 8082 | <target state="new">Ownership changes</target> |
@@ -8011,13 +8085,13 @@ The link will expire within 1 hour.</source> | |||
8011 | <trans-unit id="8197117721861453263" datatype="html"> | 8085 | <trans-unit id="8197117721861453263" datatype="html"> |
8012 | <source>Do you really want to delete <x id="PH"/> videos?</source> | 8086 | <source>Do you really want to delete <x id="PH"/> videos?</source> |
8013 | <target>هل تريد حذف فيديوهات <x id="PH"/>؟</target> | 8087 | <target>هل تريد حذف فيديوهات <x id="PH"/>؟</target> |
8014 | 8088 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">116</context></context-group> | |
8015 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">116</context></context-group></trans-unit> | 8089 | </trans-unit> |
8016 | <trans-unit id="2728855911908920537" datatype="html"> | 8090 | <trans-unit id="2728855911908920537" datatype="html"> |
8017 | <source><x id="PH"/> videos deleted. </source> | 8091 | <source><x id="PH"/> videos deleted. </source> |
8018 | <target>حُذفت فيديوهات <x id="PH"/>. </target> | 8092 | <target>حُذفت فيديوهات <x id="PH"/>. </target> |
8019 | 8093 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">133</context></context-group> | |
8020 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit> | 8094 | </trans-unit> |
8021 | <trans-unit id="2027805873922338635" datatype="html"> | 8095 | <trans-unit id="2027805873922338635" datatype="html"> |
8022 | <source>Do you really want to delete <x id="PH"/>? </source> | 8096 | <source>Do you really want to delete <x id="PH"/>? </source> |
8023 | <target>هل تريد حذف <x id="PH"/>؟ </target> | 8097 | <target>هل تريد حذف <x id="PH"/>؟ </target> |
@@ -8029,15 +8103,17 @@ The link will expire within 1 hour.</source> | |||
8029 | <trans-unit id="2767660806989176400" datatype="html"> | 8103 | <trans-unit id="2767660806989176400" datatype="html"> |
8030 | <source>Video <x id="PH"/> deleted.</source> | 8104 | <source>Video <x id="PH"/> deleted.</source> |
8031 | <target>حُذف فيديو <x id="PH"/>.</target> | 8105 | <target>حُذف فيديو <x id="PH"/>.</target> |
8032 | 8106 | <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> | |
8033 | 8107 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">214</context></context-group> | |
8034 | <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/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">214</context></context-group></trans-unit> | 8108 | </trans-unit> |
8035 | <trans-unit id="6810714890760227072" datatype="html"> | 8109 | <trans-unit id="6810714890760227072" datatype="html"> |
8036 | <source>Ownership change request sent.</source> | 8110 | <source>Ownership change request sent.</source> |
8037 | <target>تم إرسال طلب تغيير الملكية.</target> | 8111 | <target>تم إرسال طلب تغيير الملكية.</target> |
8038 | 8112 | <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> | |
8039 | <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"> | 8113 | </trans-unit> |
8040 | <source>Sort by</source><target state="new">Sort by</target> | 8114 | <trans-unit id="7699622144571229146" datatype="html"> |
8115 | <source>Sort by</source> | ||
8116 | <target state="new">Sort by</target> | ||
8041 | <context-group purpose="location"> | 8117 | <context-group purpose="location"> |
8042 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context> | 8118 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context> |
8043 | <context context-type="linenumber">26</context> | 8119 | <context context-type="linenumber">26</context> |
@@ -8107,41 +8183,41 @@ The link will expire within 1 hour.</source> | |||
8107 | <trans-unit id="6048892649018070225" datatype="html"> | 8183 | <trans-unit id="6048892649018070225" datatype="html"> |
8108 | <source>Today</source> | 8184 | <source>Today</source> |
8109 | <target>اليوم</target> | 8185 | <target>اليوم</target> |
8110 | 8186 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">41</context></context-group> | |
8111 | 8187 | <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> | |
8112 | 8188 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">123</context></context-group> | |
8113 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">41</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">123</context></context-group></trans-unit> | 8189 | </trans-unit> |
8114 | <trans-unit id="4498682414491138092" datatype="html"> | 8190 | <trans-unit id="4498682414491138092" datatype="html"> |
8115 | <source>Yesterday</source> | 8191 | <source>Yesterday</source> |
8116 | <target state="translated">البارحة</target> | 8192 | <target state="translated">البارحة</target> |
8117 | 8193 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">124</context></context-group> | |
8118 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 8194 | </trans-unit> |
8119 | <trans-unit id="5073473933031004097" datatype="html"> | 8195 | <trans-unit id="5073473933031004097" datatype="html"> |
8120 | <source>This week</source> | 8196 | <source>This week</source> |
8121 | <target state="new">This week</target> | 8197 | <target state="new">This week</target> |
8122 | 8198 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">125</context></context-group> | |
8123 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> | 8199 | </trans-unit> |
8124 | <trans-unit id="842657237693374355" datatype="html"> | 8200 | <trans-unit id="842657237693374355" datatype="html"> |
8125 | <source>This month</source> | 8201 | <source>This month</source> |
8126 | <target state="new">This month</target> | 8202 | <target state="new">This month</target> |
8127 | 8203 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">126</context></context-group> | |
8128 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 8204 | </trans-unit> |
8129 | <trans-unit id="4463380307954693363" datatype="html"> | 8205 | <trans-unit id="4463380307954693363" datatype="html"> |
8130 | <source>Last month</source> | 8206 | <source>Last month</source> |
8131 | <target state="translated">الشهر الماضي</target> | 8207 | <target state="translated">الشهر الماضي</target> |
8132 | 8208 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">127</context></context-group> | |
8133 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | 8209 | </trans-unit> |
8134 | <trans-unit id="7473676707373218484" datatype="html"> | 8210 | <trans-unit id="7473676707373218484" datatype="html"> |
8135 | <source>Older</source> | 8211 | <source>Older</source> |
8136 | <target state="translated">أقدم</target> | 8212 | <target state="translated">أقدم</target> |
8137 | 8213 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">128</context></context-group> | |
8138 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> | 8214 | </trans-unit> |
8139 | <trans-unit id="5036991421517255667" datatype="html"> | 8215 | <trans-unit id="5036991421517255667" datatype="html"> |
8140 | <source>Cannot load more videos. Try again later.</source> | 8216 | <source>Cannot load more videos. Try again later.</source> |
8141 | <target state="translated">لا يمكن تحميل مزيد من الفيديوهات. أعد المحاولة لاحقا.</target> | 8217 | <target state="translated">لا يمكن تحميل مزيد من الفيديوهات. أعد المحاولة لاحقا.</target> |
8142 | 8218 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">225</context></context-group> | |
8143 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">225</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">127</context></context-group></trans-unit> | 8219 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">127</context></context-group> |
8144 | 8220 | </trans-unit> | |
8145 | <trans-unit id="4873149362496451858" datatype="html"> | 8221 | <trans-unit id="4873149362496451858" datatype="html"> |
8146 | <source>Last 7 days</source> | 8222 | <source>Last 7 days</source> |
8147 | <target>الأسبوع الماضي</target> | 8223 | <target>الأسبوع الماضي</target> |
@@ -8201,22 +8277,23 @@ The link will expire within 1 hour.</source> | |||
8201 | <trans-unit id="2123659921722214537" datatype="html"> | 8277 | <trans-unit id="2123659921722214537" datatype="html"> |
8202 | <source>Views</source> | 8278 | <source>Views</source> |
8203 | <target>عدد المشاهدات</target> | 8279 | <target>عدد المشاهدات</target> |
8204 | 8280 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">94</context></context-group> | |
8205 | 8281 | </trans-unit> | |
8206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit> | ||
8207 | <trans-unit id="3208627574396957172" datatype="html"> | 8282 | <trans-unit id="3208627574396957172" datatype="html"> |
8208 | <source>Search index is unavailable. Retrying with instance results instead.</source> | 8283 | <source>Search index is unavailable. Retrying with instance results instead.</source> |
8209 | <target>فهرس البحث غير متاح. بدلا من ذلك يعيد المحاولة باستخدام نتائج المثيل.</target> | 8284 | <target>فهرس البحث غير متاح. بدلا من ذلك يعيد المحاولة باستخدام نتائج المثيل.</target> |
8210 | 8285 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">163</context></context-group> | |
8211 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 8286 | </trans-unit> |
8212 | <trans-unit id="307702206382241469" datatype="html"> | 8287 | <trans-unit id="307702206382241469" datatype="html"> |
8213 | <source>Search error</source> | 8288 | <source>Search error</source> |
8214 | <target>خطأ في البحث</target> | 8289 | <target>خطأ في البحث</target> |
8215 | 8290 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">164</context></context-group> | |
8216 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">164</context></context-group></trans-unit><trans-unit id="8491751845906232809" datatype="html"> | 8291 | </trans-unit> |
8217 | <source>PeerTube instance host filter is invalid</source><target state="new">PeerTube instance host filter is invalid</target> | 8292 | <trans-unit id="8491751845906232809" datatype="html"> |
8218 | 8293 | <source>PeerTube instance host filter is invalid</source> | |
8219 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">332</context></context-group></trans-unit> | 8294 | <target state="new">PeerTube instance host filter is invalid</target> |
8295 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">332</context></context-group> | ||
8296 | </trans-unit> | ||
8220 | <trans-unit id="4580988005648117665" datatype="html"> | 8297 | <trans-unit id="4580988005648117665" datatype="html"> |
8221 | <source>Search</source> | 8298 | <source>Search</source> |
8222 | <target state="translated">ابحث</target> | 8299 | <target state="translated">ابحث</target> |
@@ -8236,25 +8313,24 @@ The link will expire within 1 hour.</source> | |||
8236 | <trans-unit id="6537885755702623401" datatype="html"> | 8313 | <trans-unit id="6537885755702623401" datatype="html"> |
8237 | <source>Now please check your emails to verify your account and complete signup.</source> | 8314 | <source>Now please check your emails to verify your account and complete signup.</source> |
8238 | <target>يرجى مراجعة رسائل بريدك الإلكتروني للتحقق من حسابك وإكمال التسجيل.</target> | 8315 | <target>يرجى مراجعة رسائل بريدك الإلكتروني للتحقق من حسابك وإكمال التسجيل.</target> |
8239 | 8316 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">129</context></context-group> | |
8240 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit> | 8317 | </trans-unit> |
8241 | <trans-unit id="2847376451647729886" datatype="html"> | 8318 | <trans-unit id="2847376451647729886" datatype="html"> |
8242 | <source>You are now logged in as <x id="PH"/>!</source> | 8319 | <source>You are now logged in as <x id="PH"/>!</source> |
8243 | <target>أنت مسجل ك <x id="PH"/>!</target> | 8320 | <target>أنت مسجل ك <x id="PH"/>!</target> |
8244 | 8321 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">137</context></context-group> | |
8245 | <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> | 8322 | </trans-unit> |
8246 | <trans-unit id="2687679787442328897" datatype="html"> | 8323 | <trans-unit id="2687679787442328897" datatype="html"> |
8247 | <source>An email with verification link will be sent to <x id="PH"/>.</source> | 8324 | <source>An email with verification link will be sent to <x id="PH"/>.</source> |
8248 | <target>سيرسل بريد يحتوي رابط التفعيل الى <x id="PH"/>.</target> | 8325 | <target>سيرسل بريد يحتوي رابط التفعيل الى <x id="PH"/>.</target> |
8249 | <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">39</context></context-group> | 8326 | <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">39</context></context-group> |
8250 | </trans-unit> | 8327 | </trans-unit> |
8251 | |||
8252 | <trans-unit id="1783173774503340906" datatype="html"> | 8328 | <trans-unit id="1783173774503340906" datatype="html"> |
8253 | <source>Subscribe to the account</source> | 8329 | <source>Subscribe to the account</source> |
8254 | <target>الاشتراك في الحساب</target> | 8330 | <target>الاشتراك في الحساب</target> |
8255 | 8331 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">71</context></context-group> | |
8256 | 8332 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">713</context></context-group> | |
8257 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">71</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">713</context></context-group></trans-unit> | 8333 | </trans-unit> |
8258 | <trans-unit id="3131904093925601441" datatype="html"> | 8334 | <trans-unit id="3131904093925601441" datatype="html"> |
8259 | <source>PLAYLISTS</source> | 8335 | <source>PLAYLISTS</source> |
8260 | <target state="new">PLAYLISTS</target> | 8336 | <target state="new">PLAYLISTS</target> |
@@ -8528,50 +8604,50 @@ The link will expire within 1 hour.</source> | |||
8528 | <trans-unit id="40119547597591062" datatype="html"> | 8604 | <trans-unit id="40119547597591062" datatype="html"> |
8529 | <source>All languages</source> | 8605 | <source>All languages</source> |
8530 | <target state="translated">كل اللغات</target> | 8606 | <target state="translated">كل اللغات</target> |
8531 | 8607 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">180</context></context-group> | |
8532 | 8608 | <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> | |
8533 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">180</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> | 8609 | </trans-unit> |
8534 | <trans-unit id="5210096066382592800" datatype="html"> | 8610 | <trans-unit id="5210096066382592800" datatype="html"> |
8535 | <source>Video to import updated.</source> | 8611 | <source>Video to import updated.</source> |
8536 | <target>تم تحديث الفيديو المراد استيراده.</target> | 8612 | <target>تم تحديث الفيديو المراد استيراده.</target> |
8537 | 8613 | <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">142</context></context-group> | |
8538 | 8614 | <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">143</context></context-group> | |
8539 | <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">142</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">143</context></context-group></trans-unit> | 8615 | </trans-unit> |
8540 | <trans-unit id="3284171506518522275" datatype="html"> | 8616 | <trans-unit id="3284171506518522275" datatype="html"> |
8541 | <source>Your video was uploaded to your account and is private.</source> | 8617 | <source>Your video was uploaded to your account and is private.</source> |
8542 | <target>تم رفع الفيديو الخاص بك إلى حسابك وهو خاص.</target> | 8618 | <target>تم رفع الفيديو الخاص بك إلى حسابك وهو خاص.</target> |
8543 | 8619 | ||
8544 | <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">118</context></context-group></trans-unit> | 8620 | <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">125</context></context-group></trans-unit> |
8545 | <trans-unit id="5699822024600815733" datatype="html"> | 8621 | <trans-unit id="5699822024600815733" datatype="html"> |
8546 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 8622 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
8547 | <target>ولكن ستفقد البيانات المرتبطة (العلامات ،الوصف...) ، هل تريد بالتأكيد مغادرة هذه الصفحة؟</target> | 8623 | <target>ولكن ستفقد البيانات المرتبطة (العلامات ،الوصف...) ، هل تريد بالتأكيد مغادرة هذه الصفحة؟</target> |
8548 | 8624 | ||
8549 | <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">119</context></context-group></trans-unit> | 8625 | <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> |
8550 | <trans-unit id="1219739004043110649" datatype="html"> | 8626 | <trans-unit id="1219739004043110649" datatype="html"> |
8551 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 8627 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
8552 | <target>لم يرفع الفيديو الخاص بك حتى الآن ، هل تريد بالتأكيد مغادرة هذه الصفحة؟</target> | 8628 | <target>لم يرفع الفيديو الخاص بك حتى الآن ، هل تريد بالتأكيد مغادرة هذه الصفحة؟</target> |
8553 | 8629 | ||
8554 | <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">121</context></context-group></trans-unit> | 8630 | <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">128</context></context-group></trans-unit> |
8555 | <trans-unit id="6932865105766151309" datatype="html"> | 8631 | <trans-unit id="6932865105766151309" datatype="html"> |
8556 | <source>Upload</source> | 8632 | <source>Upload</source> |
8557 | <target state="translated">رفع</target> | 8633 | <target state="translated">رفع</target> |
8558 | 8634 | ||
8559 | <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">227</context></context-group></trans-unit> | 8635 | <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">234</context></context-group></trans-unit> |
8560 | <trans-unit id="8278735427925094503" datatype="html"> | 8636 | <trans-unit id="8278735427925094503" datatype="html"> |
8561 | <source>Upload <x id="PH"/> </source> | 8637 | <source>Upload <x id="PH"/> </source> |
8562 | <target>ارفع <x id="PH"/> </target> | 8638 | <target>ارفع <x id="PH"/> </target> |
8563 | 8639 | ||
8564 | <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">229</context></context-group></trans-unit> | 8640 | <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">236</context></context-group></trans-unit> |
8565 | <trans-unit id="5981816353437801748" datatype="html"> | 8641 | <trans-unit id="5981816353437801748" datatype="html"> |
8566 | <source>Video published.</source> | 8642 | <source>Video published.</source> |
8567 | <target>نُشر الفيديو.</target> | 8643 | <target>نُشر الفيديو.</target> |
8568 | 8644 | ||
8569 | <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">251</context></context-group></trans-unit> | 8645 | <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">258</context></context-group></trans-unit> |
8570 | <trans-unit id="764164089183618119" datatype="html"> | 8646 | <trans-unit id="764164089183618119" datatype="html"> |
8571 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 8647 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
8572 | <target>لم تحفظ التغييرات! إذا غادرت ، ستفقد التغييرات.</target> | 8648 | <target>لم تحفظ التغييرات! إذا غادرت ، ستفقد التغييرات.</target> |
8573 | 8649 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">94</context></context-group> | |
8574 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit> | 8650 | </trans-unit> |
8575 | <trans-unit id="8306050839443016954" datatype="html"> | 8651 | <trans-unit id="8306050839443016954" datatype="html"> |
8576 | <source>Video updated.</source> | 8652 | <source>Video updated.</source> |
8577 | <target>حُدث الفيديو.</target> | 8653 | <target>حُدث الفيديو.</target> |
@@ -8585,8 +8661,8 @@ The link will expire within 1 hour.</source> | |||
8585 | <trans-unit id="1729036051846673606" datatype="html"> | 8661 | <trans-unit id="1729036051846673606" datatype="html"> |
8586 | <source>When active, the next video is automatically played after the current one.</source> | 8662 | <source>When active, the next video is automatically played after the current one.</source> |
8587 | <target>عندما ينشط ، يشغل الفيديو التالي تلقائيًا بعد الفيديو الحالي.</target> | 8663 | <target>عندما ينشط ، يشغل الفيديو التالي تلقائيًا بعد الفيديو الحالي.</target> |
8588 | 8664 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts</context><context context-type="linenumber">61</context></context-group> | |
8589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> | 8665 | </trans-unit> |
8590 | <trans-unit id="2222108104954671970" datatype="html"> | 8666 | <trans-unit id="2222108104954671970" datatype="html"> |
8591 | <source><x id="PH"/> sec </source> | 8667 | <source><x id="PH"/> sec </source> |
8592 | <target><x id="PH"/> ثا </target> | 8668 | <target><x id="PH"/> ثا </target> |
@@ -8605,23 +8681,23 @@ The link will expire within 1 hour.</source> | |||
8605 | <trans-unit id="6775540171466219199" datatype="html"> | 8681 | <trans-unit id="6775540171466219199" datatype="html"> |
8606 | <source>Stop autoplaying next video</source> | 8682 | <source>Stop autoplaying next video</source> |
8607 | <target>أوقف التشغيل التلقائي للفيديو التالي</target> | 8683 | <target>أوقف التشغيل التلقائي للفيديو التالي</target> |
8608 | 8684 | <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">221</context></context-group> | |
8609 | <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">221</context></context-group></trans-unit> | 8685 | </trans-unit> |
8610 | <trans-unit id="5149234672404299151" datatype="html"> | 8686 | <trans-unit id="5149234672404299151" datatype="html"> |
8611 | <source>Autoplay next video</source> | 8687 | <source>Autoplay next video</source> |
8612 | <target>شغل الفيديو التالي تلقائيًا</target> | 8688 | <target>شغل الفيديو التالي تلقائيًا</target> |
8613 | 8689 | <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">222</context></context-group> | |
8614 | <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">222</context></context-group></trans-unit> | 8690 | </trans-unit> |
8615 | <trans-unit id="5870421136141540382" datatype="html"> | 8691 | <trans-unit id="5870421136141540382" datatype="html"> |
8616 | <source>Stop looping playlist videos</source> | 8692 | <source>Stop looping playlist videos</source> |
8617 | <target state="translated">أوقف تكرار تشغيل مقاطع قائمة التشغيل</target> | 8693 | <target state="translated">أوقف تكرار تشغيل مقاطع قائمة التشغيل</target> |
8618 | 8694 | <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">227</context></context-group> | |
8619 | <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">227</context></context-group></trans-unit> | 8695 | </trans-unit> |
8620 | <trans-unit id="1599585307037758139" datatype="html"> | 8696 | <trans-unit id="1599585307037758139" datatype="html"> |
8621 | <source>Loop playlist videos</source> | 8697 | <source>Loop playlist videos</source> |
8622 | <target state="translated">تكرار تشغيل مقاطع قائمة التشغيل</target> | 8698 | <target state="translated">تكرار تشغيل مقاطع قائمة التشغيل</target> |
8623 | 8699 | <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">228</context></context-group> | |
8624 | <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">228</context></context-group></trans-unit> | 8700 | </trans-unit> |
8625 | <trans-unit id="3704292036525161260" datatype="html"> | 8701 | <trans-unit id="3704292036525161260" datatype="html"> |
8626 | <source>Placeholder image</source> | 8702 | <source>Placeholder image</source> |
8627 | <target state="new">Placeholder image</target> | 8703 | <target state="new">Placeholder image</target> |
@@ -8633,54 +8709,54 @@ The link will expire within 1 hour.</source> | |||
8633 | <trans-unit id="677619204556459328" datatype="html"> | 8709 | <trans-unit id="677619204556459328" datatype="html"> |
8634 | <source>Like this video</source> | 8710 | <source>Like this video</source> |
8635 | <target>الإعجاب بهذه الفيديو</target> | 8711 | <target>الإعجاب بهذه الفيديو</target> |
8636 | 8712 | <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> | |
8637 | <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> | 8713 | </trans-unit> |
8638 | <trans-unit id="1979134407801821102" datatype="html"> | 8714 | <trans-unit id="1979134407801821102" datatype="html"> |
8639 | <source>Dislike this video</source> | 8715 | <source>Dislike this video</source> |
8640 | <target>ألغ الإعجاب بهذه الفيديو</target> | 8716 | <target>ألغ الإعجاب بهذه الفيديو</target> |
8641 | 8717 | <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> | |
8642 | <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> | 8718 | </trans-unit> |
8643 | <trans-unit id="4001371302469308813" datatype="html"> | 8719 | <trans-unit id="4001371302469308813" datatype="html"> |
8644 | <source>Support options for this video</source> | 8720 | <source>Support options for this video</source> |
8645 | <target>خيارات الدعم لهذا الفيديو</target> | 8721 | <target>خيارات الدعم لهذا الفيديو</target> |
8646 | 8722 | <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">56</context></context-group> | |
8647 | <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">56</context></context-group></trans-unit> | 8723 | </trans-unit> |
8648 | <trans-unit id="1950057220179636309" datatype="html"> | 8724 | <trans-unit id="1950057220179636309" datatype="html"> |
8649 | <source>Save to playlist</source> | 8725 | <source>Save to playlist</source> |
8650 | <target>احفظ في قائمة التشغيل</target> | 8726 | <target>احفظ في قائمة التشغيل</target> |
8651 | 8727 | <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> | |
8652 | 8728 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">264</context></context-group> | |
8653 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">264</context></context-group></trans-unit> | 8729 | </trans-unit> |
8654 | <trans-unit id="8272123190776748811" datatype="html"> | 8730 | <trans-unit id="8272123190776748811" datatype="html"> |
8655 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> | 8731 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> |
8656 | <target state="new">You need to be <a href="/login">logged in</a> to rate this video.</target> | 8732 | <target state="new">You need to be <a href="/login">logged in</a> to rate this video.</target> |
8657 | 8733 | <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> | |
8658 | <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> | 8734 | </trans-unit> |
8659 | <trans-unit id="961774488937452220" datatype="html"> | 8735 | <trans-unit id="961774488937452220" datatype="html"> |
8660 | <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> | 8736 | <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> |
8661 | <target state="translated">هذا الفيديو ليس متوفرا على هذا المثيل. هل تريد التوجه المثيل الأصلي: <a href="<x id="PH"/>"><x id="PH_1"/></a> ؟</target> | 8737 | <target state="translated">هذا الفيديو ليس متوفرا على هذا المثيل. هل تريد التوجه المثيل الأصلي: <a href="<x id="PH"/>"><x id="PH_1"/></a> ؟</target> |
8662 | 8738 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">296</context></context-group> | |
8663 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">296</context></context-group></trans-unit> | 8739 | </trans-unit> |
8664 | <trans-unit id="5761611056224181752" datatype="html"> | 8740 | <trans-unit id="5761611056224181752" datatype="html"> |
8665 | <source>Redirection</source> | 8741 | <source>Redirection</source> |
8666 | <target state="translated">اعادة توجيه</target> | 8742 | <target state="translated">اعادة توجيه</target> |
8667 | 8743 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">297</context></context-group> | |
8668 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">297</context></context-group></trans-unit> | 8744 | </trans-unit> |
8669 | <trans-unit id="8858527736400081688" datatype="html"> | 8745 | <trans-unit id="8858527736400081688" datatype="html"> |
8670 | <source>This video contains mature or explicit content. Are you sure you want to watch it?</source> | 8746 | <source>This video contains mature or explicit content. Are you sure you want to watch it?</source> |
8671 | <target>يحتوي هذا الفيديو على محتوى للبالغين أو محتوى صريح. أمتأكد من مشاهدته؟</target> | 8747 | <target>يحتوي هذا الفيديو على محتوى للبالغين أو محتوى صريح. أمتأكد من مشاهدته؟</target> |
8672 | 8748 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">343</context></context-group> | |
8673 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">343</context></context-group></trans-unit> | 8749 | </trans-unit> |
8674 | <trans-unit id="3937119019020041049" datatype="html"> | 8750 | <trans-unit id="3937119019020041049" datatype="html"> |
8675 | <source>Mature or explicit content</source> | 8751 | <source>Mature or explicit content</source> |
8676 | <target>محتوى للبالغين أو محتوى صريح</target> | 8752 | <target>محتوى للبالغين أو محتوى صريح</target> |
8677 | 8753 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">344</context></context-group> | |
8678 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 8754 | </trans-unit> |
8679 | <trans-unit id="1755474755114288376" datatype="html"> | 8755 | <trans-unit id="1755474755114288376" datatype="html"> |
8680 | <source>Up Next</source> | 8756 | <source>Up Next</source> |
8681 | <target>التالي</target> | 8757 | <target>التالي</target> |
8682 | 8758 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">415</context></context-group> | |
8683 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">415</context></context-group></trans-unit> | 8759 | </trans-unit> |
8684 | <trans-unit id="2159130950882492111" datatype="html"> | 8760 | <trans-unit id="2159130950882492111" datatype="html"> |
8685 | <source>Cancel</source> | 8761 | <source>Cancel</source> |
8686 | <target state="translated">ألغ</target> | 8762 | <target state="translated">ألغ</target> |
@@ -8689,86 +8765,84 @@ The link will expire within 1 hour.</source> | |||
8689 | <trans-unit id="3354816756665089864" datatype="html"> | 8765 | <trans-unit id="3354816756665089864" datatype="html"> |
8690 | <source>Autoplay is suspended</source> | 8766 | <source>Autoplay is suspended</source> |
8691 | <target>أُوقف التشغيل التلقائي</target> | 8767 | <target>أُوقف التشغيل التلقائي</target> |
8692 | 8768 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">417</context></context-group> | |
8693 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">417</context></context-group></trans-unit> | 8769 | </trans-unit> |
8694 | <trans-unit id="7895294730547405228" datatype="html"> | 8770 | <trans-unit id="7895294730547405228" datatype="html"> |
8695 | <source>Enter/exit fullscreen (requires player focus)</source> | 8771 | <source>Enter/exit fullscreen (requires player focus)</source> |
8696 | <target>ادخل / اخرج من وضع ملء الشاشة (يتطلب تركيز المشغل)</target> | 8772 | <target>ادخل / اخرج من وضع ملء الشاشة (يتطلب تركيز المشغل)</target> |
8697 | 8773 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">688</context></context-group> | |
8698 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">688</context></context-group></trans-unit> | 8774 | </trans-unit> |
8699 | <trans-unit id="7618388257165864759" datatype="html"> | 8775 | <trans-unit id="7618388257165864759" datatype="html"> |
8700 | <source>Play/Pause the video (requires player focus)</source> | 8776 | <source>Play/Pause the video (requires player focus)</source> |
8701 | <target>شغل / أوقف مؤقتًا الفيديو (يتطلب تركيز المشغل)</target> | 8777 | <target>شغل / أوقف مؤقتًا الفيديو (يتطلب تركيز المشغل)</target> |
8702 | 8778 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">689</context></context-group> | |
8703 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">689</context></context-group></trans-unit> | 8779 | </trans-unit> |
8704 | <trans-unit id="7761890399634216630" datatype="html"> | 8780 | <trans-unit id="7761890399634216630" datatype="html"> |
8705 | <source>Mute/unmute the video (requires player focus)</source> | 8781 | <source>Mute/unmute the video (requires player focus)</source> |
8706 | <target>أكتم / ألغ كتم الفيديو (يتطلب تركيز المشغل)</target> | 8782 | <target>أكتم / ألغ كتم الفيديو (يتطلب تركيز المشغل)</target> |
8707 | 8783 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">690</context></context-group> | |
8708 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">690</context></context-group></trans-unit> | 8784 | </trans-unit> |
8709 | <trans-unit id="5996585232248234904" datatype="html"> | 8785 | <trans-unit id="5996585232248234904" datatype="html"> |
8710 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</source> | 8786 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</source> |
8711 | <target>التخطي إلى نسبة مئوية من الفيديو: 0 هو 0٪ و 9 هو 90٪ (يتطلب تركيز المشغل)</target> | 8787 | <target>التخطي إلى نسبة مئوية من الفيديو: 0 هو 0٪ و 9 هو 90٪ (يتطلب تركيز المشغل)</target> |
8712 | 8788 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">692</context></context-group> | |
8713 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">692</context></context-group></trans-unit> | 8789 | </trans-unit> |
8714 | <trans-unit id="3748765405903319998" datatype="html"> | 8790 | <trans-unit id="3748765405903319998" datatype="html"> |
8715 | <source>Increase the volume (requires player focus)</source> | 8791 | <source>Increase the volume (requires player focus)</source> |
8716 | <target>زد مستوى الصوت (يتطلب تركيز اللاعب)</target> | 8792 | <target>زد مستوى الصوت (يتطلب تركيز اللاعب)</target> |
8717 | 8793 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">694</context></context-group> | |
8718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">694</context></context-group></trans-unit> | 8794 | </trans-unit> |
8719 | <trans-unit id="5810704036407159982" datatype="html"> | 8795 | <trans-unit id="5810704036407159982" datatype="html"> |
8720 | <source>Decrease the volume (requires player focus)</source> | 8796 | <source>Decrease the volume (requires player focus)</source> |
8721 | <target>خفّض مستوى الصوت (يتطلب تركيز المشغل)</target> | 8797 | <target>خفّض مستوى الصوت (يتطلب تركيز المشغل)</target> |
8722 | 8798 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">695</context></context-group> | |
8723 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">695</context></context-group></trans-unit> | 8799 | </trans-unit> |
8724 | <trans-unit id="2622048822548065691" datatype="html"> | 8800 | <trans-unit id="2622048822548065691" datatype="html"> |
8725 | <source>Seek the video forward (requires player focus)</source> | 8801 | <source>Seek the video forward (requires player focus)</source> |
8726 | <target state="translated">البحث عن الفيديو (يتطلب تركيز المشغل)</target> | 8802 | <target state="translated">البحث عن الفيديو (يتطلب تركيز المشغل)</target> |
8727 | 8803 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">697</context></context-group> | |
8728 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">697</context></context-group></trans-unit> | 8804 | </trans-unit> |
8729 | <trans-unit id="6540078205109221153" datatype="html"> | 8805 | <trans-unit id="6540078205109221153" datatype="html"> |
8730 | <source>Seek the video backward (requires player focus)</source> | 8806 | <source>Seek the video backward (requires player focus)</source> |
8731 | <target state="translated">طلب الفيديو للخلف (يتطلب تركيز المشغل)</target> | 8807 | <target state="translated">طلب الفيديو للخلف (يتطلب تركيز المشغل)</target> |
8732 | 8808 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">698</context></context-group> | |
8733 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">698</context></context-group></trans-unit> | 8809 | </trans-unit> |
8734 | <trans-unit id="1956491957766210808" datatype="html"> | 8810 | <trans-unit id="1956491957766210808" datatype="html"> |
8735 | <source>Increase playback rate (requires player focus)</source> | 8811 | <source>Increase playback rate (requires player focus)</source> |
8736 | <target>زيادة معدل التشغيل (يتطلب تركيز المشغل)</target> | 8812 | <target>زيادة معدل التشغيل (يتطلب تركيز المشغل)</target> |
8737 | 8813 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">700</context></context-group> | |
8738 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">700</context></context-group></trans-unit> | 8814 | </trans-unit> |
8739 | <trans-unit id="5495529997674803186" datatype="html"> | 8815 | <trans-unit id="5495529997674803186" datatype="html"> |
8740 | <source>Decrease playback rate (requires player focus)</source> | 8816 | <source>Decrease playback rate (requires player focus)</source> |
8741 | <target>تقليل معدل التشغيل (يتطلب تركيز المشغل)</target> | 8817 | <target>تقليل معدل التشغيل (يتطلب تركيز المشغل)</target> |
8742 | 8818 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">701</context></context-group> | |
8743 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">701</context></context-group></trans-unit> | 8819 | </trans-unit> |
8744 | <trans-unit id="3178343147230721210" datatype="html"> | 8820 | <trans-unit id="3178343147230721210" datatype="html"> |
8745 | <source>Navigate in the video frame by frame (requires player focus)</source> | 8821 | <source>Navigate in the video frame by frame (requires player focus)</source> |
8746 | <target>تصفح الفيديو إطار فإطار (يتطلب تركيز المشغل)</target> | 8822 | <target>تصفح الفيديو إطار فإطار (يتطلب تركيز المشغل)</target> |
8747 | 8823 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">703</context></context-group> | |
8748 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">703</context></context-group></trans-unit> | 8824 | </trans-unit> |
8749 | <trans-unit id="8025996572234182184" datatype="html"> | 8825 | <trans-unit id="8025996572234182184" datatype="html"> |
8750 | <source>Like the video</source> | 8826 | <source>Like the video</source> |
8751 | <target>أعجبني الفيديو</target> | 8827 | <target>أعجبني الفيديو</target> |
8752 | 8828 | <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> | |
8753 | <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> | 8829 | </trans-unit> |
8754 | <trans-unit id="7692127636377222448" datatype="html"> | 8830 | <trans-unit id="7692127636377222448" datatype="html"> |
8755 | <source>Dislike the video</source> | 8831 | <source>Dislike the video</source> |
8756 | <target>لم يعجبني الفيديو</target> | 8832 | <target>لم يعجبني الفيديو</target> |
8757 | 8833 | <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> | |
8758 | <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> | 8834 | </trans-unit> |
8759 | <trans-unit id="2431286785954354122" datatype="html"> | 8835 | <trans-unit id="2431286785954354122" datatype="html"> |
8760 | <source>Recently added</source> | 8836 | <source>Recently added</source> |
8761 | <target state="translated">أُضيفت حديثًا</target> | 8837 | <target state="translated">أُضيفت حديثًا</target> |
8762 | 8838 | <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> | |
8763 | 8839 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">137</context></context-group> | |
8764 | <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> | 8840 | </trans-unit> |
8765 | <trans-unit id="12646164819555880" datatype="html"> | 8841 | <trans-unit id="12646164819555880" datatype="html"> |
8766 | <source>Videos from your subscriptions</source> | 8842 | <source>Videos from your subscriptions</source> |
8767 | <target>مقاطع فيديو من اشتراكاتك</target> | 8843 | <target>مقاطع فيديو من اشتراكاتك</target> |
8768 | 8844 | <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> | |
8769 | <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> | 8845 | </trans-unit> |
8770 | |||
8771 | |||
8772 | <trans-unit id="1812379335568847528" datatype="html"> | 8846 | <trans-unit id="1812379335568847528" datatype="html"> |
8773 | <source>Subscriptions</source> | 8847 | <source>Subscriptions</source> |
8774 | <target state="translated">الاشتراكات</target> | 8848 | <target state="translated">الاشتراكات</target> |
@@ -8792,12 +8866,13 @@ The link will expire within 1 hour.</source> | |||
8792 | <trans-unit id="8681933925782924101" datatype="html"> | 8866 | <trans-unit id="8681933925782924101" datatype="html"> |
8793 | <source>Local videos</source> | 8867 | <source>Local videos</source> |
8794 | <target state="translated">الفيديوهات المحلية</target> | 8868 | <target state="translated">الفيديوهات المحلية</target> |
8795 | 8869 | <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> | |
8796 | 8870 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">142</context></context-group> | |
8797 | 8871 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">143</context></context-group> | |
8798 | 8872 | </trans-unit> | |
8799 | <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="3037358578603095196" datatype="html"> | 8873 | <trans-unit id="3037358578603095196" datatype="html"> |
8800 | <source>Only videos uploaded on this instance are displayed</source><target state="new">Only videos uploaded on this instance are displayed</target> | 8874 | <source>Only videos uploaded on this instance are displayed</source> |
8875 | <target state="new">Only videos uploaded on this instance are displayed</target> | ||
8801 | <context-group purpose="location"> | 8876 | <context-group purpose="location"> |
8802 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> | 8877 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> |
8803 | <context context-type="linenumber">190</context> | 8878 | <context context-type="linenumber">190</context> |
@@ -8806,21 +8881,19 @@ The link will expire within 1 hour.</source> | |||
8806 | <trans-unit id="4668975178372693951" datatype="html"> | 8881 | <trans-unit id="4668975178372693951" datatype="html"> |
8807 | <source>Discover videos</source> | 8882 | <source>Discover videos</source> |
8808 | <target state="translated">اكتشف فيديوهات</target> | 8883 | <target state="translated">اكتشف فيديوهات</target> |
8809 | 8884 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">19</context></context-group> | |
8810 | 8885 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">124</context></context-group> | |
8811 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">19</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> | 8886 | </trans-unit> |
8812 | <trans-unit id="8067135025051844577" datatype="html"> | 8887 | <trans-unit id="8067135025051844577" datatype="html"> |
8813 | <source>Trending videos</source> | 8888 | <source>Trending videos</source> |
8814 | <target state="translated">الفيديوهات الشائعة</target> | 8889 | <target state="translated">الفيديوهات الشائعة</target> |
8815 | 8890 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">130</context></context-group> | |
8816 | 8891 | </trans-unit> | |
8817 | <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> | ||
8818 | <trans-unit id="664221386829541948" datatype="html"> | 8892 | <trans-unit id="664221386829541948" datatype="html"> |
8819 | <source>Recently added videos</source> | 8893 | <source>Recently added videos</source> |
8820 | <target state="translated">الفيديوهات المنشورة حديثا</target> | 8894 | <target state="translated">الفيديوهات المنشورة حديثا</target> |
8821 | 8895 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">136</context></context-group> | |
8822 | 8896 | </trans-unit> | |
8823 | <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> | ||
8824 | <trans-unit id="8212906256415538361" datatype="html"> | 8897 | <trans-unit id="8212906256415538361" datatype="html"> |
8825 | <source>Upload a video</source> | 8898 | <source>Upload a video</source> |
8826 | <target state="translated">ارفع فيديو</target> | 8899 | <target state="translated">ارفع فيديو</target> |
@@ -8834,70 +8907,70 @@ The link will expire within 1 hour.</source> | |||
8834 | <trans-unit id="7709367721354853232" datatype="html"> | 8907 | <trans-unit id="7709367721354853232" datatype="html"> |
8835 | <source>Focus the search bar</source> | 8908 | <source>Focus the search bar</source> |
8836 | <target>ركز شريط البحث</target> | 8909 | <target>ركز شريط البحث</target> |
8837 | 8910 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">270</context></context-group> | |
8838 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">270</context></context-group></trans-unit> | 8911 | </trans-unit> |
8839 | <trans-unit id="4049262826107502276" datatype="html"> | 8912 | <trans-unit id="4049262826107502276" datatype="html"> |
8840 | <source>Toggle the left menu</source> | 8913 | <source>Toggle the left menu</source> |
8841 | <target>بدّل القائمة اليسرى</target> | 8914 | <target>بدّل القائمة اليسرى</target> |
8842 | 8915 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">275</context></context-group> | |
8843 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">275</context></context-group></trans-unit> | 8916 | </trans-unit> |
8844 | <trans-unit id="5409372033656550095" datatype="html"> | 8917 | <trans-unit id="5409372033656550095" datatype="html"> |
8845 | <source>Go to the discover videos page</source> | 8918 | <source>Go to the discover videos page</source> |
8846 | <target>إنتقل إلى صفحة اكتشاف الفيديوهات</target> | 8919 | <target>إنتقل إلى صفحة اكتشاف الفيديوهات</target> |
8847 | 8920 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">280</context></context-group> | |
8848 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">280</context></context-group></trans-unit> | 8921 | </trans-unit> |
8849 | <trans-unit id="4278050445961255445" datatype="html"> | 8922 | <trans-unit id="4278050445961255445" datatype="html"> |
8850 | <source>Go to the trending videos page</source> | 8923 | <source>Go to the trending videos page</source> |
8851 | <target>انتقل إلى صفحة الفيديوهات الشائعة</target> | 8924 | <target>انتقل إلى صفحة الفيديوهات الشائعة</target> |
8852 | 8925 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">285</context></context-group> | |
8853 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">285</context></context-group></trans-unit> | 8926 | </trans-unit> |
8854 | <trans-unit id="3242234958443825475" datatype="html"> | 8927 | <trans-unit id="3242234958443825475" datatype="html"> |
8855 | <source>Go to the recently added videos page</source> | 8928 | <source>Go to the recently added videos page</source> |
8856 | <target>انتقل إلى صفحةالفيديوهات المضافة حديثا</target> | 8929 | <target>انتقل إلى صفحةالفيديوهات المضافة حديثا</target> |
8857 | 8930 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">290</context></context-group> | |
8858 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">290</context></context-group></trans-unit> | 8931 | </trans-unit> |
8859 | <trans-unit id="2887122197778293919" datatype="html"> | 8932 | <trans-unit id="2887122197778293919" datatype="html"> |
8860 | <source>Go to the local videos page</source> | 8933 | <source>Go to the local videos page</source> |
8861 | <target>انتقل إلى صفحة الفيديوهات المحلية</target> | 8934 | <target>انتقل إلى صفحة الفيديوهات المحلية</target> |
8862 | 8935 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">295</context></context-group> | |
8863 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">295</context></context-group></trans-unit> | 8936 | </trans-unit> |
8864 | <trans-unit id="8009065619559214982" datatype="html"> | 8937 | <trans-unit id="8009065619559214982" datatype="html"> |
8865 | <source>Go to the videos upload page</source> | 8938 | <source>Go to the videos upload page</source> |
8866 | <target>انتقل إلى صفحة رفع الفيديوهات</target> | 8939 | <target>انتقل إلى صفحة رفع الفيديوهات</target> |
8867 | 8940 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">300</context></context-group> | |
8868 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">300</context></context-group></trans-unit> | 8941 | </trans-unit> |
8869 | <trans-unit id="3779524668013120370" datatype="html"> | 8942 | <trans-unit id="3779524668013120370" datatype="html"> |
8870 | <source>Go to my subscriptions</source> | 8943 | <source>Go to my subscriptions</source> |
8871 | <target>انتقل إلى اشتراكاتي</target> | 8944 | <target>انتقل إلى اشتراكاتي</target> |
8872 | 8945 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">63</context></context-group> | |
8873 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">63</context></context-group></trans-unit> | 8946 | </trans-unit> |
8874 | <trans-unit id="1136469849928650779" datatype="html"> | 8947 | <trans-unit id="1136469849928650779" datatype="html"> |
8875 | <source>Go to my videos</source> | 8948 | <source>Go to my videos</source> |
8876 | <target>انتقل إلى فيديوهاتي</target> | 8949 | <target>انتقل إلى فيديوهاتي</target> |
8877 | 8950 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">67</context></context-group> | |
8878 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 8951 | </trans-unit> |
8879 | <trans-unit id="7836683738999600376" datatype="html"> | 8952 | <trans-unit id="7836683738999600376" datatype="html"> |
8880 | <source>Go to my imports</source> | 8953 | <source>Go to my imports</source> |
8881 | <target>انتقل إلى مستورداتي</target> | 8954 | <target>انتقل إلى مستورداتي</target> |
8882 | 8955 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">71</context></context-group> | |
8883 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">71</context></context-group></trans-unit> | 8956 | </trans-unit> |
8884 | <trans-unit id="7511292153332773503" datatype="html"> | 8957 | <trans-unit id="7511292153332773503" datatype="html"> |
8885 | <source>Go to my channels</source> | 8958 | <source>Go to my channels</source> |
8886 | <target>انتقل إلى قنواتي</target> | 8959 | <target>انتقل إلى قنواتي</target> |
8887 | 8960 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">75</context></context-group> | |
8888 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">75</context></context-group></trans-unit> | 8961 | </trans-unit> |
8889 | <trans-unit id="2013324644839511073" datatype="html"> | 8962 | <trans-unit id="2013324644839511073" datatype="html"> |
8890 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="error.text"/>. | 8963 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="err.text"/>. |
8891 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> | 8964 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> |
8892 | <target state="new">Cannot retrieve OAuth Client credentials: <x id="PH"/>. | 8965 | <target state="new">Cannot retrieve OAuth Client credentials: <x id="PH"/>. |
8893 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</target> | 8966 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</target> |
8894 | 8967 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">98</context></context-group> | |
8895 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">98</context></context-group></trans-unit> | 8968 | </trans-unit> |
8896 | <trans-unit id="375263728166936544" datatype="html"> | 8969 | <trans-unit id="375263728166936544" datatype="html"> |
8897 | <source>You need to reconnect.</source> | 8970 | <source>You need to reconnect.</source> |
8898 | <target>تحتاج لإعادة الإتصال.</target> | 8971 | <target>تحتاج لإعادة الإتصال.</target> |
8899 | 8972 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">221</context></context-group> | |
8900 | <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> | 8973 | </trans-unit> |
8901 | <trans-unit id="2206638022166154361" datatype="html"> | 8974 | <trans-unit id="2206638022166154361" datatype="html"> |
8902 | <source>Keyboard Shortcuts:</source> | 8975 | <source>Keyboard Shortcuts:</source> |
8903 | <target>اختصارات لوحة المفاتيح:</target> | 8976 | <target>اختصارات لوحة المفاتيح:</target> |
@@ -8910,8 +8983,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8910 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> | 8983 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> |
8911 | <context context-type="linenumber">98</context> | 8984 | <context context-type="linenumber">98</context> |
8912 | </context-group> | 8985 | </context-group> |
8913 | </trans-unit><trans-unit id="4024404994702813072" datatype="html"> | 8986 | </trans-unit> |
8914 | <source>In my library</source><target state="new">In my library</target> | 8987 | <trans-unit id="4024404994702813072" datatype="html"> |
8988 | <source>In my library</source> | ||
8989 | <target state="new">In my library</target> | ||
8915 | <context-group purpose="location"> | 8990 | <context-group purpose="location"> |
8916 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> | 8991 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> |
8917 | <context context-type="linenumber">104</context> | 8992 | <context context-type="linenumber">104</context> |
@@ -8920,8 +8995,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8920 | <trans-unit id="232050922346936574" datatype="html"> | 8995 | <trans-unit id="232050922346936574" datatype="html"> |
8921 | <source>Trending</source> | 8996 | <source>Trending</source> |
8922 | <target state="new">Trending</target> | 8997 | <target state="new">Trending</target> |
8923 | 8998 | <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> | |
8924 | <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> | 8999 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">131</context></context-group> |
9000 | </trans-unit> | ||
8925 | <trans-unit id="6470888608149621404" datatype="html"> | 9001 | <trans-unit id="6470888608149621404" datatype="html"> |
8926 | <source>ON <x id="PH" equiv-text="config.instance.name"/></source> | 9002 | <source>ON <x id="PH" equiv-text="config.instance.name"/></source> |
8927 | <target state="new">ON <x id="PH" equiv-text="config.instance.name"/></target> | 9003 | <target state="new">ON <x id="PH" equiv-text="config.instance.name"/></target> |
@@ -8944,18 +9020,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8944 | <trans-unit id="968295009933361070" datatype="html"> | 9020 | <trans-unit id="968295009933361070" datatype="html"> |
8945 | <source>Too many attempts, please try again after <x id="PH"/> minutes.</source> | 9021 | <source>Too many attempts, please try again after <x id="PH"/> minutes.</source> |
8946 | <target>أكثرت المحاولات، حاول لاحقا بعد <x id="PH"/> دقيقة.</target> | 9022 | <target>أكثرت المحاولات، حاول لاحقا بعد <x id="PH"/> دقيقة.</target> |
8947 | 9023 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">70</context></context-group> | |
8948 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">70</context></context-group></trans-unit> | 9024 | </trans-unit> |
8949 | <trans-unit id="4965472196059235310" datatype="html"> | 9025 | <trans-unit id="4965472196059235310" datatype="html"> |
8950 | <source>Too many attempts, please try again later.</source> | 9026 | <source>Too many attempts, please try again later.</source> |
8951 | <target>أكثرت المحاولات، حاول لاحقا.</target> | 9027 | <target>أكثرت المحاولات، حاول لاحقا.</target> |
8952 | 9028 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">72</context></context-group> | |
8953 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 9029 | </trans-unit> |
8954 | <trans-unit id="1693549688987384699" datatype="html"> | 9030 | <trans-unit id="1693549688987384699" datatype="html"> |
8955 | <source>Server error. Please retry later.</source> | 9031 | <source>Server error. Please retry later.</source> |
8956 | <target>خطأ في السيرفر. يرجى إعادة المحاولة لاحقا.</target> | 9032 | <target>خطأ في السيرفر. يرجى إعادة المحاولة لاحقا.</target> |
8957 | 9033 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">75</context></context-group> | |
8958 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">75</context></context-group></trans-unit> | 9034 | </trans-unit> |
8959 | <trans-unit id="4670312387769733978" datatype="html"> | 9035 | <trans-unit id="4670312387769733978" datatype="html"> |
8960 | <source>All unsaved data will be lost, are you sure you want to leave this page?</source> | 9036 | <source>All unsaved data will be lost, are you sure you want to leave this page?</source> |
8961 | <target>ستفقد جميع البيانات غير المحفوظة ، هل تريد مغادرة هذه الصفحة؟</target> | 9037 | <target>ستفقد جميع البيانات غير المحفوظة ، هل تريد مغادرة هذه الصفحة؟</target> |
@@ -8964,13 +9040,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8964 | <trans-unit id="2149300564474427551" datatype="html"> | 9040 | <trans-unit id="2149300564474427551" datatype="html"> |
8965 | <source>Administrator</source> | 9041 | <source>Administrator</source> |
8966 | <target>المدير</target> | 9042 | <target>المدير</target> |
8967 | 9043 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group> | |
8968 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group></trans-unit> | 9044 | </trans-unit> |
8969 | <trans-unit id="4968151111061046122" datatype="html"> | 9045 | <trans-unit id="4968151111061046122" datatype="html"> |
8970 | <source>Moderator</source> | 9046 | <source>Moderator</source> |
8971 | <target>مشرف</target> | 9047 | <target>مشرف</target> |
8972 | 9048 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group> | |
8973 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group></trans-unit> | 9049 | </trans-unit> |
8974 | <trans-unit id="2279527393438260622" datatype="html"> | 9050 | <trans-unit id="2279527393438260622" datatype="html"> |
8975 | <source>Search videos, playlists, channels…</source> | 9051 | <source>Search videos, playlists, channels…</source> |
8976 | <target state="new">Search videos, playlists, channels…</target> | 9052 | <target state="new">Search videos, playlists, channels…</target> |
@@ -8982,28 +9058,28 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8982 | <trans-unit id="5633144232269377096" datatype="html"> | 9058 | <trans-unit id="5633144232269377096" datatype="html"> |
8983 | <source>hide</source> | 9059 | <source>hide</source> |
8984 | <target>أخف</target> | 9060 | <target>أخف</target> |
8985 | 9061 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">301</context></context-group> | |
8986 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">301</context></context-group></trans-unit> | 9062 | </trans-unit> |
8987 | <trans-unit id="8603861867909474404" datatype="html"> | 9063 | <trans-unit id="8603861867909474404" datatype="html"> |
8988 | <source>blur</source> | 9064 | <source>blur</source> |
8989 | <target>طمس</target> | 9065 | <target>طمس</target> |
8990 | 9066 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">305</context></context-group> | |
8991 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">305</context></context-group></trans-unit> | 9067 | </trans-unit> |
8992 | <trans-unit id="4534458451100881847" datatype="html"> | 9068 | <trans-unit id="4534458451100881847" datatype="html"> |
8993 | <source>display</source> | 9069 | <source>display</source> |
8994 | <target>اعرض</target> | 9070 | <target>اعرض</target> |
8995 | 9071 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">309</context></context-group> | |
8996 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">309</context></context-group></trans-unit> | 9072 | </trans-unit> |
8997 | <trans-unit id="4467323362722952678" datatype="html"> | 9073 | <trans-unit id="4467323362722952678" datatype="html"> |
8998 | <source>Unknown</source> | 9074 | <source>Unknown</source> |
8999 | <target>مجهول</target> | 9075 | <target>مجهول</target> |
9000 | 9076 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">196</context></context-group> | |
9001 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> | 9077 | </trans-unit> |
9002 | <trans-unit id="7939914198003891823" datatype="html"> | 9078 | <trans-unit id="7939914198003891823" datatype="html"> |
9003 | <source>any language</source> | 9079 | <source>any language</source> |
9004 | <target>أي لغة</target> | 9080 | <target>أي لغة</target> |
9005 | 9081 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">266</context></context-group> | |
9006 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">266</context></context-group></trans-unit> | 9082 | </trans-unit> |
9007 | <trans-unit id="9178182467454450952" datatype="html"> | 9083 | <trans-unit id="9178182467454450952" datatype="html"> |
9008 | <source>Confirm</source> | 9084 | <source>Confirm</source> |
9009 | <target>أكد</target> | 9085 | <target>أكد</target> |
@@ -9012,39 +9088,47 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9012 | <trans-unit id="2127446333083057097" datatype="html"> | 9088 | <trans-unit id="2127446333083057097" datatype="html"> |
9013 | <source>Domain is required.</source> | 9089 | <source>Domain is required.</source> |
9014 | <target>اسم النطاق مطلوب.</target> | 9090 | <target>اسم النطاق مطلوب.</target> |
9015 | 9091 | <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> | |
9016 | <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"> | 9092 | <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> |
9017 | <source>Hosts entered are invalid.</source><target state="new">Hosts entered are invalid.</target> | 9093 | </trans-unit> |
9094 | <trans-unit id="7951488350851416577" datatype="html"> | ||
9095 | <source>Hosts entered are invalid.</source> | ||
9096 | <target state="new">Hosts entered are invalid.</target> | ||
9018 | <context-group purpose="location"> | 9097 | <context-group purpose="location"> |
9019 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 9098 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
9020 | <context context-type="linenumber">93</context> | 9099 | <context context-type="linenumber">93</context> |
9021 | </context-group> | 9100 | </context-group> |
9022 | </trans-unit><trans-unit id="1469559036084108672" datatype="html"> | 9101 | </trans-unit> |
9023 | <source>Hosts entered contain duplicates.</source><target state="new">Hosts entered contain duplicates.</target> | 9102 | <trans-unit id="1469559036084108672" datatype="html"> |
9103 | <source>Hosts entered contain duplicates.</source> | ||
9104 | <target state="new">Hosts entered contain duplicates.</target> | ||
9024 | <context-group purpose="location"> | 9105 | <context-group purpose="location"> |
9025 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 9106 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
9026 | <context context-type="linenumber">94</context> | 9107 | <context context-type="linenumber">94</context> |
9027 | </context-group> | 9108 | </context-group> |
9028 | </trans-unit><trans-unit id="5991533283446904296" datatype="html"> | 9109 | </trans-unit> |
9029 | <source>Hosts or handles are invalid.</source><target state="new">Hosts or handles are invalid.</target> | 9110 | <trans-unit id="5991533283446904296" datatype="html"> |
9111 | <source>Hosts or handles are invalid.</source> | ||
9112 | <target state="new">Hosts or handles are invalid.</target> | ||
9030 | <context-group purpose="location"> | 9113 | <context-group purpose="location"> |
9031 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 9114 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
9032 | <context context-type="linenumber">102</context> | 9115 | <context context-type="linenumber">102</context> |
9033 | </context-group> | 9116 | </context-group> |
9034 | </trans-unit><trans-unit id="6759198394434886237" datatype="html"> | 9117 | </trans-unit> |
9035 | <source>Hosts or handles contain duplicates.</source><target state="new">Hosts or handles contain duplicates.</target> | 9118 | <trans-unit id="6759198394434886237" datatype="html"> |
9119 | <source>Hosts or handles contain duplicates.</source> | ||
9120 | <target state="new">Hosts or handles contain duplicates.</target> | ||
9036 | <context-group purpose="location"> | 9121 | <context-group purpose="location"> |
9037 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 9122 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
9038 | <context context-type="linenumber">103</context> | 9123 | <context context-type="linenumber">103</context> |
9039 | </context-group> | 9124 | </context-group> |
9040 | </trans-unit> | 9125 | </trans-unit> |
9041 | |||
9042 | |||
9043 | <trans-unit id="2740793005745065895" datatype="html"> | 9126 | <trans-unit id="2740793005745065895" datatype="html"> |
9044 | <source><x id="PH"/> is not valid </source> | 9127 | <source><x id="PH"/> is not valid </source> |
9045 | <target><x id="PH"/> غير صالح </target> | 9128 | <target><x id="PH"/> غير صالح </target> |
9046 | 9129 | <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> | |
9047 | <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> | 9130 | <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> |
9131 | </trans-unit> | ||
9048 | <trans-unit id="7784486624424057376" datatype="html"> | 9132 | <trans-unit id="7784486624424057376" datatype="html"> |
9049 | <source>Instance name is required.</source> | 9133 | <source>Instance name is required.</source> |
9050 | <target>اسم مثيل الخادم مطلوب.</target> | 9134 | <target>اسم مثيل الخادم مطلوب.</target> |
@@ -9367,17 +9451,17 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9367 | <trans-unit id="2761226139624435788" datatype="html"> | 9451 | <trans-unit id="2761226139624435788" datatype="html"> |
9368 | <source>Description must be at least 3 characters long.</source> | 9452 | <source>Description must be at least 3 characters long.</source> |
9369 | <target>يجب ألاّ يقل الوصف عن 3 محراف.</target> | 9453 | <target>يجب ألاّ يقل الوصف عن 3 محراف.</target> |
9370 | 9454 | <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> | |
9371 | 9455 | <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> | |
9372 | 9456 | <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> | |
9373 | <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> | 9457 | </trans-unit> |
9374 | <trans-unit id="4717982586356605243" datatype="html"> | 9458 | <trans-unit id="4717982586356605243" datatype="html"> |
9375 | <source>Description cannot be more than 1000 characters long.</source> | 9459 | <source>Description cannot be more than 1000 characters long.</source> |
9376 | <target>يجب ألاّ يزيد الوصف عن 1000 محرف.</target> | 9460 | <target>يجب ألاّ يزيد الوصف عن 1000 محرف.</target> |
9377 | 9461 | <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> | |
9378 | 9462 | <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> | |
9379 | 9463 | <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> | |
9380 | <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> | 9464 | </trans-unit> |
9381 | <trans-unit id="1814372869868173571" datatype="html"> | 9465 | <trans-unit id="1814372869868173571" datatype="html"> |
9382 | <source>You must agree with the instance terms in order to register on it.</source> | 9466 | <source>You must agree with the instance terms in order to register on it.</source> |
9383 | <target>يجب عليك قبول شروط مثيل الخادم لتسجيل فيه.</target> | 9467 | <target>يجب عليك قبول شروط مثيل الخادم لتسجيل فيه.</target> |
@@ -9396,23 +9480,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9396 | <trans-unit id="6632896893630378443" datatype="html"> | 9480 | <trans-unit id="6632896893630378443" datatype="html"> |
9397 | <source>Display name is required.</source> | 9481 | <source>Display name is required.</source> |
9398 | <target>الاسم العلني مطلوب.</target> | 9482 | <target>الاسم العلني مطلوب.</target> |
9399 | 9483 | <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> | |
9400 | 9484 | <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> | |
9401 | 9485 | <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> | |
9402 | <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> | 9486 | </trans-unit> |
9403 | <trans-unit id="1303578752658966736" datatype="html"> | 9487 | <trans-unit id="1303578752658966736" datatype="html"> |
9404 | <source>Display name must be at least 1 character long.</source> | 9488 | <source>Display name must be at least 1 character long.</source> |
9405 | <target>يجب ألا يقل الاسم العلني عن محرف واحد.</target> | 9489 | <target>يجب ألا يقل الاسم العلني عن محرف واحد.</target> |
9406 | 9490 | <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> | |
9407 | 9491 | <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> | |
9408 | 9492 | <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> | |
9409 | <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> | 9493 | </trans-unit> |
9410 | <trans-unit id="4613240543124934954" datatype="html"> | 9494 | <trans-unit id="4613240543124934954" datatype="html"> |
9411 | <source>Display name cannot be more than 50 characters long.</source> | 9495 | <source>Display name cannot be more than 50 characters long.</source> |
9412 | <target>يجب ألاّ يزيد الاسم العلني عن 50 محرفًا.</target> | 9496 | <target>يجب ألاّ يزيد الاسم العلني عن 50 محرفًا.</target> |
9413 | 9497 | <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> | |
9414 | 9498 | <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> | |
9415 | <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> | 9499 | </trans-unit> |
9416 | <trans-unit id="1000468652492651683" datatype="html"> | 9500 | <trans-unit id="1000468652492651683" datatype="html"> |
9417 | <source>Report reason is required.</source> | 9501 | <source>Report reason is required.</source> |
9418 | <target>سبب الإبلاغ مطلوب.</target> | 9502 | <target>سبب الإبلاغ مطلوب.</target> |
@@ -9496,33 +9580,33 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9496 | <trans-unit id="4444753420973870540" datatype="html"> | 9580 | <trans-unit id="4444753420973870540" datatype="html"> |
9497 | <source>Name is required.</source> | 9581 | <source>Name is required.</source> |
9498 | <target>الاسم مطلوب.</target> | 9582 | <target>الاسم مطلوب.</target> |
9499 | 9583 | <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> | |
9500 | <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> | 9584 | </trans-unit> |
9501 | <trans-unit id="4006797705713167676" datatype="html"> | 9585 | <trans-unit id="4006797705713167676" datatype="html"> |
9502 | <source>Name must be at least 1 character long.</source> | 9586 | <source>Name must be at least 1 character long.</source> |
9503 | <target>يجب ألاّ يقل الاسم عن محرف واحد.</target> | 9587 | <target>يجب ألاّ يقل الاسم عن محرف واحد.</target> |
9504 | 9588 | <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> | |
9505 | <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> | 9589 | </trans-unit> |
9506 | <trans-unit id="2233809696503670883" datatype="html"> | 9590 | <trans-unit id="2233809696503670883" datatype="html"> |
9507 | <source>Name cannot be more than 50 characters long.</source> | 9591 | <source>Name cannot be more than 50 characters long.</source> |
9508 | <target>يجب ألاّ يزيد الاسم عن 50 محرفًا.</target> | 9592 | <target>يجب ألاّ يزيد الاسم عن 50 محرفًا.</target> |
9509 | 9593 | <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> | |
9510 | <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> | 9594 | </trans-unit> |
9511 | <trans-unit id="7915656854942800659" datatype="html"> | 9595 | <trans-unit id="7915656854942800659" datatype="html"> |
9512 | <source>Name should be lowercase alphanumeric; dots and underscores are allowed.</source> | 9596 | <source>Name should be lowercase alphanumeric; dots and underscores are allowed.</source> |
9513 | <target>يجب أن يتكون الاسم من حروف صغيرة و أرقام ; يسمح بالنقاط والشَرطة السفلية.</target> | 9597 | <target>يجب أن يتكون الاسم من حروف صغيرة و أرقام ; يسمح بالنقاط والشَرطة السفلية.</target> |
9514 | 9598 | <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> | |
9515 | <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> | 9599 | </trans-unit> |
9516 | <trans-unit id="6880459830525364741" datatype="html"> | 9600 | <trans-unit id="6880459830525364741" datatype="html"> |
9517 | <source>Support text must be at least 3 characters long.</source> | 9601 | <source>Support text must be at least 3 characters long.</source> |
9518 | <target>يجب ألاّ يقل نص الدعم عن 3 محارف.</target> | 9602 | <target>يجب ألاّ يقل نص الدعم عن 3 محارف.</target> |
9519 | 9603 | <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> | |
9520 | <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> | 9604 | </trans-unit> |
9521 | <trans-unit id="6461548560008228165" datatype="html"> | 9605 | <trans-unit id="6461548560008228165" datatype="html"> |
9522 | <source>Support text cannot be more than 1000 characters long</source> | 9606 | <source>Support text cannot be more than 1000 characters long</source> |
9523 | <target state="translated">يجب ألاّ يزيد نص الدعم عن 1000 محرف</target> | 9607 | <target state="translated">يجب ألاّ يزيد نص الدعم عن 1000 محرف</target> |
9524 | 9608 | <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> | |
9525 | <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> | 9609 | </trans-unit> |
9526 | <trans-unit id="5637879201055173642" datatype="html"> | 9610 | <trans-unit id="5637879201055173642" datatype="html"> |
9527 | <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> | 9611 | <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> |
9528 | <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. | 9612 | <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. |
@@ -9682,9 +9766,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9682 | <trans-unit id="2115592966120408375" datatype="html"> | 9766 | <trans-unit id="2115592966120408375" datatype="html"> |
9683 | <source>Copied</source> | 9767 | <source>Copied</source> |
9684 | <target>نُسخ</target> | 9768 | <target>نُسخ</target> |
9685 | 9769 | <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> | |
9686 | 9770 | <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> | |
9687 | <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> | 9771 | </trans-unit> |
9688 | <trans-unit id="4323470180912194028" datatype="html"> | 9772 | <trans-unit id="4323470180912194028" datatype="html"> |
9689 | <source>Copy</source> | 9773 | <source>Copy</source> |
9690 | <target state="new">Copy</target> | 9774 | <target state="new">Copy</target> |
@@ -9694,19 +9778,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9694 | <trans-unit id="7916647920967632052" datatype="html"> | 9778 | <trans-unit id="7916647920967632052" datatype="html"> |
9695 | <source>max size</source> | 9779 | <source>max size</source> |
9696 | <target>اقصى حجم</target> | 9780 | <target>اقصى حجم</target> |
9697 | 9781 | <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> | |
9698 | 9782 | <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> | |
9699 | <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> | 9783 | </trans-unit> |
9700 | <trans-unit id="6489275254908395777" datatype="html"> | 9784 | <trans-unit id="6489275254908395777" datatype="html"> |
9701 | <source>Maximize editor</source> | 9785 | <source>Maximize editor</source> |
9702 | <target state="new">Maximize editor</target> | 9786 | <target state="new">Maximize editor</target> |
9703 | 9787 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context><context context-type="linenumber">49</context></context-group> | |
9704 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context><context context-type="linenumber">49</context></context-group></trans-unit> | 9788 | </trans-unit> |
9705 | <trans-unit id="4243591013849340688" datatype="html"> | 9789 | <trans-unit id="4243591013849340688" datatype="html"> |
9706 | <source>Exit maximized editor</source> | 9790 | <source>Exit maximized editor</source> |
9707 | <target state="new">Exit maximized editor</target> | 9791 | <target state="new">Exit maximized editor</target> |
9708 | 9792 | <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> | |
9709 | <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> | 9793 | </trans-unit> |
9710 | <trans-unit id="8728283516316752593" datatype="html"> | 9794 | <trans-unit id="8728283516316752593" datatype="html"> |
9711 | <source>This file is too large.</source> | 9795 | <source>This file is too large.</source> |
9712 | <target>حجم هذا الملف كبير جدًّا.</target> | 9796 | <target>حجم هذا الملف كبير جدًّا.</target> |
@@ -9716,14 +9800,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9716 | <source>PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</source> | 9800 | <source>PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</source> |
9717 | <target state="translated">لا يمكن لبيرتيوب التعامل نع هذا الملف. الامتدادات المدعومة <x id="PH"/>}.</target> | 9801 | <target state="translated">لا يمكن لبيرتيوب التعامل نع هذا الملف. الامتدادات المدعومة <x id="PH"/>}.</target> |
9718 | <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> | 9802 | <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> |
9719 | </trans-unit><trans-unit id="3393133458004181121" datatype="html"> | 9803 | </trans-unit> |
9720 | <source>All categories</source><target state="new">All categories</target> | 9804 | <trans-unit id="3393133458004181121" datatype="html"> |
9805 | <source>All categories</source> | ||
9806 | <target state="new">All categories</target> | ||
9721 | <context-group purpose="location"> | 9807 | <context-group purpose="location"> |
9722 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.ts</context> | 9808 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.ts</context> |
9723 | <context context-type="linenumber">24</context> | 9809 | <context context-type="linenumber">24</context> |
9724 | </context-group> | 9810 | </context-group> |
9725 | </trans-unit><trans-unit id="3999967345340145904" datatype="html"> | 9811 | </trans-unit> |
9726 | <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> | 9812 | <trans-unit id="3999967345340145904" datatype="html"> |
9813 | <source>You can't select more than <x id="PH" equiv-text="this.maxItems"/> items</source> | ||
9814 | <target state="new">You can't select more than <x id="PH" equiv-text="this.maxItems"/> items</target> | ||
9727 | <context-group purpose="location"> | 9815 | <context-group purpose="location"> |
9728 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox-all.component.ts</context> | 9816 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox-all.component.ts</context> |
9729 | <context context-type="linenumber">81</context> | 9817 | <context context-type="linenumber">81</context> |
@@ -9732,8 +9820,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9732 | <trans-unit id="6708273825233539746" datatype="html"> | 9820 | <trans-unit id="6708273825233539746" datatype="html"> |
9733 | <source>Add a new option</source> | 9821 | <source>Add a new option</source> |
9734 | <target state="translated">أضف خيار جديد</target> | 9822 | <target state="translated">أضف خيار جديد</target> |
9735 | 9823 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.ts</context><context context-type="linenumber">27</context></context-group> | |
9736 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.ts</context><context context-type="linenumber">27</context></context-group></trans-unit> | 9824 | </trans-unit> |
9737 | <trans-unit id="4076995379551303829" datatype="html"> | 9825 | <trans-unit id="4076995379551303829" datatype="html"> |
9738 | <source>Custom value...</source> | 9826 | <source>Custom value...</source> |
9739 | <target state="new">Custom value...</target> | 9827 | <target state="new">Custom value...</target> |
@@ -9755,8 +9843,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9755 | <trans-unit id="8929218224642530466" datatype="html"> | 9843 | <trans-unit id="8929218224642530466" datatype="html"> |
9756 | <source>Displayed</source> | 9844 | <source>Displayed</source> |
9757 | <target>معروض</target> | 9845 | <target>معروض</target> |
9758 | 9846 | <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> | |
9759 | <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">227</context></context-group></trans-unit> | 9847 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">227</context></context-group> |
9848 | </trans-unit> | ||
9760 | <trans-unit id="6291055174438137560" datatype="html"> | 9849 | <trans-unit id="6291055174438137560" datatype="html"> |
9761 | <source>~ 1 minute</source> | 9850 | <source>~ 1 minute</source> |
9762 | <target state="translated">~ 1 دقيقة</target> | 9851 | <target state="translated">~ 1 دقيقة</target> |
@@ -9785,16 +9874,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9785 | <trans-unit id="6952960992592445535" datatype="html"> | 9874 | <trans-unit id="6952960992592445535" datatype="html"> |
9786 | <source><x id="PH"/> (channel page) </source> | 9875 | <source><x id="PH"/> (channel page) </source> |
9787 | <target><x id="PH"/> (صفحة القناة) </target> | 9876 | <target><x id="PH"/> (صفحة القناة) </target> |
9788 | 9877 | <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">19</context></context-group> | |
9789 | 9878 | <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> | |
9790 | 9879 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">113</context></context-group> | |
9791 | <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">19</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">113</context></context-group></trans-unit> | 9880 | </trans-unit> |
9792 | <trans-unit id="1209500590333005801" datatype="html"> | 9881 | <trans-unit id="1209500590333005801" datatype="html"> |
9793 | <source><x id="PH"/> (account page) </source> | 9882 | <source><x id="PH"/> (account page) </source> |
9794 | <target><x id="PH"/> (صفحة الحساب) </target> | 9883 | <target><x id="PH"/> (صفحة الحساب) </target> |
9795 | 9884 | <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> | |
9796 | 9885 | <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> | |
9797 | <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">39</context></context-group></trans-unit> | 9886 | </trans-unit> |
9798 | <trans-unit id="5891040073345002614" datatype="html"> | 9887 | <trans-unit id="5891040073345002614" datatype="html"> |
9799 | <source><x id="PH"/> years ago </source> | 9888 | <source><x id="PH"/> years ago </source> |
9800 | <target><x id="PH"/> سنة </target> | 9889 | <target><x id="PH"/> سنة </target> |
@@ -9906,214 +9995,214 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9906 | <trans-unit id="6853170548960328665" datatype="html"> | 9995 | <trans-unit id="6853170548960328665" datatype="html"> |
9907 | <source>Close search</source> | 9996 | <source>Close search</source> |
9908 | <target state="new">Close search</target> | 9997 | <target state="new">Close search</target> |
9909 | 9998 | <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> | |
9910 | <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> | 9999 | </trans-unit> |
9911 | <trans-unit id="2439066254855913806" datatype="html"> | 10000 | <trans-unit id="2439066254855913806" datatype="html"> |
9912 | <source>Only I can see this video</source> | 10001 | <source>Only I can see this video</source> |
9913 | <target>أنا الوحيد القادر على مشاهدة هذا الفيديو</target> | 10002 | <target>أنا الوحيد القادر على مشاهدة هذا الفيديو</target> |
9914 | 10003 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">325</context></context-group> | |
9915 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">325</context></context-group></trans-unit> | 10004 | </trans-unit> |
9916 | <trans-unit id="6767380569816110388" datatype="html"> | 10005 | <trans-unit id="6767380569816110388" datatype="html"> |
9917 | <source>Only shareable via a private link</source> | 10006 | <source>Only shareable via a private link</source> |
9918 | <target state="translated">يمكن مشاركته عبر رابط خاص فقط</target> | 10007 | <target state="translated">يمكن مشاركته عبر رابط خاص فقط</target> |
9919 | 10008 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">326</context></context-group> | |
9920 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">326</context></context-group></trans-unit> | 10009 | </trans-unit> |
9921 | <trans-unit id="6828965264297239528" datatype="html"> | 10010 | <trans-unit id="6828965264297239528" datatype="html"> |
9922 | <source>Anyone can see this video</source> | 10011 | <source>Anyone can see this video</source> |
9923 | <target>يمكن لأي شخص أن يرى هذا الفيديو</target> | 10012 | <target>يمكن لأي شخص أن يرى هذا الفيديو</target> |
9924 | 10013 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">327</context></context-group> | |
9925 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">327</context></context-group></trans-unit> | 10014 | </trans-unit> |
9926 | <trans-unit id="1425933035739773115" datatype="html"> | 10015 | <trans-unit id="1425933035739773115" datatype="html"> |
9927 | <source>Only users of this instance can see this video</source> | 10016 | <source>Only users of this instance can see this video</source> |
9928 | <target>يمكن لمستخدمي هذا المثيلة فقط مشاهدة هذا الفيديو</target> | 10017 | <target>يمكن لمستخدمي هذا المثيلة فقط مشاهدة هذا الفيديو</target> |
9929 | 10018 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">328</context></context-group> | |
9930 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">328</context></context-group></trans-unit> | 10019 | </trans-unit> |
9931 | <trans-unit id="8312101634344200207" datatype="html"> | 10020 | <trans-unit id="8312101634344200207" datatype="html"> |
9932 | <source><x id="PH" equiv-text="this.views"/> viewers</source> | 10021 | <source><x id="PH" equiv-text="this.views"/> viewers</source> |
9933 | <target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | 10022 | <target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> |
9934 | 10023 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">216</context></context-group> | |
9935 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">216</context></context-group></trans-unit> | 10024 | </trans-unit> |
9936 | <trans-unit id="7756087706411154095" datatype="html"> | 10025 | <trans-unit id="7756087706411154095" datatype="html"> |
9937 | <source><x id="PH" equiv-text="this.views"/> views</source> | 10026 | <source><x id="PH" equiv-text="this.views"/> views</source> |
9938 | <target state="new"><x id="PH" equiv-text="this.views"/> views</target> | 10027 | <target state="new"><x id="PH" equiv-text="this.views"/> views</target> |
9939 | 10028 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">219</context></context-group> | |
9940 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">219</context></context-group></trans-unit> | 10029 | </trans-unit> |
9941 | <trans-unit id="ngb.alert.close" datatype="html"> | 10030 | <trans-unit id="ngb.alert.close" datatype="html"> |
9942 | <source>Close</source> | 10031 | <source>Close</source> |
9943 | <target state="translated">أغلق</target> | 10032 | <target state="translated">أغلق</target> |
9944 | 10033 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">58</context></context-group> | |
9945 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 10034 | </trans-unit> |
9946 | <trans-unit id="ngb.carousel.slide-number" datatype="html"> | 10035 | <trans-unit id="ngb.carousel.slide-number" datatype="html"> |
9947 | <source>Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </source> | 10036 | <source>Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </source> |
9948 | <target state="new"> Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </target> | 10037 | <target state="new"> Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </target> |
9949 | <note priority="1" from="description">Currently selected slide number read by screen reader</note> | 10038 | <note priority="1" from="description">Currently selected slide number read by screen reader</note> |
9950 | 10039 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">114</context></context-group> | |
9951 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">114</context></context-group></trans-unit> | 10040 | </trans-unit> |
9952 | <trans-unit id="ngb.carousel.previous" datatype="html"> | 10041 | <trans-unit id="ngb.carousel.previous" datatype="html"> |
9953 | <source>Previous</source> | 10042 | <source>Previous</source> |
9954 | <target state="translated">السابق</target> | 10043 | <target state="translated">السابق</target> |
9955 | 10044 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">132</context></context-group> | |
9956 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">132</context></context-group></trans-unit> | 10045 | </trans-unit> |
9957 | <trans-unit id="ngb.carousel.next" datatype="html"> | 10046 | <trans-unit id="ngb.carousel.next" datatype="html"> |
9958 | <source>Next</source> | 10047 | <source>Next</source> |
9959 | <target state="translated">التالي</target> | 10048 | <target state="translated">التالي</target> |
9960 | 10049 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">147</context></context-group> | |
9961 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">147</context></context-group></trans-unit> | 10050 | </trans-unit> |
9962 | <trans-unit id="ngb.datepicker.previous-month" datatype="html"> | 10051 | <trans-unit id="ngb.datepicker.previous-month" datatype="html"> |
9963 | <source>Previous month</source> | 10052 | <source>Previous month</source> |
9964 | <target state="translated">الشهر الماضي</target> | 10053 | <target state="translated">الشهر الماضي</target> |
9965 | 10054 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">24</context></context-group> | |
9966 | 10055 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">35</context></context-group> | |
9967 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">35</context></context-group></trans-unit> | 10056 | </trans-unit> |
9968 | <trans-unit id="ngb.datepicker.next-month" datatype="html"> | 10057 | <trans-unit id="ngb.datepicker.next-month" datatype="html"> |
9969 | <source>Next month</source> | 10058 | <source>Next month</source> |
9970 | <target state="translated">الشهر القادم</target> | 10059 | <target state="translated">الشهر القادم</target> |
9971 | 10060 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">47</context></context-group> | |
9972 | 10061 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">60</context></context-group> | |
9973 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> | 10062 | </trans-unit> |
9974 | <trans-unit id="ngb.datepicker.select-month" datatype="html"> | 10063 | <trans-unit id="ngb.datepicker.select-month" datatype="html"> |
9975 | <source>Select month</source> | 10064 | <source>Select month</source> |
9976 | <target state="translated">اختر شهرا</target> | 10065 | <target state="translated">اختر شهرا</target> |
9977 | 10066 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">44</context></context-group> | |
9978 | 10067 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">49</context></context-group> | |
9979 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">49</context></context-group></trans-unit> | 10068 | </trans-unit> |
9980 | <trans-unit id="ngb.datepicker.select-year" datatype="html"> | 10069 | <trans-unit id="ngb.datepicker.select-year" datatype="html"> |
9981 | <source>Select year</source> | 10070 | <source>Select year</source> |
9982 | <target state="translated">اختر سنة</target> | 10071 | <target state="translated">اختر سنة</target> |
9983 | 10072 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">59</context></context-group> | |
9984 | 10073 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">74</context></context-group> | |
9985 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">59</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">74</context></context-group></trans-unit> | 10074 | </trans-unit> |
9986 | <trans-unit id="ngb.pagination.first" datatype="html"> | 10075 | <trans-unit id="ngb.pagination.first" datatype="html"> |
9987 | <source>««</source> | 10076 | <source>««</source> |
9988 | <target state="translated">««</target> | 10077 | <target state="translated">««</target> |
9989 | 10078 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">182</context></context-group> | |
9990 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> | 10079 | </trans-unit> |
9991 | <trans-unit id="ngb.pagination.previous" datatype="html"> | 10080 | <trans-unit id="ngb.pagination.previous" datatype="html"> |
9992 | <source>«</source> | 10081 | <source>«</source> |
9993 | <target state="translated">«</target> | 10082 | <target state="translated">«</target> |
9994 | 10083 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">186</context></context-group> | |
9995 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 10084 | </trans-unit> |
9996 | <trans-unit id="ngb.pagination.next" datatype="html"> | 10085 | <trans-unit id="ngb.pagination.next" datatype="html"> |
9997 | <source>»</source> | 10086 | <source>»</source> |
9998 | <target state="translated">»</target> | 10087 | <target state="translated">»</target> |
9999 | 10088 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">194</context></context-group> | |
10000 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">194</context></context-group></trans-unit> | 10089 | </trans-unit> |
10001 | <trans-unit id="ngb.pagination.last" datatype="html"> | 10090 | <trans-unit id="ngb.pagination.last" datatype="html"> |
10002 | <source>»»</source> | 10091 | <source>»»</source> |
10003 | <target state="translated">»»</target> | 10092 | <target state="translated">»»</target> |
10004 | 10093 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">201</context></context-group> | |
10005 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">201</context></context-group></trans-unit> | 10094 | </trans-unit> |
10006 | <trans-unit id="ngb.pagination.first-aria" datatype="html"> | 10095 | <trans-unit id="ngb.pagination.first-aria" datatype="html"> |
10007 | <source>First</source> | 10096 | <source>First</source> |
10008 | <target state="translated">الأول</target> | 10097 | <target state="translated">الأول</target> |
10009 | 10098 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">208</context></context-group> | |
10010 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">208</context></context-group></trans-unit> | 10099 | </trans-unit> |
10011 | <trans-unit id="ngb.pagination.previous-aria" datatype="html"> | 10100 | <trans-unit id="ngb.pagination.previous-aria" datatype="html"> |
10012 | <source>Previous</source> | 10101 | <source>Previous</source> |
10013 | <target state="translated">السابق</target> | 10102 | <target state="translated">السابق</target> |
10014 | 10103 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">215</context></context-group> | |
10015 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">215</context></context-group></trans-unit> | 10104 | </trans-unit> |
10016 | <trans-unit id="ngb.pagination.next-aria" datatype="html"> | 10105 | <trans-unit id="ngb.pagination.next-aria" datatype="html"> |
10017 | <source>Next</source> | 10106 | <source>Next</source> |
10018 | <target state="translated">التالي</target> | 10107 | <target state="translated">التالي</target> |
10019 | 10108 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">226</context></context-group> | |
10020 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">226</context></context-group></trans-unit> | 10109 | </trans-unit> |
10021 | <trans-unit id="ngb.pagination.last-aria" datatype="html"> | 10110 | <trans-unit id="ngb.pagination.last-aria" datatype="html"> |
10022 | <source>Last</source> | 10111 | <source>Last</source> |
10023 | <target state="translated">الأخير</target> | 10112 | <target state="translated">الأخير</target> |
10024 | 10113 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">232</context></context-group> | |
10025 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">232</context></context-group></trans-unit> | 10114 | </trans-unit> |
10026 | <trans-unit id="ngb.progressbar.value" datatype="html"> | 10115 | <trans-unit id="ngb.progressbar.value" datatype="html"> |
10027 | <source><x id="INTERPOLATION"/></source> | 10116 | <source><x id="INTERPOLATION"/></source> |
10028 | <target state="translated"><x id="INTERPOLATION"/></target> | 10117 | <target state="translated"><x id="INTERPOLATION"/></target> |
10029 | 10118 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/progressbar/progressbar.ts</context><context context-type="linenumber">32</context></context-group> | |
10030 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/progressbar/progressbar.ts</context><context context-type="linenumber">32</context></context-group></trans-unit> | 10119 | </trans-unit> |
10031 | <trans-unit id="ngb.timepicker.HH" datatype="html"> | 10120 | <trans-unit id="ngb.timepicker.HH" datatype="html"> |
10032 | <source>HH</source> | 10121 | <source>HH</source> |
10033 | <target state="translated">ساسا</target> | 10122 | <target state="translated">ساسا</target> |
10034 | 10123 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">40</context></context-group> | |
10035 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">40</context></context-group></trans-unit> | 10124 | </trans-unit> |
10036 | <trans-unit id="ngb.timepicker.hours" datatype="html"> | 10125 | <trans-unit id="ngb.timepicker.hours" datatype="html"> |
10037 | <source>Hours</source> | 10126 | <source>Hours</source> |
10038 | <target state="translated">ساعات</target> | 10127 | <target state="translated">ساعات</target> |
10039 | 10128 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">46</context></context-group> | |
10040 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 10129 | </trans-unit> |
10041 | <trans-unit id="ngb.timepicker.MM" datatype="html"> | 10130 | <trans-unit id="ngb.timepicker.MM" datatype="html"> |
10042 | <source>MM</source> | 10131 | <source>MM</source> |
10043 | <target state="translated">دد</target> | 10132 | <target state="translated">دد</target> |
10044 | 10133 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">51</context></context-group> | |
10045 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> | 10134 | </trans-unit> |
10046 | <trans-unit id="ngb.timepicker.minutes" datatype="html"> | 10135 | <trans-unit id="ngb.timepicker.minutes" datatype="html"> |
10047 | <source>Minutes</source> | 10136 | <source>Minutes</source> |
10048 | <target state="translated">دقائق</target> | 10137 | <target state="translated">دقائق</target> |
10049 | 10138 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">58</context></context-group> | |
10050 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 10139 | </trans-unit> |
10051 | <trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | 10140 | <trans-unit id="ngb.timepicker.increment-hours" datatype="html"> |
10052 | <source>Increment hours</source> | 10141 | <source>Increment hours</source> |
10053 | <target state="translated">زد ساعات</target> | 10142 | <target state="translated">زد ساعات</target> |
10054 | 10143 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">63</context></context-group> | |
10055 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">63</context></context-group></trans-unit> | 10144 | </trans-unit> |
10056 | <trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | 10145 | <trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> |
10057 | <source>Decrement hours</source> | 10146 | <source>Decrement hours</source> |
10058 | <target state="translated">اطرح ساعات</target> | 10147 | <target state="translated">اطرح ساعات</target> |
10059 | 10148 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">69</context></context-group> | |
10060 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">69</context></context-group></trans-unit> | 10149 | </trans-unit> |
10061 | <trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | 10150 | <trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> |
10062 | <source>Increment minutes</source> | 10151 | <source>Increment minutes</source> |
10063 | <target state="translated">زد دقائق</target> | 10152 | <target state="translated">زد دقائق</target> |
10064 | 10153 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">76</context></context-group> | |
10065 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 10154 | </trans-unit> |
10066 | <trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | 10155 | <trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> |
10067 | <source>Decrement minutes</source> | 10156 | <source>Decrement minutes</source> |
10068 | <target state="translated">اطرح دقائق</target> | 10157 | <target state="translated">اطرح دقائق</target> |
10069 | 10158 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">82</context></context-group> | |
10070 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 10159 | </trans-unit> |
10071 | <trans-unit id="ngb.timepicker.SS" datatype="html"> | 10160 | <trans-unit id="ngb.timepicker.SS" datatype="html"> |
10072 | <source>SS</source> | 10161 | <source>SS</source> |
10073 | <target state="translated">ثاثا</target> | 10162 | <target state="translated">ثاثا</target> |
10074 | 10163 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">87</context></context-group> | |
10075 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">87</context></context-group></trans-unit> | 10164 | </trans-unit> |
10076 | <trans-unit id="ngb.timepicker.seconds" datatype="html"> | 10165 | <trans-unit id="ngb.timepicker.seconds" datatype="html"> |
10077 | <source>Seconds</source> | 10166 | <source>Seconds</source> |
10078 | <target state="translated">ثواني</target> | 10167 | <target state="translated">ثواني</target> |
10079 | 10168 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">92</context></context-group> | |
10080 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">92</context></context-group></trans-unit> | 10169 | </trans-unit> |
10081 | <trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | 10170 | <trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> |
10082 | <source>Increment seconds</source> | 10171 | <source>Increment seconds</source> |
10083 | <target state="translated">زد ثواني</target> | 10172 | <target state="translated">زد ثواني</target> |
10084 | 10173 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">100</context></context-group> | |
10085 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">100</context></context-group></trans-unit> | 10174 | </trans-unit> |
10086 | <trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | 10175 | <trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> |
10087 | <source>Decrement seconds</source> | 10176 | <source>Decrement seconds</source> |
10088 | <target state="translated">اطرح ثواني</target> | 10177 | <target state="translated">اطرح ثواني</target> |
10089 | 10178 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">106</context></context-group> | |
10090 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">106</context></context-group></trans-unit> | 10179 | </trans-unit> |
10091 | <trans-unit id="ngb.timepicker.PM" datatype="html"> | 10180 | <trans-unit id="ngb.timepicker.PM" datatype="html"> |
10092 | <source><x id="INTERPOLATION"/></source> | 10181 | <source><x id="INTERPOLATION"/></source> |
10093 | <target state="translated"><x id="INTERPOLATION"/></target> | 10182 | <target state="translated"><x id="INTERPOLATION"/></target> |
10094 | 10183 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">123</context></context-group> | |
10095 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">123</context></context-group></trans-unit> | 10184 | </trans-unit> |
10096 | <trans-unit id="ngb.timepicker.AM" datatype="html"> | 10185 | <trans-unit id="ngb.timepicker.AM" datatype="html"> |
10097 | <source><x id="INTERPOLATION"/></source> | 10186 | <source><x id="INTERPOLATION"/></source> |
10098 | <target state="translated"><x id="INTERPOLATION"/></target> | 10187 | <target state="translated"><x id="INTERPOLATION"/></target> |
10099 | 10188 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">115</context></context-group> | |
10100 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">115</context></context-group></trans-unit> | 10189 | </trans-unit> |
10101 | <trans-unit id="ngb.toast.close-aria" datatype="html"> | 10190 | <trans-unit id="ngb.toast.close-aria" datatype="html"> |
10102 | <source>Close</source> | 10191 | <source>Close</source> |
10103 | <target state="translated">اغلق</target> | 10192 | <target state="translated">اغلق</target> |
10104 | 10193 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/toast/toast.ts</context><context context-type="linenumber">78</context></context-group> | |
10105 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/toast/toast.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 10194 | </trans-unit> |
10106 | <trans-unit id="7390990800435887351" datatype="html"> | 10195 | <trans-unit id="7390990800435887351" datatype="html"> |
10107 | <source>Account <x id="PH"/> unmuted.</source> | 10196 | <source>Account <x id="PH"/> unmuted.</source> |
10108 | <target>أُلغي كتم حساب <x id="PH"/>.</target> | 10197 | <target>أُلغي كتم حساب <x id="PH"/>.</target> |
10109 | 10198 | <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> | |
10110 | 10199 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">131</context></context-group> | |
10111 | <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">131</context></context-group></trans-unit> | 10200 | </trans-unit> |
10112 | <trans-unit id="8639315630141911544" datatype="html"> | 10201 | <trans-unit id="8639315630141911544" datatype="html"> |
10113 | <source>Account <x id="PH"/> unmuted by your instance.</source> | 10202 | <source>Account <x id="PH"/> unmuted by your instance.</source> |
10114 | <target>أُلغي كتم حساب <x id="PH"/> بواسطة المثيل.</target> | 10203 | <target>أُلغي كتم حساب <x id="PH"/> بواسطة المثيل.</target> |
10115 | 10204 | <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> | |
10116 | <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> | 10205 | </trans-unit> |
10117 | <trans-unit id="6549061957433635758" datatype="html"> | 10206 | <trans-unit id="6549061957433635758" datatype="html"> |
10118 | <source>Process domains</source> | 10207 | <source>Process domains</source> |
10119 | <target>اسماء نطاق الاجراء</target> | 10208 | <target>اسماء نطاق الاجراء</target> |
@@ -10137,9 +10226,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10137 | <trans-unit id="7246356397085094208" datatype="html"> | 10226 | <trans-unit id="7246356397085094208" datatype="html"> |
10138 | <source>Instance <x id="PH"/> unmuted.</source> | 10227 | <source>Instance <x id="PH"/> unmuted.</source> |
10139 | <target>أُلغي كتم مثيل <x id="PH"/>.</target> | 10228 | <target>أُلغي كتم مثيل <x id="PH"/>.</target> |
10140 | 10229 | <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> | |
10141 | 10230 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">159</context></context-group> | |
10142 | <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">159</context></context-group></trans-unit> | 10231 | </trans-unit> |
10143 | <trans-unit id="3371601176452094961" datatype="html"> | 10232 | <trans-unit id="3371601176452094961" datatype="html"> |
10144 | <source>Instance <x id="PH"/> unmuted by your instance.</source> | 10233 | <source>Instance <x id="PH"/> unmuted by your instance.</source> |
10145 | <target>أُلغي كتم مثيل <x id="PH"/> بواسطة مثيلك.</target> | 10234 | <target>أُلغي كتم مثيل <x id="PH"/> بواسطة مثيلك.</target> |
@@ -10148,9 +10237,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10148 | <trans-unit id="1598375456114200087" datatype="html"> | 10237 | <trans-unit id="1598375456114200087" datatype="html"> |
10149 | <source>Instance <x id="PH"/> muted.</source> | 10238 | <source>Instance <x id="PH"/> muted.</source> |
10150 | <target>كُتم مثيل <x id="PH"/>.</target> | 10239 | <target>كُتم مثيل <x id="PH"/>.</target> |
10151 | 10240 | <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> | |
10152 | 10241 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">145</context></context-group> | |
10153 | <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">145</context></context-group></trans-unit> | 10242 | </trans-unit> |
10154 | <trans-unit id="3096398988891996621" datatype="html"> | 10243 | <trans-unit id="3096398988891996621" datatype="html"> |
10155 | <source>Instance <x id="PH"/> muted by your instance.</source> | 10244 | <source>Instance <x id="PH"/> muted by your instance.</source> |
10156 | <target>كُتم مثيل <x id="PH"/> بواسطة مثيلك.</target> | 10245 | <target>كُتم مثيل <x id="PH"/> بواسطة مثيلك.</target> |
@@ -10184,19 +10273,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10184 | <trans-unit id="6301381219225831298" datatype="html"> | 10273 | <trans-unit id="6301381219225831298" datatype="html"> |
10185 | <source>User <x id="PH"/> deleted.</source> | 10274 | <source>User <x id="PH"/> deleted.</source> |
10186 | <target>حُذف المستخدم <x id="PH"/>.</target> | 10275 | <target>حُذف المستخدم <x id="PH"/>.</target> |
10187 | 10276 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">93</context></context-group> | |
10188 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">93</context></context-group></trans-unit> | 10277 | </trans-unit> |
10189 | <trans-unit id="3896582359861826661" datatype="html"> | 10278 | <trans-unit id="3896582359861826661" datatype="html"> |
10190 | <source>User <x id="PH"/> email set as verified</source> | 10279 | <source>User <x id="PH"/> email set as verified</source> |
10191 | <target>عُين بريد المستخدم <x id="PH"/> كمتحقق منه</target> | 10280 | <target>عُين بريد المستخدم <x id="PH"/> كمتحقق منه</target> |
10192 | 10281 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">105</context></context-group> | |
10193 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">105</context></context-group></trans-unit> | 10282 | </trans-unit> |
10194 | <trans-unit id="8150022485860412528" datatype="html"> | 10283 | <trans-unit id="8150022485860412528" datatype="html"> |
10195 | <source>Account <x id="PH"/> muted.</source> | 10284 | <source>Account <x id="PH"/> muted.</source> |
10196 | <target>كُتم حساب <x id="PH"/>.</target> | 10285 | <target>كُتم حساب <x id="PH"/>.</target> |
10197 | 10286 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">117</context></context-group> | |
10198 | 10287 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">240</context></context-group> | |
10199 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">117</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">240</context></context-group></trans-unit> | 10288 | </trans-unit> |
10200 | <trans-unit id="1598375456114200087" datatype="html"> | 10289 | <trans-unit id="1598375456114200087" datatype="html"> |
10201 | <source>Instance <x id="PH"/> muted. </source> | 10290 | <source>Instance <x id="PH"/> muted. </source> |
10202 | <target>كُتم مثيل <x id="PH"/>. </target> | 10291 | <target>كُتم مثيل <x id="PH"/>. </target> |
@@ -10208,158 +10297,158 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10208 | <trans-unit id="3085641638748358969" datatype="html"> | 10297 | <trans-unit id="3085641638748358969" datatype="html"> |
10209 | <source>Account <x id="PH"/> unmuted by the instance.</source> | 10298 | <source>Account <x id="PH"/> unmuted by the instance.</source> |
10210 | <target>أُلغي كتم حساب <x id="PH"/> بواسطة المثيل.</target> | 10299 | <target>أُلغي كتم حساب <x id="PH"/> بواسطة المثيل.</target> |
10211 | 10300 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">187</context></context-group> | |
10212 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">187</context></context-group></trans-unit> | 10301 | </trans-unit> |
10213 | <trans-unit id="4991892477258601737" datatype="html"> | 10302 | <trans-unit id="4991892477258601737" datatype="html"> |
10214 | <source>Instance <x id="PH"/> muted by the instance.</source> | 10303 | <source>Instance <x id="PH"/> muted by the instance.</source> |
10215 | <target>كُتم مثيل <x id="PH"/> بواسطة المثيل.</target> | 10304 | <target>كُتم مثيل <x id="PH"/> بواسطة المثيل.</target> |
10216 | 10305 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">201</context></context-group> | |
10217 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">201</context></context-group></trans-unit> | 10306 | </trans-unit> |
10218 | <trans-unit id="4379430340167561220" datatype="html"> | 10307 | <trans-unit id="4379430340167561220" datatype="html"> |
10219 | <source>Instance <x id="PH"/> unmuted by the instance.</source> | 10308 | <source>Instance <x id="PH"/> unmuted by the instance.</source> |
10220 | <target>أُلغي كتم مثيل <x id="PH"/> بواسطة المثيل.</target> | 10309 | <target>أُلغي كتم مثيل <x id="PH"/> بواسطة المثيل.</target> |
10221 | 10310 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">215</context></context-group> | |
10222 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">215</context></context-group></trans-unit> | 10311 | </trans-unit> |
10223 | <trans-unit id="8173437618471379044" datatype="html"> | 10312 | <trans-unit id="8173437618471379044" datatype="html"> |
10224 | <source>Are you sure you want to remove all the comments of this account?</source> | 10313 | <source>Are you sure you want to remove all the comments of this account?</source> |
10225 | <target>هل أنت متأكد من أنك تريد إزالة جميع التعليقات هذا الحساب؟</target> | 10314 | <target>هل أنت متأكد من أنك تريد إزالة جميع التعليقات هذا الحساب؟</target> |
10226 | 10315 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">226</context></context-group> | |
10227 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">226</context></context-group></trans-unit> | 10316 | </trans-unit> |
10228 | <trans-unit id="6315346579373254461" datatype="html"> | 10317 | <trans-unit id="6315346579373254461" datatype="html"> |
10229 | <source>Delete account comments</source> | 10318 | <source>Delete account comments</source> |
10230 | <target>احذف تعليقات الحساب</target> | 10319 | <target>احذف تعليقات الحساب</target> |
10231 | 10320 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">227</context></context-group> | |
10232 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">227</context></context-group></trans-unit> | 10321 | </trans-unit> |
10233 | <trans-unit id="8559170154828316298" datatype="html"> | 10322 | <trans-unit id="8559170154828316298" datatype="html"> |
10234 | <source>Will remove comments of this account (may take several minutes).</source> | 10323 | <source>Will remove comments of this account (may take several minutes).</source> |
10235 | <target>ستزيل التعليقات من هذا الحساب (قد تستغرق عدة دقائق).</target> | 10324 | <target>ستزيل التعليقات من هذا الحساب (قد تستغرق عدة دقائق).</target> |
10236 | 10325 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">233</context></context-group> | |
10237 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">233</context></context-group></trans-unit> | 10326 | </trans-unit> |
10238 | <trans-unit id="7187838764371214919" datatype="html"> | 10327 | <trans-unit id="7187838764371214919" datatype="html"> |
10239 | <source>Edit user</source> | 10328 | <source>Edit user</source> |
10240 | <target>حرر المستخدم</target> | 10329 | <target>حرر المستخدم</target> |
10241 | 10330 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">261</context></context-group> | |
10242 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">261</context></context-group></trans-unit> | 10331 | </trans-unit> |
10243 | <trans-unit id="4728427543536046034" datatype="html"> | 10332 | <trans-unit id="4728427543536046034" datatype="html"> |
10244 | <source>Change quota, role, and more.</source> | 10333 | <source>Change quota, role, and more.</source> |
10245 | <target>غيّر الحصة والدور والمزيد.</target> | 10334 | <target>غيّر الحصة والدور والمزيد.</target> |
10246 | 10335 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">262</context></context-group> | |
10247 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">262</context></context-group></trans-unit> | 10336 | </trans-unit> |
10248 | <trans-unit id="7913022656086109932" datatype="html"> | 10337 | <trans-unit id="7913022656086109932" datatype="html"> |
10249 | <source>Delete user</source> | 10338 | <source>Delete user</source> |
10250 | <target>احذف المستخدم</target> | 10339 | <target>احذف المستخدم</target> |
10251 | 10340 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">266</context></context-group> | |
10252 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">266</context></context-group></trans-unit> | 10341 | </trans-unit> |
10253 | <trans-unit id="7577876364431026966" datatype="html"> | 10342 | <trans-unit id="7577876364431026966" datatype="html"> |
10254 | <source>Unban user</source> | 10343 | <source>Unban user</source> |
10255 | <target>ألغ حظر المستخدم</target> | 10344 | <target>ألغ حظر المستخدم</target> |
10256 | 10345 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">277</context></context-group> | |
10257 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">277</context></context-group></trans-unit> | 10346 | </trans-unit> |
10258 | <trans-unit id="3508163549683020253" datatype="html"> | 10347 | <trans-unit id="3508163549683020253" datatype="html"> |
10259 | <source>Allow the user to login and create videos/comments again</source> | 10348 | <source>Allow the user to login and create videos/comments again</source> |
10260 | <target>اسمح للمستخدم بتسجيل الدخول وإنشاء مقاطع فيديو / تعليقات مرة أخرى</target> | 10349 | <target>اسمح للمستخدم بتسجيل الدخول وإنشاء مقاطع فيديو / تعليقات مرة أخرى</target> |
10261 | 10350 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">278</context></context-group> | |
10262 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">278</context></context-group></trans-unit> | 10351 | </trans-unit> |
10263 | <trans-unit id="1888272455383898478" datatype="html"> | 10352 | <trans-unit id="1888272455383898478" datatype="html"> |
10264 | <source>Mute this account</source> | 10353 | <source>Mute this account</source> |
10265 | <target>أكتم هذا الحساب</target> | 10354 | <target>أكتم هذا الحساب</target> |
10266 | 10355 | <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> | |
10267 | <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></trans-unit> | 10356 | </trans-unit> |
10268 | <trans-unit id="2365286519320230773" datatype="html"> | 10357 | <trans-unit id="2365286519320230773" datatype="html"> |
10269 | <source>Hide any content from that user from you.</source> | 10358 | <source>Hide any content from that user from you.</source> |
10270 | <target state="new">Hide any content from that user from you.</target> | 10359 | <target state="new">Hide any content from that user from you.</target> |
10271 | 10360 | <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> | |
10272 | <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> | 10361 | </trans-unit> |
10273 | <trans-unit id="4043508901590508211" datatype="html"> | 10362 | <trans-unit id="4043508901590508211" datatype="html"> |
10274 | <source>Unmute this account</source> | 10363 | <source>Unmute this account</source> |
10275 | <target>ألغ الكتم عن هذا الحساب</target> | 10364 | <target>ألغ الكتم عن هذا الحساب</target> |
10276 | 10365 | <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> | |
10277 | <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></trans-unit> | 10366 | </trans-unit> |
10278 | <trans-unit id="2843593344827160627" datatype="html"> | 10367 | <trans-unit id="2843593344827160627" datatype="html"> |
10279 | <source>Show back content from that user for you.</source> | 10368 | <source>Show back content from that user for you.</source> |
10280 | <target>أعد عرض محتوى هذا المستخدم .</target> | 10369 | <target>أعد عرض محتوى هذا المستخدم .</target> |
10281 | 10370 | <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> | |
10282 | <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> | 10371 | </trans-unit> |
10283 | <trans-unit id="6198109035280957164" datatype="html"> | 10372 | <trans-unit id="6198109035280957164" datatype="html"> |
10284 | <source>Mute the instance</source> | 10373 | <source>Mute the instance</source> |
10285 | <target>أكتم مثيل الخادم</target> | 10374 | <target>أكتم مثيل الخادم</target> |
10286 | 10375 | <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> | |
10287 | <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></trans-unit> | 10376 | </trans-unit> |
10288 | <trans-unit id="4537735378779630558" datatype="html"> | 10377 | <trans-unit id="4537735378779630558" datatype="html"> |
10289 | <source>Hide any content from that instance for you.</source> | 10378 | <source>Hide any content from that instance for you.</source> |
10290 | <target>إخف عنك أي محتوى من هذا المنصة.</target> | 10379 | <target>إخف عنك أي محتوى من هذا المنصة.</target> |
10291 | 10380 | <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> | |
10292 | <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> | 10381 | </trans-unit> |
10293 | <trans-unit id="6247487021683085858" datatype="html"> | 10382 | <trans-unit id="6247487021683085858" datatype="html"> |
10294 | <source>Unmute the instance</source> | 10383 | <source>Unmute the instance</source> |
10295 | <target>ألغ الكتم عن مثيل الخادم</target> | 10384 | <target>ألغ الكتم عن مثيل الخادم</target> |
10296 | 10385 | <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> | |
10297 | <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> | 10386 | </trans-unit> |
10298 | <trans-unit id="4024846984475742259" datatype="html"> | 10387 | <trans-unit id="4024846984475742259" datatype="html"> |
10299 | <source>Show back content from that instance for you.</source> | 10388 | <source>Show back content from that instance for you.</source> |
10300 | <target>أعد عرض محتوى هذا المثيل .</target> | 10389 | <target>أعد عرض محتوى هذا المثيل .</target> |
10301 | 10390 | <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> | |
10302 | <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> | 10391 | </trans-unit> |
10303 | <trans-unit id="3108200185023875257" datatype="html"> | 10392 | <trans-unit id="3108200185023875257" datatype="html"> |
10304 | <source>Remove comments from your videos</source> | 10393 | <source>Remove comments from your videos</source> |
10305 | <target>أزل التعليقات مِن فيديوهاتك</target> | 10394 | <target>أزل التعليقات مِن فيديوهاتك</target> |
10306 | 10395 | <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> | |
10307 | <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> | 10396 | </trans-unit> |
10308 | <trans-unit id="4810478487244286994" datatype="html"> | 10397 | <trans-unit id="4810478487244286994" datatype="html"> |
10309 | <source>Remove comments made by this account on your videos.</source> | 10398 | <source>Remove comments made by this account on your videos.</source> |
10310 | <target state="new">Remove comments made by this account on your videos.</target> | 10399 | <target state="new">Remove comments made by this account on your videos.</target> |
10311 | 10400 | <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> | |
10312 | <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> | 10401 | </trans-unit> |
10313 | <trans-unit id="81452583525574033" datatype="html"> | 10402 | <trans-unit id="81452583525574033" datatype="html"> |
10314 | <source>Mute this account by your instance</source> | 10403 | <source>Mute this account by your instance</source> |
10315 | <target>أكتم هذا الحساب باستخدام مثيلك</target> | 10404 | <target>أكتم هذا الحساب باستخدام مثيلك</target> |
10316 | 10405 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">331</context></context-group> | |
10317 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">331</context></context-group></trans-unit> | 10406 | </trans-unit> |
10318 | <trans-unit id="2077144178298031252" datatype="html"> | 10407 | <trans-unit id="2077144178298031252" datatype="html"> |
10319 | <source>Hide any content from that user from you, your instance and its users.</source> | 10408 | <source>Hide any content from that user from you, your instance and its users.</source> |
10320 | <target state="new">Hide any content from that user from you, your instance and its users.</target> | 10409 | <target state="new">Hide any content from that user from you, your instance and its users.</target> |
10321 | 10410 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">332</context></context-group> | |
10322 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">332</context></context-group></trans-unit> | 10411 | </trans-unit> |
10323 | <trans-unit id="884942914962310163" datatype="html"> | 10412 | <trans-unit id="884942914962310163" datatype="html"> |
10324 | <source>Unmute this account by your instance</source> | 10413 | <source>Unmute this account by your instance</source> |
10325 | <target>ألغ كتم هذا الحساب باستخدام مثيلك</target> | 10414 | <target>ألغ كتم هذا الحساب باستخدام مثيلك</target> |
10326 | 10415 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">337</context></context-group> | |
10327 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">337</context></context-group></trans-unit> | 10416 | </trans-unit> |
10328 | <trans-unit id="7675070596643104983" datatype="html"> | 10417 | <trans-unit id="7675070596643104983" datatype="html"> |
10329 | <source>Show this user's content to the users of this instance again.</source> | 10418 | <source>Show this user's content to the users of this instance again.</source> |
10330 | <target state="new">Show this user's content to the users of this instance again.</target> | 10419 | <target state="new">Show this user's content to the users of this instance again.</target> |
10331 | 10420 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">338</context></context-group> | |
10332 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">338</context></context-group></trans-unit> | 10421 | </trans-unit> |
10333 | <trans-unit id="3191211873505538654" datatype="html"> | 10422 | <trans-unit id="3191211873505538654" datatype="html"> |
10334 | <source>Mute the instance by your instance</source> | 10423 | <source>Mute the instance by your instance</source> |
10335 | <target>أكتم المثيل باستخدام مثيلك</target> | 10424 | <target>أكتم المثيل باستخدام مثيلك</target> |
10336 | 10425 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">349</context></context-group> | |
10337 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> | 10426 | </trans-unit> |
10338 | <trans-unit id="525915681688649453" datatype="html"> | 10427 | <trans-unit id="525915681688649453" datatype="html"> |
10339 | <source>Hide any content from that instance from you, your instance and its users.</source> | 10428 | <source>Hide any content from that instance from you, your instance and its users.</source> |
10340 | <target state="new">Hide any content from that instance from you, your instance and its users.</target> | 10429 | <target state="new">Hide any content from that instance from you, your instance and its users.</target> |
10341 | 10430 | <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> | |
10342 | <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> | 10431 | </trans-unit> |
10343 | <trans-unit id="5325628963747139770" datatype="html"> | 10432 | <trans-unit id="5325628963747139770" datatype="html"> |
10344 | <source>Unmute the instance by your instance</source> | 10433 | <source>Unmute the instance by your instance</source> |
10345 | <target>ألغ كتم المثيل باستخدام مثيلك</target> | 10434 | <target>ألغ كتم المثيل باستخدام مثيلك</target> |
10346 | 10435 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">355</context></context-group> | |
10347 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">355</context></context-group></trans-unit> | 10436 | </trans-unit> |
10348 | <trans-unit id="758471033841077314" datatype="html"> | 10437 | <trans-unit id="758471033841077314" datatype="html"> |
10349 | <source>Show back content from that instance for you, your instance and its users.</source> | 10438 | <source>Show back content from that instance for you, your instance and its users.</source> |
10350 | <target>أعد عرض محتوى هذا المثيل ، لك و لمثيلك وجميع مستخدميه.</target> | 10439 | <target>أعد عرض محتوى هذا المثيل ، لك و لمثيلك وجميع مستخدميه.</target> |
10351 | 10440 | <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> | |
10352 | <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> | 10441 | </trans-unit> |
10353 | <trans-unit id="3785095284194008197" datatype="html"> | 10442 | <trans-unit id="3785095284194008197" datatype="html"> |
10354 | <source>Remove comments from your instance</source> | 10443 | <source>Remove comments from your instance</source> |
10355 | <target>أزل التعليقات من مثيلك</target> | 10444 | <target>أزل التعليقات من مثيلك</target> |
10356 | 10445 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">366</context></context-group> | |
10357 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">366</context></context-group></trans-unit> | 10446 | </trans-unit> |
10358 | <trans-unit id="4809327075591089709" datatype="html"> | 10447 | <trans-unit id="4809327075591089709" datatype="html"> |
10359 | <source>Remove comments made by this account from your instance.</source> | 10448 | <source>Remove comments made by this account from your instance.</source> |
10360 | <target state="new">Remove comments made by this account from your instance.</target> | 10449 | <target state="new">Remove comments made by this account from your instance.</target> |
10361 | 10450 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">367</context></context-group> | |
10362 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">367</context></context-group></trans-unit> | 10451 | </trans-unit> |
10363 | <trans-unit id="6746743143272021955" datatype="html"> | 10452 | <trans-unit id="6746743143272021955" datatype="html"> |
10364 | <source>Violent or repulsive</source> | 10453 | <source>Violent or repulsive</source> |
10365 | <target>عنيف أو بغيض</target> | 10454 | <target>عنيف أو بغيض</target> |
@@ -10388,38 +10477,38 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10388 | <trans-unit id="6374940465448453212" datatype="html"> | 10477 | <trans-unit id="6374940465448453212" datatype="html"> |
10389 | <source>Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</source> | 10478 | <source>Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</source> |
10390 | <target>يحتوي على تسويق أو إزعاج أو أخبار مضللة عن قصد أو صورة مصغرة/نص/وسم مضلل. يرجى تقديم مصادر موثوقة للإبلاغ عن الخدع.</target> | 10479 | <target>يحتوي على تسويق أو إزعاج أو أخبار مضللة عن قصد أو صورة مصغرة/نص/وسم مضلل. يرجى تقديم مصادر موثوقة للإبلاغ عن الخدع.</target> |
10391 | 10480 | <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> | |
10392 | <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> | 10481 | </trans-unit> |
10393 | <trans-unit id="7401289443263903223" datatype="html"> | 10482 | <trans-unit id="7401289443263903223" datatype="html"> |
10394 | <source>Privacy breach or doxxing</source> | 10483 | <source>Privacy breach or doxxing</source> |
10395 | <target>انتهاك الخصوصية أو كشف للخصوصيات</target> | 10484 | <target>انتهاك الخصوصية أو كشف للخصوصيات</target> |
10396 | 10485 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">155</context></context-group> | |
10397 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">155</context></context-group></trans-unit> | 10486 | </trans-unit> |
10398 | <trans-unit id="8363008638081993167" datatype="html"> | 10487 | <trans-unit id="8363008638081993167" datatype="html"> |
10399 | <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> | 10488 | <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> |
10400 | <target>يحتوي على معلومات شخصية يمكن استخدامها لتتبع شخص ما أو تحديد هويته أو الاتصال به أو انتحال شخصيته (مثل الاسم أو العنوان أو رقم الهاتف أو البريد الإلكتروني أو تفاصيل بطاقة الائتمان).</target> | 10489 | <target>يحتوي على معلومات شخصية يمكن استخدامها لتتبع شخص ما أو تحديد هويته أو الاتصال به أو انتحال شخصيته (مثل الاسم أو العنوان أو رقم الهاتف أو البريد الإلكتروني أو تفاصيل بطاقة الائتمان).</target> |
10401 | 10490 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">157</context></context-group> | |
10402 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">157</context></context-group></trans-unit> | 10491 | </trans-unit> |
10403 | <trans-unit id="380450014369168564" datatype="html"> | 10492 | <trans-unit id="380450014369168564" datatype="html"> |
10404 | <source>Infringes your copyright wrt. the regional laws with which the server must comply.</source> | 10493 | <source>Infringes your copyright wrt. the regional laws with which the server must comply.</source> |
10405 | <target state="translated">ينتهك حقوق النشر خاصتك. أو القوانين الاقليمية المغروضة على الخادم.</target> | 10494 | <target state="translated">ينتهك حقوق النشر خاصتك. أو القوانين الاقليمية المغروضة على الخادم.</target> |
10406 | 10495 | <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> | |
10407 | <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> | 10496 | </trans-unit> |
10408 | <trans-unit id="1378933246324202613" datatype="html"> | 10497 | <trans-unit id="1378933246324202613" datatype="html"> |
10409 | <source>Breaks server rules</source> | 10498 | <source>Breaks server rules</source> |
10410 | <target>يكسر قواعد الخادم</target> | 10499 | <target>يكسر قواعد الخادم</target> |
10411 | 10500 | <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> | |
10412 | <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> | 10501 | </trans-unit> |
10413 | <trans-unit id="7930601470861156366" datatype="html"> | 10502 | <trans-unit id="7930601470861156366" datatype="html"> |
10414 | <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> | 10503 | <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> |
10415 | <target>أي شيء غير مذكور أعلاه يخالف شروط الخدمة أو قواعد السلوك أو القواعد العامة المعمول بها على الخادم.</target> | 10504 | <target>أي شيء غير مذكور أعلاه يخالف شروط الخدمة أو قواعد السلوك أو القواعد العامة المعمول بها على الخادم.</target> |
10416 | 10505 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">168</context></context-group> | |
10417 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">168</context></context-group></trans-unit> | 10506 | </trans-unit> |
10418 | <trans-unit id="8700771664729810984" datatype="html"> | 10507 | <trans-unit id="8700771664729810984" datatype="html"> |
10419 | <source>The above can only be seen in thumbnails.</source> | 10508 | <source>The above can only be seen in thumbnails.</source> |
10420 | <target>يمكن رؤية ما سبق فقط في الصور المصغرة.</target> | 10509 | <target>يمكن رؤية ما سبق فقط في الصور المصغرة.</target> |
10421 | 10510 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">177</context></context-group> | |
10422 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">177</context></context-group></trans-unit> | 10511 | </trans-unit> |
10423 | <trans-unit id="2602773901491715295" datatype="html"> | 10512 | <trans-unit id="2602773901491715295" datatype="html"> |
10424 | <source>Captions</source> | 10513 | <source>Captions</source> |
10425 | <target state="translated">تسميات توضيحية</target> | 10514 | <target state="translated">تسميات توضيحية</target> |
@@ -10429,13 +10518,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10429 | <trans-unit id="5779804235244672536" datatype="html"> | 10518 | <trans-unit id="5779804235244672536" datatype="html"> |
10430 | <source>The above can only be seen in captions (please describe which).</source> | 10519 | <source>The above can only be seen in captions (please describe which).</source> |
10431 | <target>لا يمكن رؤية ما ورد أعلاه إلا في التسميات التوضيحية (يرجى وصفها).</target> | 10520 | <target>لا يمكن رؤية ما ورد أعلاه إلا في التسميات التوضيحية (يرجى وصفها).</target> |
10432 | 10521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">182</context></context-group> | |
10433 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> | 10522 | </trans-unit> |
10434 | <trans-unit id="1472171759957681533" datatype="html"> | 10523 | <trans-unit id="1472171759957681533" datatype="html"> |
10435 | <source>Video reported.</source> | 10524 | <source>Video reported.</source> |
10436 | <target>فيديو مبلغ عنه.</target> | 10525 | <target>فيديو مبلغ عنه.</target> |
10437 | 10526 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.ts</context><context context-type="linenumber">113</context></context-group> | |
10438 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.ts</context><context context-type="linenumber">113</context></context-group></trans-unit> | 10527 | </trans-unit> |
10439 | <trans-unit id="1795705931707209785" datatype="html"> | 10528 | <trans-unit id="1795705931707209785" datatype="html"> |
10440 | <source>Add to watch later</source> | 10529 | <source>Add to watch later</source> |
10441 | <target>أضف إلى المشاهدة لاحقًا</target> | 10530 | <target>أضف إلى المشاهدة لاحقًا</target> |
@@ -10454,29 +10543,29 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10454 | <trans-unit id="4776289814033837037" datatype="html"> | 10543 | <trans-unit id="4776289814033837037" datatype="html"> |
10455 | <source>Interface settings updated.</source> | 10544 | <source>Interface settings updated.</source> |
10456 | <target>حُدثت إعدادات الواجهة.</target> | 10545 | <target>حُدثت إعدادات الواجهة.</target> |
10457 | 10546 | <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> | |
10458 | 10547 | <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> | |
10459 | <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> | 10548 | </trans-unit> |
10460 | <trans-unit id="1233062525939746039" datatype="html"> | 10549 | <trans-unit id="1233062525939746039" datatype="html"> |
10461 | <source>Unknown language</source> | 10550 | <source>Unknown language</source> |
10462 | <target>لغة غير معروفة</target> | 10551 | <target>لغة غير معروفة</target> |
10463 | 10552 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">41</context></context-group> | |
10464 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit> | 10553 | </trans-unit> |
10465 | <trans-unit id="3761504852202418603" datatype="html"> | 10554 | <trans-unit id="3761504852202418603" datatype="html"> |
10466 | <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source> | 10555 | <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source> |
10467 | <target state="translated">فُعّلت كثير من اللغات. فعّل كل اللغات أو 20 لغة على الأكثر.</target> | 10556 | <target state="translated">فُعّلت كثير من اللغات. فعّل كل اللغات أو 20 لغة على الأكثر.</target> |
10468 | 10557 | <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> | |
10469 | <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> | 10558 | </trans-unit> |
10470 | <trans-unit id="3960396487495291449" datatype="html"> | 10559 | <trans-unit id="3960396487495291449" datatype="html"> |
10471 | <source>Video settings updated.</source> | 10560 | <source>Video settings updated.</source> |
10472 | <target>حُدثت إعدادات الفيديو.</target> | 10561 | <target>حُدثت إعدادات الفيديو.</target> |
10473 | 10562 | <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> | |
10474 | <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> | 10563 | </trans-unit> |
10475 | <trans-unit id="3326446048041727269" datatype="html"> | 10564 | <trans-unit id="3326446048041727269" datatype="html"> |
10476 | <source>Display/Video settings updated.</source> | 10565 | <source>Display/Video settings updated.</source> |
10477 | <target>حُدثت إعدادات العرض / الفيديو.</target> | 10566 | <target>حُدثت إعدادات العرض / الفيديو.</target> |
10478 | 10567 | <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> | |
10479 | <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> | 10568 | </trans-unit> |
10480 | <trans-unit id="5927402622550505067" datatype="html"> | 10569 | <trans-unit id="5927402622550505067" datatype="html"> |
10481 | <source>Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</source> | 10570 | <source>Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</source> |
10482 | <target>اشتركت في كل قنوات <x id="PH"/>. سيتم إشعارك بالفيديوهات الجديدة.</target> | 10571 | <target>اشتركت في كل قنوات <x id="PH"/>. سيتم إشعارك بالفيديوهات الجديدة.</target> |
@@ -10536,9 +10625,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10536 | <trans-unit id="7672331870004528654" datatype="html"> | 10625 | <trans-unit id="7672331870004528654" datatype="html"> |
10537 | <source>Display live information</source> | 10626 | <source>Display live information</source> |
10538 | <target state="new">Display live information</target> | 10627 | <target state="new">Display live information</target> |
10539 | 10628 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">174</context></context-group> | |
10540 | 10629 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">278</context></context-group> | |
10541 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">174</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">278</context></context-group></trans-unit> | 10630 | </trans-unit> |
10542 | <trans-unit id="4021752662928002901" datatype="html"> | 10631 | <trans-unit id="4021752662928002901" datatype="html"> |
10543 | <source>Update</source> | 10632 | <source>Update</source> |
10544 | <target state="translated">حدّث</target> | 10633 | <target state="translated">حدّث</target> |
@@ -10574,178 +10663,210 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10574 | <trans-unit id="4814285799071780083" datatype="html"> | 10663 | <trans-unit id="4814285799071780083" datatype="html"> |
10575 | <source>Remove</source> | 10664 | <source>Remove</source> |
10576 | <target state="translated">أزل</target> | 10665 | <target state="translated">أزل</target> |
10577 | 10666 | <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> | |
10578 | <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> | 10667 | </trans-unit> |
10579 | <trans-unit id="6871668720687277843" datatype="html"> | 10668 | <trans-unit id="6871668720687277843" datatype="html"> |
10580 | <source>Remove & re-draft</source> | 10669 | <source>Remove & re-draft</source> |
10581 | <target state="translated">أزل وأعد الصياغة</target> | 10670 | <target state="translated">أزل وأعد الصياغة</target> |
10582 | 10671 | <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> | |
10583 | <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> | 10672 | </trans-unit> |
10584 | <trans-unit id="992317512448454409" datatype="html"> | 10673 | <trans-unit id="992317512448454409" datatype="html"> |
10585 | <source>{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</source> | 10674 | <source>{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</source> |
10586 | <target state="new">{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</target> | 10675 | <target state="new">{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</target> |
10587 | 10676 | <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> | |
10588 | <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> | 10677 | </trans-unit> |
10589 | <trans-unit id="346270517625845962" datatype="html"> | 10678 | <trans-unit id="346270517625845962" datatype="html"> |
10590 | <source>Encoder</source> | 10679 | <source>Encoder</source> |
10591 | <target>اداة ترميز</target> | 10680 | <target>اداة ترميز</target> |
10592 | 10681 | <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> | |
10593 | <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> | 10682 | </trans-unit> |
10594 | <trans-unit id="2331557444464201331" datatype="html"> | 10683 | <trans-unit id="2331557444464201331" datatype="html"> |
10595 | <source>Format name</source> | 10684 | <source>Format name</source> |
10596 | <target>اسم التنسيق</target> | 10685 | <target>اسم التنسيق</target> |
10597 | 10686 | <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> | |
10598 | <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> | 10687 | </trans-unit> |
10599 | <trans-unit id="45739481977493163" datatype="html"> | 10688 | <trans-unit id="45739481977493163" datatype="html"> |
10600 | <source>Size</source> | 10689 | <source>Size</source> |
10601 | <target>حجم</target> | 10690 | <target>حجم</target> |
10602 | 10691 | <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> | |
10603 | <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> | 10692 | </trans-unit> |
10604 | <trans-unit id="7742520815129539114" datatype="html"> | 10693 | <trans-unit id="7742520815129539114" datatype="html"> |
10605 | <source>Bitrate</source> | 10694 | <source>Bitrate</source> |
10606 | <target>معدل البت</target> | 10695 | <target>معدل البت</target> |
10607 | 10696 | <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> | |
10608 | 10697 | <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> | |
10609 | <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> | 10698 | </trans-unit> |
10610 | <trans-unit id="4094960161662677662" datatype="html"> | 10699 | <trans-unit id="4094960161662677662" datatype="html"> |
10611 | <source>Codec</source> | 10700 | <source>Codec</source> |
10612 | <target>ترميز</target> | 10701 | <target>ترميز</target> |
10613 | 10702 | <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> | |
10614 | <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> | 10703 | </trans-unit> |
10615 | <trans-unit id="4915431133669985304" datatype="html"> | 10704 | <trans-unit id="4915431133669985304" datatype="html"> |
10616 | <source>Profile</source> | 10705 | <source>Profile</source> |
10617 | <target>الملف الشخصي</target> | 10706 | <target>الملف الشخصي</target> |
10618 | 10707 | <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> | |
10619 | <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> | 10708 | </trans-unit> |
10620 | <trans-unit id="1963136290621768454" datatype="html"> | 10709 | <trans-unit id="1963136290621768454" datatype="html"> |
10621 | <source>Resolution</source> | 10710 | <source>Resolution</source> |
10622 | <target>الدقة</target> | 10711 | <target>الدقة</target> |
10623 | 10712 | <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> | |
10624 | <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> | 10713 | </trans-unit> |
10625 | <trans-unit id="7814358426066520520" datatype="html"> | 10714 | <trans-unit id="7814358426066520520" datatype="html"> |
10626 | <source>Aspect ratio</source> | 10715 | <source>Aspect ratio</source> |
10627 | <target>ابعاد متزنة</target> | 10716 | <target>ابعاد متزنة</target> |
10628 | 10717 | <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> | |
10629 | <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> | 10718 | </trans-unit> |
10630 | <trans-unit id="44862519224794374" datatype="html"> | 10719 | <trans-unit id="44862519224794374" datatype="html"> |
10631 | <source>Average frame rate</source> | 10720 | <source>Average frame rate</source> |
10632 | <target>متوسط معدل الإطارات</target> | 10721 | <target>متوسط معدل الإطارات</target> |
10633 | 10722 | <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> | |
10634 | <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> | 10723 | </trans-unit> |
10635 | <trans-unit id="5053683525387462246" datatype="html"> | 10724 | <trans-unit id="5053683525387462246" datatype="html"> |
10636 | <source>Pixel format</source> | 10725 | <source>Pixel format</source> |
10637 | <target>تنسيق بكسل</target> | 10726 | <target>تنسيق بكسل</target> |
10638 | 10727 | <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> | |
10639 | <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> | 10728 | </trans-unit> |
10640 | <trans-unit id="7858676566953242358" datatype="html"> | 10729 | <trans-unit id="7858676566953242358" datatype="html"> |
10641 | <source>Sample rate</source> | 10730 | <source>Sample rate</source> |
10642 | <target>معدل العينة</target> | 10731 | <target>معدل العينة</target> |
10643 | 10732 | <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> | |
10644 | <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> | 10733 | </trans-unit> |
10645 | <trans-unit id="5403856660543890284" datatype="html"> | 10734 | <trans-unit id="5403856660543890284" datatype="html"> |
10646 | <source>Channel Layout</source> | 10735 | <source>Channel Layout</source> |
10647 | <target>تخطيط القناة</target> | 10736 | <target>تخطيط القناة</target> |
10648 | 10737 | <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> | |
10649 | <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"> | 10738 | </trans-unit> |
10650 | <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 | 10739 | <trans-unit id="6317170736181476800" datatype="html"> |
10651 | >"/></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 | 10740 | <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> |
10652 | >"/></target> | 10741 | <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> |
10653 | <context-group purpose="location"> | 10742 | <context-group purpose="location"> |
10654 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 10743 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
10655 | <context context-type="linenumber">3,7</context> | 10744 | <context context-type="linenumber">3,7</context> |
10656 | </context-group> | 10745 | </context-group> |
10657 | </trans-unit><trans-unit id="1405600824334286337" datatype="html"> | 10746 | </trans-unit> |
10658 | <source>More filters</source><target state="new">More filters</target> | 10747 | <trans-unit id="1405600824334286337" datatype="html"> |
10748 | <source>More filters</source> | ||
10749 | <target state="new">More filters</target> | ||
10659 | <context-group purpose="location"> | 10750 | <context-group purpose="location"> |
10660 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 10751 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
10661 | <context context-type="linenumber">20</context> | 10752 | <context context-type="linenumber">20</context> |
10662 | </context-group> | 10753 | </context-group> |
10663 | </trans-unit><trans-unit id="8867436033163146458" datatype="html"> | 10754 | </trans-unit> |
10664 | <source>Less filters</source><target state="new">Less filters</target> | 10755 | <trans-unit id="8867436033163146458" datatype="html"> |
10756 | <source>Less filters</source> | ||
10757 | <target state="new">Less filters</target> | ||
10665 | <context-group purpose="location"> | 10758 | <context-group purpose="location"> |
10666 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 10759 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
10667 | <context context-type="linenumber">21</context> | 10760 | <context context-type="linenumber">21</context> |
10668 | </context-group> | 10761 | </context-group> |
10669 | </trans-unit><trans-unit id="7028708681117573961" datatype="html"> | 10762 | </trans-unit> |
10670 | <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> | 10763 | <trans-unit id="7028708681117573961" datatype="html"> |
10764 | <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> | ||
10765 | <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> | ||
10671 | <context-group purpose="location"> | 10766 | <context-group purpose="location"> |
10672 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 10767 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
10673 | <context context-type="linenumber">46</context> | 10768 | <context context-type="linenumber">46</context> |
10674 | </context-group> | 10769 | </context-group> |
10675 | </trans-unit><trans-unit id="5691258609562173281" datatype="html"> | 10770 | </trans-unit> |
10676 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"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>"/>"Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 10771 | <trans-unit id="5691258609562173281" datatype="html"> |
10772 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | ||
10773 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
10677 | <context-group purpose="location"> | 10774 | <context-group purpose="location"> |
10678 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 10775 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
10679 | <context context-type="linenumber">48</context> | 10776 | <context context-type="linenumber">48</context> |
10680 | </context-group> | 10777 | </context-group> |
10681 | </trans-unit><trans-unit id="3224510615614621760" datatype="html"> | 10778 | </trans-unit> |
10682 | <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> | 10779 | <trans-unit id="3224510615614621760" datatype="html"> |
10780 | <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> | ||
10781 | <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> | ||
10683 | <context-group purpose="location"> | 10782 | <context-group purpose="location"> |
10684 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 10783 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
10685 | <context context-type="linenumber">49</context> | 10784 | <context context-type="linenumber">49</context> |
10686 | </context-group> | 10785 | </context-group> |
10687 | </trans-unit><trans-unit id="3082811226222076503" datatype="html"> | 10786 | </trans-unit> |
10688 | <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> | 10787 | <trans-unit id="3082811226222076503" datatype="html"> |
10788 | <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> | ||
10789 | <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> | ||
10689 | <context-group purpose="location"> | 10790 | <context-group purpose="location"> |
10690 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 10791 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
10691 | <context context-type="linenumber">50</context> | 10792 | <context context-type="linenumber">50</context> |
10692 | </context-group> | 10793 | </context-group> |
10693 | </trans-unit><trans-unit id="4322133526902910662" datatype="html"> | 10794 | </trans-unit> |
10694 | <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> | 10795 | <trans-unit id="4322133526902910662" datatype="html"> |
10796 | <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> | ||
10797 | <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> | ||
10695 | <context-group purpose="location"> | 10798 | <context-group purpose="location"> |
10696 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 10799 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
10697 | <context context-type="linenumber">51</context> | 10800 | <context context-type="linenumber">51</context> |
10698 | </context-group> | 10801 | </context-group> |
10699 | </trans-unit><trans-unit id="2343321245279384373" datatype="html"> | 10802 | </trans-unit> |
10700 | <source>Languages:</source><target state="new">Languages:</target> | 10803 | <trans-unit id="2343321245279384373" datatype="html"> |
10804 | <source>Languages:</source> | ||
10805 | <target state="new">Languages:</target> | ||
10701 | <context-group purpose="location"> | 10806 | <context-group purpose="location"> |
10702 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 10807 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
10703 | <context context-type="linenumber">59</context> | 10808 | <context context-type="linenumber">59</context> |
10704 | </context-group> | 10809 | </context-group> |
10705 | </trans-unit><trans-unit id="5063779773341398537" datatype="html"> | 10810 | </trans-unit> |
10706 | <source>Sensitive content:</source><target state="new">Sensitive content:</target> | 10811 | <trans-unit id="5063779773341398537" datatype="html"> |
10812 | <source>Sensitive content:</source> | ||
10813 | <target state="new">Sensitive content:</target> | ||
10707 | <context-group purpose="location"> | 10814 | <context-group purpose="location"> |
10708 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 10815 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
10709 | <context context-type="linenumber">66</context> | 10816 | <context context-type="linenumber">66</context> |
10710 | </context-group> | 10817 | </context-group> |
10711 | </trans-unit><trans-unit id="5723033003381016192" datatype="html"> | 10818 | </trans-unit> |
10712 | <source>Scope:</source><target state="new">Scope:</target> | 10819 | <trans-unit id="5723033003381016192" datatype="html"> |
10820 | <source>Scope:</source> | ||
10821 | <target state="new">Scope:</target> | ||
10713 | <context-group purpose="location"> | 10822 | <context-group purpose="location"> |
10714 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 10823 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
10715 | <context context-type="linenumber">81</context> | 10824 | <context context-type="linenumber">81</context> |
10716 | </context-group> | 10825 | </context-group> |
10717 | </trans-unit><trans-unit id="8481241275509347668" datatype="html"> | 10826 | </trans-unit> |
10718 | <source>Local videos (this instance)</source><target state="new">Local videos (this instance)</target> | 10827 | <trans-unit id="8481241275509347668" datatype="html"> |
10828 | <source>Local videos (this instance)</source> | ||
10829 | <target state="new">Local videos (this instance)</target> | ||
10719 | <context-group purpose="location"> | 10830 | <context-group purpose="location"> |
10720 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 10831 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
10721 | <context context-type="linenumber">85</context> | 10832 | <context context-type="linenumber">85</context> |
10722 | </context-group> | 10833 | </context-group> |
10723 | </trans-unit><trans-unit id="8383401711408398806" datatype="html"> | 10834 | </trans-unit> |
10724 | <source>Federated videos (this instance + followed instances)</source><target state="new">Federated videos (this instance + followed instances)</target> | 10835 | <trans-unit id="8383401711408398806" datatype="html"> |
10836 | <source>Federated videos (this instance + followed instances)</source> | ||
10837 | <target state="new">Federated videos (this instance + followed instances)</target> | ||
10725 | <context-group purpose="location"> | 10838 | <context-group purpose="location"> |
10726 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 10839 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
10727 | <context context-type="linenumber">90</context> | 10840 | <context context-type="linenumber">90</context> |
10728 | </context-group> | 10841 | </context-group> |
10729 | </trans-unit><trans-unit id="2736556170366900089" datatype="html"> | 10842 | </trans-unit> |
10730 | <source>Type:</source><target state="new">Type:</target> | 10843 | <trans-unit id="2736556170366900089" datatype="html"> |
10844 | <source>Type:</source> | ||
10845 | <target state="new">Type:</target> | ||
10731 | <context-group purpose="location"> | 10846 | <context-group purpose="location"> |
10732 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 10847 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
10733 | <context context-type="linenumber">95</context> | 10848 | <context context-type="linenumber">95</context> |
10734 | </context-group> | 10849 | </context-group> |
10735 | </trans-unit><trans-unit id="1744425032255703211" datatype="html"> | 10850 | </trans-unit> |
10736 | <source>VOD & Live videos</source><target state="new">VOD & Live videos</target> | 10851 | <trans-unit id="1744425032255703211" datatype="html"> |
10852 | <source>VOD & Live videos</source> | ||
10853 | <target state="new">VOD & Live videos</target> | ||
10737 | <context-group purpose="location"> | 10854 | <context-group purpose="location"> |
10738 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 10855 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
10739 | <context context-type="linenumber">99</context> | 10856 | <context context-type="linenumber">99</context> |
10740 | </context-group> | 10857 | </context-group> |
10741 | </trans-unit><trans-unit id="1370537846415473089" datatype="html"> | 10858 | </trans-unit> |
10742 | <source>Categories:</source><target state="new">Categories:</target> | 10859 | <trans-unit id="1370537846415473089" datatype="html"> |
10860 | <source>Categories:</source> | ||
10861 | <target state="new">Categories:</target> | ||
10743 | <context-group purpose="location"> | 10862 | <context-group purpose="location"> |
10744 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 10863 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
10745 | <context context-type="linenumber">114</context> | 10864 | <context context-type="linenumber">114</context> |
10746 | </context-group> | 10865 | </context-group> |
10747 | </trans-unit><trans-unit id="4250125031269088402" datatype="html"> | 10866 | </trans-unit> |
10748 | <source>Moderation:</source><target state="new">Moderation:</target> | 10867 | <trans-unit id="4250125031269088402" datatype="html"> |
10868 | <source>Moderation:</source> | ||
10869 | <target state="new">Moderation:</target> | ||
10749 | <context-group purpose="location"> | 10870 | <context-group purpose="location"> |
10750 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 10871 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
10751 | <context context-type="linenumber">120</context> | 10872 | <context context-type="linenumber">120</context> |
@@ -10775,8 +10896,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10775 | <source>To import</source> | 10896 | <source>To import</source> |
10776 | <target>للاستيراد</target> | 10897 | <target>للاستيراد</target> |
10777 | <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> | 10898 | <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> |
10778 | </trans-unit><trans-unit id="8492933894084361602" datatype="html"> | 10899 | </trans-unit> |
10779 | <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> | 10900 | <trans-unit id="8492933894084361602" datatype="html"> |
10901 | <source>Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</source> | ||
10902 | <target state="new">Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</target> | ||
10780 | <context-group purpose="location"> | 10903 | <context-group purpose="location"> |
10781 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context> | 10904 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context> |
10782 | <context context-type="linenumber">8</context> | 10905 | <context context-type="linenumber">8</context> |
@@ -10793,25 +10916,25 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10793 | <trans-unit id="3723085768598852106" datatype="html"> | 10916 | <trans-unit id="3723085768598852106" datatype="html"> |
10794 | <source>Video removed from <x id="PH"/> </source> | 10917 | <source>Video removed from <x id="PH"/> </source> |
10795 | <target>أُزيل الفيديو من <x id="PH"/> </target> | 10918 | <target>أُزيل الفيديو من <x id="PH"/> </target> |
10796 | 10919 | <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">306</context></context-group> | |
10797 | 10920 | <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">93</context></context-group> | |
10798 | <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">306</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">93</context></context-group></trans-unit> | 10921 | </trans-unit> |
10799 | <trans-unit id="1056145626640340519" datatype="html"> | 10922 | <trans-unit id="1056145626640340519" datatype="html"> |
10800 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> | 10923 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> |
10801 | <target>أُضيف الفيديو الى <x id="PH"/> على<x id="PH_1"/></target> | 10924 | <target>أُضيف الفيديو الى <x id="PH"/> على<x id="PH_1"/></target> |
10802 | 10925 | <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">374</context></context-group> | |
10803 | <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">374</context></context-group></trans-unit> | 10926 | </trans-unit> |
10804 | <trans-unit id="7754186870520534716" datatype="html"> | 10927 | <trans-unit id="7754186870520534716" datatype="html"> |
10805 | <source>Video added in <x id="PH"/> </source> | 10928 | <source>Video added in <x id="PH"/> </source> |
10806 | <target>أضيف الفيديو الى <x id="PH"/> </target> | 10929 | <target>أضيف الفيديو الى <x id="PH"/> </target> |
10807 | 10930 | <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">375</context></context-group> | |
10808 | <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">375</context></context-group></trans-unit> | 10931 | </trans-unit> |
10809 | <trans-unit id="985751964589921228" datatype="html"> | 10932 | <trans-unit id="985751964589921228" datatype="html"> |
10810 | <source>Timestamps updated</source> | 10933 | <source>Timestamps updated</source> |
10811 | <target state="translated">تم تحديث الطوابع الزمنية</target> | 10934 | <target state="translated">تم تحديث الطوابع الزمنية</target> |
10812 | 10935 | <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">274</context></context-group> | |
10813 | 10936 | <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">112</context></context-group> | |
10814 | <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">274</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">112</context></context-group></trans-unit> | 10937 | </trans-unit> |
10815 | <trans-unit id="6421445850411984665" datatype="html"> | 10938 | <trans-unit id="6421445850411984665" datatype="html"> |
10816 | <source>Starts at</source> | 10939 | <source>Starts at</source> |
10817 | <target state="translated">يبدأ في</target> | 10940 | <target state="translated">يبدأ في</target> |
diff --git a/client/src/locale/angular.ca-ES.xlf b/client/src/locale/angular.ca-ES.xlf index a017b8ac9..5e0ce30a9 100644 --- a/client/src/locale/angular.ca-ES.xlf +++ b/client/src/locale/angular.ca-ES.xlf | |||
@@ -310,7 +310,7 @@ | |||
310 | <target state="translated">vídeo</target> | 310 | <target state="translated">vídeo</target> |
311 | 311 | ||
312 | 312 | ||
313 | <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">294</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> | 313 | <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">301</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> |
314 | <trans-unit id="6438815964972582865" datatype="html"> | 314 | <trans-unit id="6438815964972582865" datatype="html"> |
315 | <source>The following link contains a private token and should not be shared with anyone.</source> | 315 | <source>The following link contains a private token and should not be shared with anyone.</source> |
316 | <target state="translated">El següent enllaç conté un token privat i no es deuria compartir amb cap persona.</target> | 316 | <target state="translated">El següent enllaç conté un token privat i no es deuria compartir amb cap persona.</target> |
@@ -381,12 +381,12 @@ | |||
381 | <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> | 381 | <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> |
382 | <target state="translated">La seua cuota de vídeo s'excedeix amb aquest vídeo (tamany del vídeo: <x id="PH" equiv-text="videoSizeBytes"/>, utilitzat: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> | 382 | <target state="translated">La seua cuota de vídeo s'excedeix amb aquest vídeo (tamany del vídeo: <x id="PH" equiv-text="videoSizeBytes"/>, utilitzat: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> |
383 | 383 | ||
384 | <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">330</context></context-group></trans-unit> | 384 | <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">337</context></context-group></trans-unit> |
385 | <trans-unit id="7873395933409147217" datatype="html"> | 385 | <trans-unit id="7873395933409147217" datatype="html"> |
386 | <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> | 386 | <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> |
387 | <target state="translated">La seua quota diària de vídeo s'excedeix amb aquest vídeo (tamany del vídeo: <x id="PH" equiv-text="videoSizeBytes"/>, utilitzat: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, quota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> | 387 | <target state="translated">La seua quota diària de vídeo s'excedeix amb aquest vídeo (tamany del vídeo: <x id="PH" equiv-text="videoSizeBytes"/>, utilitzat: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, quota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> |
388 | 388 | ||
389 | <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">349</context></context-group></trans-unit> | 389 | <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">356</context></context-group></trans-unit> |
390 | <trans-unit id="5235042777215655908" datatype="html"> | 390 | <trans-unit id="5235042777215655908" datatype="html"> |
391 | <source>subtitles</source> | 391 | <source>subtitles</source> |
392 | <target state="translated">subtítols</target> | 392 | <target state="translated">subtítols</target> |
@@ -397,7 +397,7 @@ | |||
397 | <target state="translated">Cancel·lar</target> | 397 | <target state="translated">Cancel·lar</target> |
398 | 398 | ||
399 | 399 | ||
400 | <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">48</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> | 400 | <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">48</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">23</context></context-group></trans-unit> |
401 | <trans-unit id="3099741642167775297"> | 401 | <trans-unit id="3099741642167775297"> |
402 | <source>Download</source> | 402 | <source>Download</source> |
403 | <target>Baixa</target> | 403 | <target>Baixa</target> |
@@ -2591,7 +2591,7 @@ The link will expire within 1 hour.</source> | |||
2591 | <source>Upload on hold</source> | 2591 | <source>Upload on hold</source> |
2592 | <target state="translated">Pujada en espera</target> | 2592 | <target state="translated">Pujada en espera</target> |
2593 | 2593 | ||
2594 | <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">167</context></context-group></trans-unit> | 2594 | <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">174</context></context-group></trans-unit> |
2595 | <trans-unit id="285180972645018518" datatype="html"> | 2595 | <trans-unit id="285180972645018518" datatype="html"> |
2596 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2596 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2597 | <target state="translated">Ho sentim, la funció de pujada està deshabilitada per al teu compte. Si vols agregar vídeos, un administrador ha de desbloquejar la teua quota</target> | 2597 | <target state="translated">Ho sentim, la funció de pujada està deshabilitada per al teu compte. Si vols agregar vídeos, un administrador ha de desbloquejar la teua quota</target> |
@@ -11129,34 +11129,34 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11129 | <source>Your video was uploaded to your account and is private.</source> | 11129 | <source>Your video was uploaded to your account and is private.</source> |
11130 | <target state="new">Your video was uploaded to your account and is private.</target> | 11130 | <target state="new">Your video was uploaded to your account and is private.</target> |
11131 | 11131 | ||
11132 | <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">118</context></context-group></trans-unit> | 11132 | <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">125</context></context-group></trans-unit> |
11133 | <trans-unit id="5699822024600815733"> | 11133 | <trans-unit id="5699822024600815733"> |
11134 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 11134 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
11135 | <target>Però es perdran les dades associades (etiquetes, descripció ...), estàs segur que vols deixar aquesta pàgina?</target> | 11135 | <target>Però es perdran les dades associades (etiquetes, descripció ...), estàs segur que vols deixar aquesta pàgina?</target> |
11136 | 11136 | ||
11137 | <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">119</context></context-group></trans-unit> | 11137 | <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> |
11138 | <trans-unit id="1219739004043110649"> | 11138 | <trans-unit id="1219739004043110649"> |
11139 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 11139 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
11140 | <target>El teu vídeo encara no s'ha carregat, estàs segur que vols sortir d'aquesta pàgina?</target> | 11140 | <target>El teu vídeo encara no s'ha carregat, estàs segur que vols sortir d'aquesta pàgina?</target> |
11141 | 11141 | ||
11142 | <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">121</context></context-group></trans-unit> | 11142 | <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">128</context></context-group></trans-unit> |
11143 | <trans-unit id="6932865105766151309" datatype="html"> | 11143 | <trans-unit id="6932865105766151309" datatype="html"> |
11144 | <source>Upload</source> | 11144 | <source>Upload</source> |
11145 | <target state="new">Upload</target> | 11145 | <target state="new">Upload</target> |
11146 | 11146 | ||
11147 | <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">227</context></context-group></trans-unit> | 11147 | <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">234</context></context-group></trans-unit> |
11148 | <trans-unit id="8278735427925094503" datatype="html"> | 11148 | <trans-unit id="8278735427925094503" datatype="html"> |
11149 | <source>Upload <x id="PH"/> </source> | 11149 | <source>Upload <x id="PH"/> </source> |
11150 | <target state="translated">Puja | 11150 | <target state="translated">Puja |
11151 | <x id="PH"/> | 11151 | <x id="PH"/> |
11152 | </target> | 11152 | </target> |
11153 | 11153 | ||
11154 | <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">229</context></context-group></trans-unit> | 11154 | <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">236</context></context-group></trans-unit> |
11155 | <trans-unit id="5981816353437801748"> | 11155 | <trans-unit id="5981816353437801748"> |
11156 | <source>Video published.</source> | 11156 | <source>Video published.</source> |
11157 | <target>Vídeo publicat.</target> | 11157 | <target>Vídeo publicat.</target> |
11158 | 11158 | ||
11159 | <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">251</context></context-group></trans-unit> | 11159 | <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">258</context></context-group></trans-unit> |
11160 | <trans-unit id="764164089183618119" datatype="html"> | 11160 | <trans-unit id="764164089183618119" datatype="html"> |
11161 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 11161 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
11162 | <target state="new">You have unsaved changes! If you leave, your changes will be lost.</target> | 11162 | <target state="new">You have unsaved changes! If you leave, your changes will be lost.</target> |
diff --git a/client/src/locale/angular.cs-CZ.xlf b/client/src/locale/angular.cs-CZ.xlf index cd0988d04..91bf5c8ac 100644 --- a/client/src/locale/angular.cs-CZ.xlf +++ b/client/src/locale/angular.cs-CZ.xlf | |||
@@ -5,13 +5,13 @@ | |||
5 | <trans-unit id="219462505467671767" datatype="html"> | 5 | <trans-unit id="219462505467671767" datatype="html"> |
6 | <source>Close the left menu</source> | 6 | <source>Close the left menu</source> |
7 | <target state="translated">Zavřít levou nabídku</target> | 7 | <target state="translated">Zavřít levou nabídku</target> |
8 | 8 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">133</context></context-group> | |
9 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit> | 9 | </trans-unit> |
10 | <trans-unit id="3455550526898419928" datatype="html"> | 10 | <trans-unit id="3455550526898419928" datatype="html"> |
11 | <source>Open the left menu</source> | 11 | <source>Open the left menu</source> |
12 | <target state="translated">Otevřít levou nabídku</target> | 12 | <target state="translated">Otevřít levou nabídku</target> |
13 | 13 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">135</context></context-group> | |
14 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit> | 14 | </trans-unit> |
15 | <trans-unit id="9075761896562520962"> | 15 | <trans-unit id="9075761896562520962"> |
16 | <source>You don't have notifications.</source> | 16 | <source>You don't have notifications.</source> |
17 | <target>Nemáte oznámení.</target> | 17 | <target>Nemáte oznámení.</target> |
@@ -19,12 +19,7 @@ | |||
19 | </trans-unit> | 19 | </trans-unit> |
20 | <trans-unit id="3780281836273462589" datatype="html"> | 20 | <trans-unit id="3780281836273462589" datatype="html"> |
21 | <source><x id="INTERPOLATION"/> published a new video: <x id="START_LINK"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> | 21 | <source><x id="INTERPOLATION"/> published a new video: <x id="START_LINK"/><x id="INTERPOLATION_1"/><x id="CLOSE_LINK"/></source> |
22 | <target state="new"> | 22 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ notification.video.channel.displayName }}"/> zveřejněno nové video: <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> <x id="INTERPOLATION_1" equiv-text="{{ notification.video.name }}"/> <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> |
23 | <x id="INTERPOLATION" equiv-text="{{ notification.video.channel.displayName }}"/> published a new video: | ||
24 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | ||
25 | <x id="INTERPOLATION_1" equiv-text="{{ notification.video.name }}"/> | ||
26 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | ||
27 | </target> | ||
28 | <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> | 23 | <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> |
29 | </trans-unit> | 24 | </trans-unit> |
30 | <trans-unit id="3861380964267994829" datatype="html"> | 25 | <trans-unit id="3861380964267994829" datatype="html"> |
@@ -34,13 +29,7 @@ | |||
34 | </trans-unit> | 29 | </trans-unit> |
35 | <trans-unit id="5067946665521007036" datatype="html"> | 30 | <trans-unit id="5067946665521007036" datatype="html"> |
36 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been unblocked </source> | 31 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been unblocked </source> |
37 | <target state="new"> | 32 | <target state="translated">Vaše video <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>"/> bylo odblokováno </target> |
38 | Your video | ||
39 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> | ||
40 | <x id="INTERPOLATION" equiv-text="{{ notification.video.name }}"/> | ||
41 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> has been unblocked | ||
42 | |||
43 | </target> | ||
44 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">33</context></context-group> | 33 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">33</context></context-group> |
45 | </trans-unit> | 34 | </trans-unit> |
46 | <trans-unit id="7127745751169269971" datatype="html"> | 35 | <trans-unit id="7127745751169269971" datatype="html"> |
@@ -238,24 +227,24 @@ | |||
238 | <target state="new"> | 227 | <target state="new"> |
239 | <x id="INTERPOLATION" equiv-text="{{ action.label }}"/> | 228 | <x id="INTERPOLATION" equiv-text="{{ action.label }}"/> |
240 | </target> | 229 | </target> |
241 | 230 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">77</context></context-group> | |
242 | 231 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">105</context></context-group> | |
243 | 232 | <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> | |
244 | 233 | <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> | |
245 | 234 | <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> | |
246 | 235 | <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> | |
247 | 236 | <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> | |
248 | 237 | <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> | |
249 | 238 | <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> | |
250 | 239 | <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> | |
251 | 240 | <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> | |
252 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">77</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><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-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> | 241 | </trans-unit> |
253 | <trans-unit id="1486537403020619891" datatype="html"> | 242 | <trans-unit id="1486537403020619891" datatype="html"> |
254 | <source>My watch history</source> | 243 | <source>My watch history</source> |
255 | <target state="new">My watch history</target> | 244 | <target state="new">My watch history</target> |
256 | 245 | <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> | |
257 | 246 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">68</context></context-group> | |
258 | <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">68</context></context-group></trans-unit> | 247 | </trans-unit> |
259 | <trans-unit id="5924559757556526785"> | 248 | <trans-unit id="5924559757556526785"> |
260 | <source>Save to</source> | 249 | <source>Save to</source> |
261 | <target>Uložit na</target> | 250 | <target>Uložit na</target> |
@@ -264,8 +253,8 @@ | |||
264 | <trans-unit id="8432562579042371182"> | 253 | <trans-unit id="8432562579042371182"> |
265 | <source>Options</source> | 254 | <source>Options</source> |
266 | <target>Možnosti</target> | 255 | <target>Možnosti</target> |
267 | 256 | <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> | |
268 | <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> | 257 | </trans-unit> |
269 | <trans-unit id="1394835141143590910"> | 258 | <trans-unit id="1394835141143590910"> |
270 | <source>Start at</source> | 259 | <source>Start at</source> |
271 | <target>Začít v čase</target> | 260 | <target>Začít v čase</target> |
@@ -325,28 +314,27 @@ | |||
325 | <trans-unit id="5674286808255988565"> | 314 | <trans-unit id="5674286808255988565"> |
326 | <source>Create</source> | 315 | <source>Create</source> |
327 | <target>Vytvořit</target> | 316 | <target>Vytvořit</target> |
328 | 317 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
329 | 318 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
330 | 319 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">102</context></context-group> | |
331 | 320 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
332 | 321 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
333 | 322 | <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> | |
334 | 323 | <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> | |
335 | 324 | <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> | |
336 | 325 | <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> | |
337 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/+my-library/+my-video-channels/my-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-channels/my-video-channel-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-channels/my-video-channel-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-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> | 326 | </trans-unit> |
338 | <trans-unit id="1006562256968398209" datatype="html"> | 327 | <trans-unit id="1006562256968398209" datatype="html"> |
339 | <source>video</source> | 328 | <source>video</source> |
340 | <target state="new">video</target> | 329 | <target state="new">video</target> |
341 | 330 | ||
342 | 331 | ||
343 | 332 | <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">301</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> | |
344 | <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">294</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> | ||
345 | <trans-unit id="6438815964972582865" datatype="html"> | 333 | <trans-unit id="6438815964972582865" datatype="html"> |
346 | <source>The following link contains a private token and should not be shared with anyone.</source> | 334 | <source>The following link contains a private token and should not be shared with anyone.</source> |
347 | <target state="translated">Následující odkaz obsahuje soukromý token a neměl by být s nikým sdílen.</target> | 335 | <target state="translated">Následující odkaz obsahuje soukromý token a neměl by být s nikým sdílen.</target> |
348 | 336 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group> | |
349 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 337 | </trans-unit> |
350 | <trans-unit id="187187500641108332" datatype="html"> | 338 | <trans-unit id="187187500641108332" datatype="html"> |
351 | <source><x id="INTERPOLATION" equiv-text="{{ file.resolution.label }}"/></source> | 339 | <source><x id="INTERPOLATION" equiv-text="{{ file.resolution.label }}"/></source> |
352 | <target state="new"><x id="INTERPOLATION" equiv-text="{{ file.resolution.label }}"/></target> | 340 | <target state="new"><x id="INTERPOLATION" equiv-text="{{ file.resolution.label }}"/></target> |
@@ -358,14 +346,13 @@ | |||
358 | <trans-unit id="5235042777215655908" datatype="html"> | 346 | <trans-unit id="5235042777215655908" datatype="html"> |
359 | <source>subtitles</source> | 347 | <source>subtitles</source> |
360 | <target state="translated">Titulky</target> | 348 | <target state="translated">Titulky</target> |
361 | 349 | <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> | |
362 | 350 | </trans-unit> | |
363 | <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> | ||
364 | <trans-unit id="7513076467032912668" datatype="html"> | 351 | <trans-unit id="7513076467032912668" datatype="html"> |
365 | <source>Format</source> | 352 | <source>Format</source> |
366 | <target state="new">Format</target> | 353 | <target state="new">Format</target> |
367 | 354 | <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> | |
368 | <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> | 355 | </trans-unit> |
369 | <trans-unit id="187187500641108332" datatype="html"> | 356 | <trans-unit id="187187500641108332" datatype="html"> |
370 | <source><x id="INTERPOLATION" equiv-text="{{ item.value.label }}"/> </source> | 357 | <source><x id="INTERPOLATION" equiv-text="{{ item.value.label }}"/> </source> |
371 | <target state="new"> | 358 | <target state="new"> |
@@ -378,33 +365,33 @@ | |||
378 | <trans-unit id="7385834259346199883" datatype="html"> | 365 | <trans-unit id="7385834259346199883" datatype="html"> |
379 | <source>Video stream</source> | 366 | <source>Video stream</source> |
380 | <target state="new">Video stream</target> | 367 | <target state="new">Video stream</target> |
381 | 368 | <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> | |
382 | <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> | 369 | </trans-unit> |
383 | <trans-unit id="5496771215105419189" datatype="html"> | 370 | <trans-unit id="5496771215105419189" datatype="html"> |
384 | <source>Audio stream</source> | 371 | <source>Audio stream</source> |
385 | <target state="new">Audio stream</target> | 372 | <target state="new">Audio stream</target> |
386 | 373 | <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> | |
387 | <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> | 374 | </trans-unit> |
388 | <trans-unit id="6316149158173629264"> | 375 | <trans-unit id="6316149158173629264"> |
389 | <source>Direct download</source> | 376 | <source>Direct download</source> |
390 | <target>Přímý odkaz</target> | 377 | <target>Přímý odkaz</target> |
391 | 378 | <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> | |
392 | <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> | 379 | </trans-unit> |
393 | <trans-unit id="5910455707959454672"> | 380 | <trans-unit id="5910455707959454672"> |
394 | <source>Torrent (.torrent file)</source> | 381 | <source>Torrent (.torrent file)</source> |
395 | <target>Torrent (soubor .torrent)</target> | 382 | <target>Torrent (soubor .torrent)</target> |
396 | 383 | <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> | |
397 | <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> | 384 | </trans-unit> |
398 | <trans-unit id="5830517253429165613" datatype="html"> | 385 | <trans-unit id="5830517253429165613" datatype="html"> |
399 | <source>Advanced</source> | 386 | <source>Advanced</source> |
400 | <target state="translated">Pokročilý</target> | 387 | <target state="translated">Pokročilý</target> |
401 | 388 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">135</context></context-group> | |
402 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">135</context></context-group></trans-unit> | 389 | </trans-unit> |
403 | <trans-unit id="4493457595110310369" datatype="html"> | 390 | <trans-unit id="4493457595110310369" datatype="html"> |
404 | <source>Simple</source> | 391 | <source>Simple</source> |
405 | <target state="new"> Simple </target> | 392 | <target state="new"> Simple </target> |
406 | 393 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">143</context></context-group> | |
407 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">143</context></context-group></trans-unit> | 394 | </trans-unit> |
408 | <trans-unit id="1006562256968398209" datatype="html"> | 395 | <trans-unit id="1006562256968398209" datatype="html"> |
409 | <source>video</source> | 396 | <source>video</source> |
410 | <target state="new">video</target> | 397 | <target state="new">video</target> |
@@ -415,12 +402,12 @@ | |||
415 | <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> | 402 | <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> |
416 | <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> | 403 | <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> |
417 | 404 | ||
418 | <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">330</context></context-group></trans-unit> | 405 | <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">337</context></context-group></trans-unit> |
419 | <trans-unit id="7873395933409147217" datatype="html"> | 406 | <trans-unit id="7873395933409147217" datatype="html"> |
420 | <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> | 407 | <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> |
421 | <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> | 408 | <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> |
422 | 409 | ||
423 | <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">349</context></context-group></trans-unit> | 410 | <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">356</context></context-group></trans-unit> |
424 | <trans-unit id="5235042777215655908" datatype="html"> | 411 | <trans-unit id="5235042777215655908" datatype="html"> |
425 | <source>subtitles</source> | 412 | <source>subtitles</source> |
426 | <target state="translated">Titulky</target> | 413 | <target state="translated">Titulky</target> |
@@ -433,14 +420,14 @@ | |||
433 | </target> | 420 | </target> |
434 | 421 | ||
435 | 422 | ||
436 | <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">48</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> | 423 | <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">48</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">23</context></context-group></trans-unit> |
437 | <trans-unit id="3099741642167775297"> | 424 | <trans-unit id="3099741642167775297"> |
438 | <source>Download</source> | 425 | <source>Download</source> |
439 | <target>Stáhnout</target> | 426 | <target>Stáhnout</target> |
440 | 427 | <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> | |
441 | 428 | <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> | |
442 | 429 | <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> | |
443 | <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><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> | 430 | </trans-unit> |
444 | <trans-unit id="6325096236207614377"> | 431 | <trans-unit id="6325096236207614377"> |
445 | <source>Reason...</source> | 432 | <source>Reason...</source> |
446 | <target>Důvod...</target> | 433 | <target>Důvod...</target> |
@@ -456,16 +443,10 @@ | |||
456 | <trans-unit id="834805431202576194" datatype="html"> | 443 | <trans-unit id="834805431202576194" datatype="html"> |
457 | <source>No results.</source> | 444 | <source>No results.</source> |
458 | <target state="translated">Žádné výsledky.</target> | 445 | <target state="translated">Žádné výsledky.</target> |
459 | 446 | <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> | |
460 | 447 | <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> | |
461 | 448 | <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> | |
462 | 449 | </trans-unit> | |
463 | |||
464 | |||
465 | |||
466 | |||
467 | |||
468 | <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> | ||
469 | <trans-unit id="935187492052582731"> | 450 | <trans-unit id="935187492052582731"> |
470 | <source>Submit</source> | 451 | <source>Submit</source> |
471 | <target>Odeslat</target> | 452 | <target>Odeslat</target> |
@@ -475,8 +456,10 @@ | |||
475 | <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> | 456 | <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> |
476 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">96</context></context-group> | 457 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">96</context></context-group> |
477 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">42</context></context-group> | 458 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">42</context></context-group> |
478 | </trans-unit><trans-unit id="8343217707114977013" datatype="html"> | 459 | </trans-unit> |
479 | <source>The contact form is not enabled on this instance.</source><target state="new">The contact form is not enabled on this instance.</target> | 460 | <trans-unit id="8343217707114977013" datatype="html"> |
461 | <source>The contact form is not enabled on this instance.</source> | ||
462 | <target state="new">The contact form is not enabled on this instance.</target> | ||
480 | <context-group purpose="location"> | 463 | <context-group purpose="location"> |
481 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> | 464 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> |
482 | <context context-type="linenumber">56</context> | 465 | <context context-type="linenumber">56</context> |
@@ -503,8 +486,10 @@ | |||
503 | <source>Blocking this live will automatically terminate the live stream.</source> | 486 | <source>Blocking this live will automatically terminate the live stream.</source> |
504 | <target state="new"> Blocking this live will automatically terminate the live stream. </target> | 487 | <target state="new"> Blocking this live will automatically terminate the live stream. </target> |
505 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">33</context></context-group> | 488 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">33</context></context-group> |
506 | </trans-unit><trans-unit id="2466846716878254816" datatype="html"> | 489 | </trans-unit> |
507 | <source>Element <x id="PH" equiv-text="param"/> not found</source><target state="new">Element <x id="PH" equiv-text="param"/> not found</target> | 490 | <trans-unit id="2466846716878254816" datatype="html"> |
491 | <source>Element <x id="PH" equiv-text="param"/> not found</source> | ||
492 | <target state="new">Element <x id="PH" equiv-text="param"/> not found</target> | ||
508 | <context-group purpose="location"> | 493 | <context-group purpose="location"> |
509 | <context context-type="sourcefile">src/app/shared/shared-search/find-in-bulk.service.ts</context> | 494 | <context context-type="sourcefile">src/app/shared/shared-search/find-in-bulk.service.ts</context> |
510 | <context context-type="linenumber">80</context> | 495 | <context context-type="linenumber">80</context> |
@@ -518,16 +503,16 @@ | |||
518 | <trans-unit id="7539427273132299890"> | 503 | <trans-unit id="7539427273132299890"> |
519 | <source>Unlisted</source> | 504 | <source>Unlisted</source> |
520 | <target>Neveřejné</target> | 505 | <target>Neveřejné</target> |
521 | 506 | <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> | |
522 | 507 | <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> | |
523 | <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> | 508 | </trans-unit> |
524 | <trans-unit id="3686284950598311784"> | 509 | <trans-unit id="3686284950598311784"> |
525 | <source>Private</source> | 510 | <source>Private</source> |
526 | <target>Soukromé</target> | 511 | <target>Soukromé</target> |
527 | 512 | <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> | |
528 | 513 | <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> | |
529 | 514 | <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">33</context></context-group> | |
530 | <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">33</context></context-group></trans-unit> | 515 | </trans-unit> |
531 | <trans-unit id="7688104409544625220" datatype="html"> | 516 | <trans-unit id="7688104409544625220" datatype="html"> |
532 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> | 517 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> |
533 | <target state="new">{VAR_PLURAL, plural, =1 {1 view} other { | 518 | <target state="new">{VAR_PLURAL, plural, =1 {1 view} other { |
@@ -564,38 +549,38 @@ | |||
564 | <trans-unit id="3267631941074558910" datatype="html"> | 549 | <trans-unit id="3267631941074558910" datatype="html"> |
565 | <source>Cannot fetch information of this remote account</source> | 550 | <source>Cannot fetch information of this remote account</source> |
566 | <target state="translated">Nelze načíst informace o tomto vzdáleném účtu</target> | 551 | <target state="translated">Nelze načíst informace o tomto vzdáleném účtu</target> |
567 | 552 | <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> | |
568 | <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> | 553 | </trans-unit> |
569 | <trans-unit id="9081463435738465430" datatype="html"> | 554 | <trans-unit id="9081463435738465430" datatype="html"> |
570 | <source>Blocked</source> | 555 | <source>Blocked</source> |
571 | <target state="new">Blocked</target> | 556 | <target state="new">Blocked</target> |
572 | 557 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">57</context></context-group> | |
573 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> | 558 | </trans-unit> |
574 | <trans-unit id="3514509630940272440"> | 559 | <trans-unit id="3514509630940272440"> |
575 | <source>Sensitive</source> | 560 | <source>Sensitive</source> |
576 | <target state="translated">Citlivé</target> | 561 | <target state="translated">Citlivé</target> |
577 | 562 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">62</context></context-group> | |
578 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 563 | </trans-unit> |
579 | <trans-unit id="7766488542631150871"> | 564 | <trans-unit id="7766488542631150871"> |
580 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 565 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
581 | <target>{VAR_PLURAL, plural, =0 {Žádná videa} =1 {1 video} other { | 566 | <target>{VAR_PLURAL, plural, =0 {Žádná videa} =1 {1 video} other { |
582 | <x id="INTERPOLATION" equiv-text="{{ playlist.videosLength }}"/> videí} } | 567 | <x id="INTERPOLATION" equiv-text="{{ playlist.videosLength }}"/> videí} } |
583 | </target> | 568 | </target> |
584 | 569 | <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">32</context></context-group> | |
585 | 570 | <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> | |
586 | <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">32</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> | 571 | </trans-unit> |
587 | <trans-unit id="7708270344948043036"> | 572 | <trans-unit id="7708270344948043036"> |
588 | <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> | 573 | <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> |
589 | <target> | 574 | <target> |
590 | <x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> | 575 | <x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> |
591 | </target> | 576 | </target> |
592 | 577 | <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> | |
593 | <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> | 578 | </trans-unit> |
594 | <trans-unit id="3044142083883783523"> | 579 | <trans-unit id="3044142083883783523"> |
595 | <source>Updated <x id="INTERPOLATION"/></source> | 580 | <source>Updated <x id="INTERPOLATION"/></source> |
596 | <target>Aktualizováno <x id="INTERPOLATION"/></target> | 581 | <target>Aktualizováno <x id="INTERPOLATION"/></target> |
597 | 582 | <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> | |
598 | <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> | 583 | </trans-unit> |
599 | <trans-unit id="5643561794785412000" datatype="html"> | 584 | <trans-unit id="5643561794785412000" datatype="html"> |
600 | <source>Unavailable</source> | 585 | <source>Unavailable</source> |
601 | <target state="translated">Nedostupné</target> | 586 | <target state="translated">Nedostupné</target> |
@@ -604,10 +589,10 @@ | |||
604 | <trans-unit id="6381490568322624964" datatype="html"> | 589 | <trans-unit id="6381490568322624964" datatype="html"> |
605 | <source>Deleted</source> | 590 | <source>Deleted</source> |
606 | <target state="translated">Smazané</target> | 591 | <target state="translated">Smazané</target> |
607 | 592 | <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> | |
608 | 593 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">91</context></context-group> | |
609 | 594 | <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">34</context></context-group> | |
610 | <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-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">91</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">34</context></context-group></trans-unit> | 595 | </trans-unit> |
611 | <trans-unit id="5263519165976128456"> | 596 | <trans-unit id="5263519165976128456"> |
612 | <source>Edit starts/stops at</source> | 597 | <source>Edit starts/stops at</source> |
613 | <target>Upravit čas spuštění/zastavení</target> | 598 | <target>Upravit čas spuštění/zastavení</target> |
@@ -616,13 +601,11 @@ | |||
616 | <trans-unit id="3768927257183755959"> | 601 | <trans-unit id="3768927257183755959"> |
617 | <source>Save</source> | 602 | <source>Save</source> |
618 | <target>Uložit</target> | 603 | <target>Uložit</target> |
619 | 604 | <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> | |
620 | 605 | <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> | |
621 | 606 | <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> | |
622 | 607 | <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">82</context></context-group> | |
623 | 608 | </trans-unit> | |
624 | |||
625 | <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">82</context></context-group></trans-unit> | ||
626 | <trans-unit id="8890926675057871150"> | 609 | <trans-unit id="8890926675057871150"> |
627 | <source>Delete from <x id="INTERPOLATION"/></source> | 610 | <source>Delete from <x id="INTERPOLATION"/></source> |
628 | <target>Smazat ze <x id="INTERPOLATION"/></target> | 611 | <target>Smazat ze <x id="INTERPOLATION"/></target> |
@@ -640,40 +623,39 @@ | |||
640 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> | 623 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> |
641 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> | 624 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> |
642 | </trans-unit> | 625 | </trans-unit> |
643 | |||
644 | <trans-unit id="3594371452042277118" datatype="html"> | 626 | <trans-unit id="3594371452042277118" datatype="html"> |
645 | <source>Videos with the most interactions for recent videos, minus user history</source> | 627 | <source>Videos with the most interactions for recent videos, minus user history</source> |
646 | <target state="new">Videos with the most interactions for recent videos, minus user history</target> | 628 | <target state="new">Videos with the most interactions for recent videos, minus user history</target> |
647 | 629 | <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> | |
648 | <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> | 630 | </trans-unit> |
649 | <trans-unit id="7022070615528435141"> | 631 | <trans-unit id="7022070615528435141"> |
650 | <source>Delete</source> | 632 | <source>Delete</source> |
651 | <target>Odstranit</target> | 633 | <target>Odstranit</target> |
652 | 634 | <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> | |
653 | 635 | <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">88</context></context-group> | |
654 | 636 | <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">92</context></context-group> | |
655 | 637 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">95</context></context-group> | |
656 | 638 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">164</context></context-group> | |
657 | 639 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">81</context></context-group> | |
658 | 640 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">195</context></context-group> | |
659 | 641 | <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> | |
660 | 642 | <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> | |
661 | 643 | <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> | |
662 | 644 | <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> | |
663 | 645 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">117</context></context-group> | |
664 | 646 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">144</context></context-group> | |
665 | 647 | <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> | |
666 | 648 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">178</context></context-group> | |
667 | 649 | <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> | |
668 | 650 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">145</context></context-group> | |
669 | 651 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">388</context></context-group> | |
670 | 652 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">423</context></context-group> | |
671 | 653 | <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> | |
672 | 654 | <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> | |
673 | 655 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">87</context></context-group> | |
674 | 656 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">208</context></context-group> | |
675 | 657 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">308</context></context-group> | |
676 | <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">88</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">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">164</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">81</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">195</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">117</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">144</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">185</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">178</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">145</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">388</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">423</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-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">87</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">208</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">308</context></context-group></trans-unit> | 658 | </trans-unit> |
677 | <trans-unit id="158575725114802951" datatype="html"> | 659 | <trans-unit id="158575725114802951" datatype="html"> |
678 | <source>Only live videos</source> | 660 | <source>Only live videos</source> |
679 | <target state="translated">Jenom živý videa</target> | 661 | <target state="translated">Jenom živý videa</target> |
@@ -704,11 +686,12 @@ | |||
704 | <trans-unit id="8461609631969932886" datatype="html"> | 686 | <trans-unit id="8461609631969932886" datatype="html"> |
705 | <source>Hide</source> | 687 | <source>Hide</source> |
706 | <target state="translated">Skrýt</target> | 688 | <target state="translated">Skrýt</target> |
707 | 689 | <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> | |
708 | 690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.html</context><context context-type="linenumber">11</context></context-group> | |
709 | 691 | <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> | |
710 | 692 | <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> | |
711 | <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/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> | 693 | <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> |
694 | </trans-unit> | ||
712 | <trans-unit id="8461842260159597706" datatype="html"> | 695 | <trans-unit id="8461842260159597706" datatype="html"> |
713 | <source>Show</source> | 696 | <source>Show</source> |
714 | <target state="new">Show</target> | 697 | <target state="new">Show</target> |
@@ -753,7 +736,6 @@ | |||
753 | <target>Odebírat přes místní účet</target> | 736 | <target>Odebírat přes místní účet</target> |
754 | <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> | 737 | <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> |
755 | </trans-unit> | 738 | </trans-unit> |
756 | |||
757 | <trans-unit id="7639191791633609999" datatype="html"> | 739 | <trans-unit id="7639191791633609999" datatype="html"> |
758 | <source>The live stream will be automatically terminated.</source> | 740 | <source>The live stream will be automatically terminated.</source> |
759 | <target state="translated">Živí přenos bude automaticky ukončen.</target> | 741 | <target state="translated">Živí přenos bude automaticky ukončen.</target> |
@@ -864,10 +846,11 @@ | |||
864 | <trans-unit id="2602586221576511475"> | 846 | <trans-unit id="2602586221576511475"> |
865 | <source>Video quota</source> | 847 | <source>Video quota</source> |
866 | <target>Limit na videa</target> | 848 | <target>Limit na videa</target> |
867 | 849 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> | |
868 | 850 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> | |
869 | 851 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">113</context></context-group> | |
870 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/users/user-list/user-list.component.ts</context><context context-type="linenumber">113</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> | 852 | <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> |
853 | </trans-unit> | ||
871 | <trans-unit id="1502595455339510144"> | 854 | <trans-unit id="1502595455339510144"> |
872 | <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 855 | <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
873 | <target> | 856 | <target> |
@@ -918,16 +901,17 @@ | |||
918 | <trans-unit id="2906587845957718064"> | 901 | <trans-unit id="2906587845957718064"> |
919 | <source>Local</source> | 902 | <source>Local</source> |
920 | <target>Místní</target> | 903 | <target>Místní</target> |
921 | 904 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">4</context></context-group> | |
922 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.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-filters.model.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> | 905 | <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> |
906 | </trans-unit> | ||
923 | <trans-unit id="1670306451865226564" datatype="html"> | 907 | <trans-unit id="1670306451865226564" datatype="html"> |
924 | <source>users</source> | 908 | <source>users</source> |
925 | <target state="new">users</target> | 909 | <target state="translated">uživatelé</target> |
926 | <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> | 910 | <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> |
927 | </trans-unit> | 911 | </trans-unit> |
928 | <trans-unit id="5178138591256693636" datatype="html"> | 912 | <trans-unit id="5178138591256693636" datatype="html"> |
929 | <source>videos</source> | 913 | <source>videos</source> |
930 | <target state="new">videos</target> | 914 | <target state="translated">videa</target> |
931 | <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> | 915 | <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> |
932 | <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> | 916 | <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> |
933 | </trans-unit> | 917 | </trans-unit> |
@@ -952,8 +936,10 @@ | |||
952 | <target state="new">Federation</target> | 936 | <target state="new">Federation</target> |
953 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</context></context-group> | 937 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</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">58</context></context-group> | 938 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">58</context></context-group> |
955 | </trans-unit><trans-unit id="8726138323871139597" datatype="html"> | 939 | </trans-unit> |
956 | <source>Following</source><target state="new">Following</target> | 940 | <trans-unit id="8726138323871139597" datatype="html"> |
941 | <source>Following</source> | ||
942 | <target state="new">Following</target> | ||
957 | <context-group purpose="location"> | 943 | <context-group purpose="location"> |
958 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | 944 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> |
959 | <context context-type="linenumber">29</context> | 945 | <context context-type="linenumber">29</context> |
@@ -966,8 +952,10 @@ | |||
966 | <context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context> | 952 | <context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context> |
967 | <context context-type="linenumber">28</context> | 953 | <context context-type="linenumber">28</context> |
968 | </context-group> | 954 | </context-group> |
969 | </trans-unit><trans-unit id="4914577418256256836" datatype="html"> | 955 | </trans-unit> |
970 | <source>Followers</source><target state="new">Followers</target> | 956 | <trans-unit id="4914577418256256836" datatype="html"> |
957 | <source>Followers</source> | ||
958 | <target state="new">Followers</target> | ||
971 | <context-group purpose="location"> | 959 | <context-group purpose="location"> |
972 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | 960 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> |
973 | <context context-type="linenumber">34</context> | 961 | <context context-type="linenumber">34</context> |
@@ -990,42 +978,42 @@ | |||
990 | <trans-unit id="2605931708025789621" datatype="html"> | 978 | <trans-unit id="2605931708025789621" datatype="html"> |
991 | <source>The upload failed</source> | 979 | <source>The upload failed</source> |
992 | <target state="new">The upload failed</target> | 980 | <target state="new">The upload failed</target> |
993 | 981 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">12</context></context-group> | |
994 | <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> | 982 | </trans-unit> |
995 | <trans-unit id="1447760976255144968" datatype="html"> | 983 | <trans-unit id="1447760976255144968" datatype="html"> |
996 | <source>The connection was interrupted</source> | 984 | <source>The connection was interrupted</source> |
997 | <target state="new">The connection was interrupted</target> | 985 | <target state="new">The connection was interrupted</target> |
998 | 986 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">16</context></context-group> | |
999 | <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> | 987 | </trans-unit> |
1000 | <trans-unit id="4499233456830047129" datatype="html"> | 988 | <trans-unit id="4499233456830047129" datatype="html"> |
1001 | <source>The server encountered an error</source> | 989 | <source>The server encountered an error</source> |
1002 | <target state="new">The server encountered an error</target> | 990 | <target state="new">The server encountered an error</target> |
1003 | 991 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">19</context></context-group> | |
1004 | <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> | 992 | </trans-unit> |
1005 | <trans-unit id="3334825601859787496" datatype="html"> | 993 | <trans-unit id="3334825601859787496" datatype="html"> |
1006 | <source>Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</source> | 994 | <source>Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</source> |
1007 | <target state="new">Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</target> | 995 | <target state="new">Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</target> |
1008 | 996 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">22</context></context-group> | |
1009 | <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> | 997 | </trans-unit> |
1010 | <trans-unit id="8530934870279569179" datatype="html"> | 998 | <trans-unit id="8530934870279569179" datatype="html"> |
1011 | <source>Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</source> | 999 | <source>Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</source> |
1012 | <target state="new">Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</target> | 1000 | <target state="new">Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</target> |
1013 | 1001 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">26</context></context-group> | |
1014 | <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> | 1002 | </trans-unit> |
1015 | <trans-unit id="2392488717875840729" datatype="html"> | 1003 | <trans-unit id="2392488717875840729" datatype="html"> |
1016 | <source>User</source> | 1004 | <source>User</source> |
1017 | <target state="new">User</target> | 1005 | <target state="new">User</target> |
1018 | 1006 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group> | |
1019 | 1007 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">27</context></context-group> | |
1020 | 1008 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group> | |
1021 | <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">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group></trans-unit> | 1009 | </trans-unit> |
1022 | <trans-unit id="4209525355702493436"> | 1010 | <trans-unit id="4209525355702493436"> |
1023 | <source>Ban</source> | 1011 | <source>Ban</source> |
1024 | <target>Zablokovat</target> | 1012 | <target>Zablokovat</target> |
1025 | 1013 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">87</context></context-group> | |
1026 | 1014 | <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> | |
1027 | 1015 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">271</context></context-group> | |
1028 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">87</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-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">271</context></context-group></trans-unit> | 1016 | </trans-unit> |
1029 | <trans-unit id="7908493851025027368"> | 1017 | <trans-unit id="7908493851025027368"> |
1030 | <source>A banned user will no longer be able to login.</source> | 1018 | <source>A banned user will no longer be able to login.</source> |
1031 | <target> | 1019 | <target> |
@@ -1036,25 +1024,26 @@ | |||
1036 | <trans-unit id="2159130950882492111"> | 1024 | <trans-unit id="2159130950882492111"> |
1037 | <source>Cancel</source> | 1025 | <source>Cancel</source> |
1038 | <target>Zrušit</target> | 1026 | <target>Zrušit</target> |
1039 | 1027 | <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> | |
1040 | 1028 | <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> | |
1041 | 1029 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">121</context></context-group> | |
1042 | 1030 | <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> | |
1043 | 1031 | <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> | |
1044 | 1032 | <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> | |
1045 | 1033 | <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> | |
1046 | 1034 | <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> | |
1047 | 1035 | <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> | |
1048 | 1036 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">416</context></context-group> | |
1049 | 1037 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.html</context><context context-type="linenumber">20</context></context-group> | |
1050 | 1038 | <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> | |
1051 | 1039 | <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> | |
1052 | 1040 | <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> | |
1053 | 1041 | <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> | |
1054 | 1042 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">92</context></context-group> | |
1055 | 1043 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">26</context></context-group> | |
1056 | 1044 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">38</context></context-group> | |
1057 | <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">121</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-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/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">416</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">92</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">26</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">38</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> | 1045 | <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> |
1046 | </trans-unit> | ||
1058 | <trans-unit id="3616223838716839702"> | 1047 | <trans-unit id="3616223838716839702"> |
1059 | <source>Ban this user</source> | 1048 | <source>Ban this user</source> |
1060 | <target>Zablokovat tohoto uživatele</target> | 1049 | <target>Zablokovat tohoto uživatele</target> |
@@ -1125,13 +1114,13 @@ | |||
1125 | <trans-unit id="7252854992688790751" datatype="html"> | 1114 | <trans-unit id="7252854992688790751" datatype="html"> |
1126 | <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> | 1115 | <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> |
1127 | <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> | 1116 | <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> |
1128 | 1117 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">64</context></context-group> | |
1129 | <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> | 1118 | </trans-unit> |
1130 | <trans-unit id="7215649348148521605" datatype="html"> | 1119 | <trans-unit id="7215649348148521605" datatype="html"> |
1131 | <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> | 1120 | <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> |
1132 | <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> | 1121 | <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> |
1133 | 1122 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">69</context></context-group> | |
1134 | <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> | 1123 | </trans-unit> |
1135 | <trans-unit id="2392488717875840729"> | 1124 | <trans-unit id="2392488717875840729"> |
1136 | <source>User</source> | 1125 | <source>User</source> |
1137 | <target>Uživatel</target> | 1126 | <target>Uživatel</target> |
@@ -1142,8 +1131,10 @@ | |||
1142 | <source>Username or email address</source> | 1131 | <source>Username or email address</source> |
1143 | <target>Uživatelské jméno nebo e-mail</target> | 1132 | <target>Uživatelské jméno nebo e-mail</target> |
1144 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">23</context></context-group> | 1133 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">23</context></context-group> |
1145 | </trans-unit><trans-unit id="1758058452376026925" datatype="html"> | 1134 | </trans-unit> |
1146 | <source> ⚠️ Most email addresses do not include capital letters. </source><target state="new"> ⚠️ Most email addresses do not include capital letters. </target> | 1135 | <trans-unit id="1758058452376026925" datatype="html"> |
1136 | <source>⚠️ Most email addresses do not include capital letters.</source> | ||
1137 | <target state="new"> ⚠️ Most email addresses do not include capital letters. </target> | ||
1147 | <context-group purpose="location"> | 1138 | <context-group purpose="location"> |
1148 | <context context-type="sourcefile">src/app/+login/login.component.html</context> | 1139 | <context context-type="sourcefile">src/app/+login/login.component.html</context> |
1149 | <context context-type="linenumber">33,34</context> | 1140 | <context context-type="linenumber">33,34</context> |
@@ -1152,59 +1143,59 @@ | |||
1152 | <trans-unit id="1431416938026210429"> | 1143 | <trans-unit id="1431416938026210429"> |
1153 | <source>Password</source> | 1144 | <source>Password</source> |
1154 | <target>Heslo</target> | 1145 | <target>Heslo</target> |
1155 | 1146 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">117</context></context-group> | |
1156 | 1147 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">117</context></context-group> | |
1157 | 1148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">38</context></context-group> | |
1158 | 1149 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">40</context></context-group> | |
1159 | 1150 | <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> | |
1160 | 1151 | <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> | |
1161 | 1152 | <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> | |
1162 | 1153 | <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> | |
1163 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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> | 1154 | </trans-unit> |
1164 | <trans-unit id="8715156686857791956" datatype="html"> | 1155 | <trans-unit id="8715156686857791956" datatype="html"> |
1165 | <source>Click here to reset your password</source> | 1156 | <source>Click here to reset your password</source> |
1166 | <target state="new">Click here to reset your password</target> | 1157 | <target state="new">Click here to reset your password</target> |
1167 | 1158 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">51</context></context-group> | |
1168 | <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> | 1159 | </trans-unit> |
1169 | <trans-unit id="892063502898494584" datatype="html"> | 1160 | <trans-unit id="892063502898494584" datatype="html"> |
1170 | <source>I forgot my password</source> | 1161 | <source>I forgot my password</source> |
1171 | <target state="new">I forgot my password</target> | 1162 | <target state="new">I forgot my password</target> |
1172 | 1163 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">51</context></context-group> | |
1173 | <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> | 1164 | </trans-unit> |
1174 | <trans-unit id="2101170466365500913" datatype="html"> | 1165 | <trans-unit id="2101170466365500913" datatype="html"> |
1175 | <source>Logging into an account lets you publish content</source> | 1166 | <source>Logging into an account lets you publish content</source> |
1176 | <target state="new"> Logging into an account lets you publish content </target> | 1167 | <target state="new"> Logging into an account lets you publish content </target> |
1177 | 1168 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">60</context></context-group> | |
1178 | <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> | 1169 | </trans-unit> |
1179 | <trans-unit id="2454050363478003966"> | 1170 | <trans-unit id="2454050363478003966"> |
1180 | <source>Login</source> | 1171 | <source>Login</source> |
1181 | <target>Přihlásit</target> | 1172 | <target>Přihlásit</target> |
1182 | 1173 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login-routing.module.ts</context><context context-type="linenumber">12</context></context-group> | |
1183 | 1174 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">48</context></context-group> | |
1184 | 1175 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">99</context></context-group> | |
1185 | <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">99</context></context-group></trans-unit> | 1176 | </trans-unit> |
1186 | <trans-unit id="3183213940445113677" datatype="html"> | 1177 | <trans-unit id="3183213940445113677" datatype="html"> |
1187 | <source>Or sign in with</source> | 1178 | <source>Or sign in with</source> |
1188 | <target state="new">Or sign in with</target> | 1179 | <target state="new">Or sign in with</target> |
1189 | 1180 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">76</context></context-group> | |
1190 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> | 1181 | </trans-unit> |
1191 | <trans-unit id="3238209155172574367"> | 1182 | <trans-unit id="3238209155172574367"> |
1192 | <source>Forgot your password</source> | 1183 | <source>Forgot your password</source> |
1193 | <target>Zapomenuté heslo</target> | 1184 | <target>Zapomenuté heslo</target> |
1194 | 1185 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">95</context></context-group> | |
1195 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit> | 1186 | </trans-unit> |
1196 | <trans-unit id="87327320394367488" datatype="html"> | 1187 | <trans-unit id="87327320394367488" datatype="html"> |
1197 | <source>We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</source> | 1188 | <source>We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</source> |
1198 | <target state="new"> | 1189 | <target state="new"> |
1199 | We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system. | 1190 | We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system. |
1200 | </target> | 1191 | </target> |
1201 | 1192 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">103</context></context-group> | |
1202 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">103</context></context-group></trans-unit> | 1193 | </trans-unit> |
1203 | <trans-unit id="3188014010833256853" datatype="html"> | 1194 | <trans-unit id="3188014010833256853" datatype="html"> |
1204 | <source>Enter your email address and we will send you a link to reset your password.</source> | 1195 | <source>Enter your email address and we will send you a link to reset your password.</source> |
1205 | <target state="new"> Enter your email address and we will send you a link to reset your password. </target> | 1196 | <target state="new"> Enter your email address and we will send you a link to reset your password. </target> |
1206 | 1197 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">107</context></context-group> | |
1207 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> | 1198 | </trans-unit> |
1208 | <trans-unit id="1190256911880544559" datatype="html"> | 1199 | <trans-unit id="1190256911880544559" datatype="html"> |
1209 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. | 1200 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. |
1210 | The link will expire within 1 hour.</source> | 1201 | The link will expire within 1 hour.</source> |
@@ -1215,26 +1206,27 @@ The link will expire within 1 hour.</target> | |||
1215 | <trans-unit id="4768749765465246664"> | 1206 | <trans-unit id="4768749765465246664"> |
1216 | <source>Email</source> | 1207 | <source>Email</source> |
1217 | <target>E-mail</target> | 1208 | <target>E-mail</target> |
1218 | 1209 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group> | |
1219 | 1210 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group> | |
1220 | 1211 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">112</context></context-group> | |
1221 | 1212 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">111</context></context-group> | |
1222 | 1213 | <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> | |
1223 | 1214 | <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> | |
1224 | 1215 | <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> | |
1225 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/users/user-list/user-list.component.ts</context><context context-type="linenumber">112</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">111</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/+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> | 1216 | <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> |
1217 | </trans-unit> | ||
1226 | <trans-unit id="3967269098753656610"> | 1218 | <trans-unit id="3967269098753656610"> |
1227 | <source>Email address</source> | 1219 | <source>Email address</source> |
1228 | <target>E-mailová adresa</target> | 1220 | <target>E-mailová adresa</target> |
1229 | 1221 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">113</context></context-group> | |
1230 | 1222 | <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> | |
1231 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">113</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> | 1223 | </trans-unit> |
1232 | <trans-unit id="7808756054397155068" datatype="html"> | 1224 | <trans-unit id="7808756054397155068" datatype="html"> |
1233 | <source>Reset</source> | 1225 | <source>Reset</source> |
1234 | <target state="new">Reset</target> | 1226 | <target state="new">Reset</target> |
1235 | <note priority="1" from="description">Password reset button</note> | 1227 | <note priority="1" from="description">Password reset button</note> |
1236 | 1228 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">126</context></context-group> | |
1237 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1229 | </trans-unit> |
1238 | <trans-unit id="4319634264526091601" datatype="html"> | 1230 | <trans-unit id="4319634264526091601" datatype="html"> |
1239 | <source>on this instance</source> | 1231 | <source>on this instance</source> |
1240 | <target state="new">on this instance</target> | 1232 | <target state="new">on this instance</target> |
@@ -1297,8 +1289,8 @@ The link will expire within 1 hour.</target> | |||
1297 | <source>Signup</source> | 1289 | <source>Signup</source> |
1298 | <target state="new">Signup</target> | 1290 | <target state="new">Signup</target> |
1299 | <note priority="1" from="description">Button on the registration form to finalize the account and channel creation</note> | 1291 | <note priority="1" from="description">Button on the registration form to finalize the account and channel creation</note> |
1300 | 1292 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">67</context></context-group> | |
1301 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 1293 | </trans-unit> |
1302 | <trans-unit id="5340005218109333045"> | 1294 | <trans-unit id="5340005218109333045"> |
1303 | <source>Filters <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> | 1295 | <source>Filters <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> |
1304 | <target> | 1296 | <target> |
@@ -1315,75 +1307,75 @@ The link will expire within 1 hour.</target> | |||
1315 | <target> | 1307 | <target> |
1316 | Nebyly nalezeny žádné výsledky | 1308 | Nebyly nalezeny žádné výsledky |
1317 | </target> | 1309 | </target> |
1318 | 1310 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">33</context></context-group> | |
1319 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 1311 | </trans-unit> |
1320 | <trans-unit id="5500467336262464724"> | 1312 | <trans-unit id="5500467336262464724"> |
1321 | <source><x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> subscribers </source> | 1313 | <source><x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> subscribers </source> |
1322 | <target> | 1314 | <target> |
1323 | <x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> odběratelů | 1315 | <x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> odběratelů |
1324 | </target> | 1316 | </target> |
1325 | 1317 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">25</context></context-group> | |
1326 | 1318 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">55</context></context-group> | |
1327 | 1319 | <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> | |
1328 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/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> | 1320 | </trans-unit> |
1329 | <trans-unit id="1516969129397662377" datatype="html"> | 1321 | <trans-unit id="1516969129397662377" datatype="html"> |
1330 | <source>Welcome to PeerTube, dear administrator!</source> | 1322 | <source>Welcome to PeerTube, dear administrator!</source> |
1331 | <target state="new">Welcome to PeerTube, dear administrator!</target> | 1323 | <target state="new">Welcome to PeerTube, dear administrator!</target> |
1332 | 1324 | <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> | |
1333 | <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> | 1325 | </trans-unit> |
1334 | <trans-unit id="807030720531713957" datatype="html"> | 1326 | <trans-unit id="807030720531713957" datatype="html"> |
1335 | <source>CLI documentation</source> | 1327 | <source>CLI documentation</source> |
1336 | <target state="new">CLI | 1328 | <target state="new">CLI |
1337 | documentation</target> | 1329 | documentation</target> |
1338 | 1330 | <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> | |
1339 | <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> | 1331 | </trans-unit> |
1340 | <trans-unit id="199127249622290422" datatype="html"> | 1332 | <trans-unit id="199127249622290422" datatype="html"> |
1341 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> | 1333 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> |
1342 | <target state="new">Upload or import videos, parse logs, prune storage directories, reset user password...</target> | 1334 | <target state="new">Upload or import videos, parse logs, prune storage directories, reset user password...</target> |
1343 | 1335 | <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> | |
1344 | <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> | 1336 | </trans-unit> |
1345 | <trans-unit id="249453844439446209" datatype="html"> | 1337 | <trans-unit id="249453844439446209" datatype="html"> |
1346 | <source>Administer documentation</source> | 1338 | <source>Administer documentation</source> |
1347 | <target state="new">Administer | 1339 | <target state="new">Administer |
1348 | documentation</target> | 1340 | documentation</target> |
1349 | 1341 | <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> | |
1350 | <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> | 1342 | </trans-unit> |
1351 | <trans-unit id="5910950876330656326" datatype="html"> | 1343 | <trans-unit id="5910950876330656326" datatype="html"> |
1352 | <source>Managing users, following other instances, dealing with spammers...</source> | 1344 | <source>Managing users, following other instances, dealing with spammers...</source> |
1353 | <target state="new">Managing users, following other instances, dealing with spammers...</target> | 1345 | <target state="new">Managing users, following other instances, dealing with spammers...</target> |
1354 | 1346 | <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> | |
1355 | <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> | 1347 | </trans-unit> |
1356 | <trans-unit id="879127294610588497" datatype="html"> | 1348 | <trans-unit id="879127294610588497" datatype="html"> |
1357 | <source>Use documentation</source> | 1349 | <source>Use documentation</source> |
1358 | <target state="new">Use | 1350 | <target state="new">Use |
1359 | documentation</target> | 1351 | documentation</target> |
1360 | 1352 | <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> | |
1361 | <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> | 1353 | </trans-unit> |
1362 | <trans-unit id="3848077896245199337" datatype="html"> | 1354 | <trans-unit id="3848077896245199337" datatype="html"> |
1363 | <source>Setup your account, managing video playlists, discover third-party applications...</source> | 1355 | <source>Setup your account, managing video playlists, discover third-party applications...</source> |
1364 | <target state="new">Setup your account, managing video playlists, discover third-party applications...</target> | 1356 | <target state="new">Setup your account, managing video playlists, discover third-party applications...</target> |
1365 | 1357 | <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> | |
1366 | <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> | 1358 | </trans-unit> |
1367 | <trans-unit id="6284442506490785579" datatype="html"> | 1359 | <trans-unit id="6284442506490785579" datatype="html"> |
1368 | <source>Useful links</source> | 1360 | <source>Useful links</source> |
1369 | <target state="new">Useful links</target> | 1361 | <target state="new">Useful links</target> |
1370 | 1362 | <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> | |
1371 | <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> | 1363 | </trans-unit> |
1372 | <trans-unit id="5170617864166788170" datatype="html"> | 1364 | <trans-unit id="5170617864166788170" datatype="html"> |
1373 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> | 1365 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> |
1374 | <target state="translated">Oficiální stránky PeerTube (novinky, podpora, přispívání...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></target> | 1366 | <target state="translated">Oficiální stránky PeerTube (novinky, podpora, přispívání...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></target> |
1375 | 1367 | <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> | |
1376 | <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> | 1368 | </trans-unit> |
1377 | <trans-unit id="4614992717645869756" datatype="html"> | 1369 | <trans-unit id="4614992717645869756" datatype="html"> |
1378 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> | 1370 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> |
1379 | <target state="translated">Dejte vaši instanci do veřejného indexu PeerTube: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></target> | 1371 | <target state="translated">Dejte vaši instanci do veřejného indexu PeerTube: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></target> |
1380 | 1372 | <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> | |
1381 | <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> | 1373 | </trans-unit> |
1382 | <trans-unit id="2081626998027585315" datatype="html"> | 1374 | <trans-unit id="2081626998027585315" datatype="html"> |
1383 | <source>It's time to configure your instance!</source> | 1375 | <source>It's time to configure your instance!</source> |
1384 | <target state="new">It's time to configure your instance!</target> | 1376 | <target state="new">It's time to configure your instance!</target> |
1385 | 1377 | <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> | |
1386 | <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> | 1378 | </trans-unit> |
1387 | <trans-unit id="5083058563861587027" datatype="html"> | 1379 | <trans-unit id="5083058563861587027" datatype="html"> |
1388 | <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> | 1380 | <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> |
1389 | <target state="new"> | 1381 | <target state="new"> |
@@ -1404,28 +1396,31 @@ The link will expire within 1 hour.</target> | |||
1404 | is very important for visitors to understand on what type of instance they are. | 1396 | is very important for visitors to understand on what type of instance they are. |
1405 | 1397 | ||
1406 | </target> | 1398 | </target> |
1407 | 1399 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">58</context></context-group> | |
1408 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 1400 | </trans-unit> |
1409 | <trans-unit id="5329436244765769292" datatype="html"> | 1401 | <trans-unit id="5329436244765769292" datatype="html"> |
1410 | <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> | 1402 | <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> |
1411 | <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> | 1403 | <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> |
1412 | 1404 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">64</context></context-group> | |
1413 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 1405 | </trans-unit> |
1414 | <trans-unit id="5704345824323933019" datatype="html"> | 1406 | <trans-unit id="5704345824323933019" datatype="html"> |
1415 | <source>Remind me later</source> | 1407 | <source>Remind me later</source> |
1416 | <target state="new">Remind me later</target> | 1408 | <target state="new">Remind me later</target> |
1417 | 1409 | <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> | |
1418 | <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/admin-welcome-modal.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit><trans-unit id="7997432701743294657" datatype="html"> | 1410 | <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> |
1419 | <source> Set up </source><target state="new"> Set up </target> | 1411 | </trans-unit> |
1420 | 1412 | <trans-unit id="7997432701743294657" datatype="html"> | |
1421 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 1413 | <source>Set up</source> |
1414 | <target state="new"> Set up </target> | ||
1415 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">35</context></context-group> | ||
1416 | </trans-unit> | ||
1422 | <trans-unit id="9202089339019827574" datatype="html"> | 1417 | <trans-unit id="9202089339019827574" datatype="html"> |
1423 | <source>Configure my instance</source> | 1418 | <source>Configure my instance</source> |
1424 | <target state="new"> | 1419 | <target state="new"> |
1425 | Configure my instance | 1420 | Configure my instance |
1426 | </target> | 1421 | </target> |
1427 | 1422 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">81</context></context-group> | |
1428 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit> | 1423 | </trans-unit> |
1429 | <trans-unit id="9005121595859995793" datatype="html"> | 1424 | <trans-unit id="9005121595859995793" datatype="html"> |
1430 | <source>Configuration warning!</source> | 1425 | <source>Configuration warning!</source> |
1431 | <target state="new">Configuration warning!</target> | 1426 | <target state="new">Configuration warning!</target> |
@@ -1605,17 +1600,17 @@ The link will expire within 1 hour.</target> | |||
1605 | <trans-unit id="2308975396733519902"> | 1600 | <trans-unit id="2308975396733519902"> |
1606 | <source>Create an account</source> | 1601 | <source>Create an account</source> |
1607 | <target>Vytvořit účet</target> | 1602 | <target>Vytvořit účet</target> |
1608 | 1603 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">54</context></context-group> | |
1609 | 1604 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">100</context></context-group> | |
1610 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">100</context></context-group></trans-unit> | 1605 | </trans-unit> |
1611 | <trans-unit id="3058024914967508975" datatype="html"> | 1606 | <trans-unit id="3058024914967508975" datatype="html"> |
1612 | <source>My videos</source> | 1607 | <source>My videos</source> |
1613 | <target state="new">My videos</target> | 1608 | <target state="new">My videos</target> |
1614 | 1609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">76</context></context-group> | |
1615 | 1610 | <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> | |
1616 | 1611 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">71</context></context-group> | |
1617 | 1612 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">77</context></context-group> | |
1618 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">76</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">71</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> | 1613 | </trans-unit> |
1619 | <trans-unit id="3108704604266608109" datatype="html"> | 1614 | <trans-unit id="3108704604266608109" datatype="html"> |
1620 | <source>My video imports</source> | 1615 | <source>My video imports</source> |
1621 | <target state="new">My video imports</target> | 1616 | <target state="new">My video imports</target> |
@@ -1643,9 +1638,11 @@ The link will expire within 1 hour.</target> | |||
1643 | <trans-unit id="8936704404804793618"> | 1638 | <trans-unit id="8936704404804793618"> |
1644 | <source>Videos</source> | 1639 | <source>Videos</source> |
1645 | <target>Videa</target> | 1640 | <target>Videa</target> |
1646 | 1641 | <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> | |
1647 | 1642 | <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> | |
1648 | <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/+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/+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> | 1643 | <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> |
1644 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">76</context></context-group> | ||
1645 | </trans-unit> | ||
1649 | <trans-unit id="2689878465089314112" datatype="html"> | 1646 | <trans-unit id="2689878465089314112" datatype="html"> |
1650 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> | 1647 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> |
1651 | <target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | 1648 | <target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> |
@@ -1660,11 +1657,11 @@ The link will expire within 1 hour.</target> | |||
1660 | <trans-unit id="1812379335568847528"> | 1657 | <trans-unit id="1812379335568847528"> |
1661 | <source>Subscriptions</source> | 1658 | <source>Subscriptions</source> |
1662 | <target>Odběry</target> | 1659 | <target>Odběry</target> |
1663 | 1660 | <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> | |
1664 | 1661 | <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> | |
1665 | 1662 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">58</context></context-group> | |
1666 | 1663 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">91</context></context-group> | |
1667 | <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><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">58</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> | 1664 | </trans-unit> |
1668 | <trans-unit id="186236568870281953"> | 1665 | <trans-unit id="186236568870281953"> |
1669 | <source>History</source> | 1666 | <source>History</source> |
1670 | <target>Historie</target> | 1667 | <target>Historie</target> |
@@ -1674,10 +1671,10 @@ The link will expire within 1 hour.</target> | |||
1674 | <trans-unit id="1504521795586863905" datatype="html"> | 1671 | <trans-unit id="1504521795586863905" datatype="html"> |
1675 | <source>VIDEOS</source> | 1672 | <source>VIDEOS</source> |
1676 | <target state="new">VIDEOS</target> | 1673 | <target state="new">VIDEOS</target> |
1677 | 1674 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">82</context></context-group> | |
1678 | 1675 | <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">215</context></context-group> | |
1679 | 1676 | <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> | |
1680 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">82</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">215</context></context-group><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></trans-unit> | 1677 | </trans-unit> |
1681 | <trans-unit id="667372110624203230" datatype="html"> | 1678 | <trans-unit id="667372110624203230" datatype="html"> |
1682 | <source>Import jobs concurrency</source> | 1679 | <source>Import jobs concurrency</source> |
1683 | <target state="new">Import jobs concurrency</target> | 1680 | <target state="new">Import jobs concurrency</target> |
@@ -1718,8 +1715,9 @@ The link will expire within 1 hour.</target> | |||
1718 | <trans-unit id="7922989125096435449" datatype="html"> | 1715 | <trans-unit id="7922989125096435449" datatype="html"> |
1719 | <source>Contact</source> | 1716 | <source>Contact</source> |
1720 | <target state="new">Contact</target> | 1717 | <target state="new">Contact</target> |
1721 | 1718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">36</context></context-group> | |
1722 | <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">136</context></context-group></trans-unit> | 1719 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">136</context></context-group> |
1720 | </trans-unit> | ||
1723 | <trans-unit id="403762424689874454"> | 1721 | <trans-unit id="403762424689874454"> |
1724 | <source>View your notifications</source> | 1722 | <source>View your notifications</source> |
1725 | <target>Zobrazit vaše oznámení</target> | 1723 | <target>Zobrazit vaše oznámení</target> |
@@ -1751,23 +1749,35 @@ The link will expire within 1 hour.</target> | |||
1751 | <source>See all your notifications</source> | 1749 | <source>See all your notifications</source> |
1752 | <target>Zobrazit všechna oznámení</target> | 1750 | <target>Zobrazit všechna oznámení</target> |
1753 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">49</context></context-group> | 1751 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">49</context></context-group> |
1754 | </trans-unit><trans-unit id="5108072242786374364" datatype="html"> | 1752 | </trans-unit> |
1755 | <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> | 1753 | <trans-unit id="5108072242786374364" datatype="html"> |
1756 | 1754 | <source>Welcome to <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, dear user!</source> | |
1757 | <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"> | 1755 | <target state="new">Welcome to <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, dear user!</target> |
1758 | <source>It's time to set up your account profile!</source><target state="new">It's time to set up your account profile!</target> | 1756 | <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> |
1759 | 1757 | </trans-unit> | |
1760 | <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"> | 1758 | <trans-unit id="8821712929823045567" datatype="html"> |
1761 | <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> | 1759 | <source>It's time to set up your account profile!</source> |
1762 | 1760 | <target state="new">It's time to set up your account profile!</target> | |
1763 | <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"> | 1761 | <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> |
1764 | <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> | 1762 | </trans-unit> |
1765 | 1763 | <trans-unit id="7239874680342223476" datatype="html"> | |
1766 | <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"> | 1764 | <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> |
1767 | <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> | 1765 | <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> |
1768 | 1766 | <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> | |
1769 | <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"> | 1767 | </trans-unit> |
1770 | <source>Don't show me this anymore</source><target state="new">Don't show me this anymore</target> | 1768 | <trans-unit id="5856432243446401016" datatype="html"> |
1769 | <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> | ||
1770 | <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> | ||
1771 | <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> | ||
1772 | </trans-unit> | ||
1773 | <trans-unit id="3221645359464920754" datatype="html"> | ||
1774 | <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> | ||
1775 | <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> | ||
1776 | <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> | ||
1777 | </trans-unit> | ||
1778 | <trans-unit id="2218100934178971211" datatype="html"> | ||
1779 | <source>Don't show me this anymore</source> | ||
1780 | <target state="new">Don't show me this anymore</target> | ||
1771 | <context-group purpose="location"> | 1781 | <context-group purpose="location"> |
1772 | <context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context> | 1782 | <context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context> |
1773 | <context context-type="linenumber">23</context> | 1783 | <context context-type="linenumber">23</context> |
@@ -1776,8 +1786,8 @@ The link will expire within 1 hour.</target> | |||
1776 | <trans-unit id="4424964105331349857" datatype="html"> | 1786 | <trans-unit id="4424964105331349857" datatype="html"> |
1777 | <source>I'm a teapot</source> | 1787 | <source>I'm a teapot</source> |
1778 | <target state="new">I'm a teapot</target> | 1788 | <target state="new">I'm a teapot</target> |
1779 | 1789 | <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> | |
1780 | <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> | 1790 | </trans-unit> |
1781 | <trans-unit id="1597262876035959248" datatype="html"> | 1791 | <trans-unit id="1597262876035959248" datatype="html"> |
1782 | <source>That's an error.</source> | 1792 | <source>That's an error.</source> |
1783 | <target state="new">That's an error.</target> | 1793 | <target state="new">That's an error.</target> |
@@ -1870,9 +1880,8 @@ The link will expire within 1 hour.</target> | |||
1870 | <trans-unit id="2971365540217107489" datatype="html"> | 1880 | <trans-unit id="2971365540217107489" datatype="html"> |
1871 | <source>Media is too large for the server. Please contact you administrator if you want to increase the limit size.</source> | 1881 | <source>Media is too large for the server. Please contact you administrator if you want to increase the limit size.</source> |
1872 | <target state="new">Media is too large for the server. Please contact you administrator if you want to increase the limit size.</target> | 1882 | <target state="new">Media is too large for the server. Please contact you administrator if you want to increase the limit size.</target> |
1873 | 1883 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">65</context></context-group> | |
1874 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">65</context></context-group></trans-unit> | 1884 | </trans-unit> |
1875 | |||
1876 | <trans-unit id="5131854469652959713" datatype="html"> | 1885 | <trans-unit id="5131854469652959713" datatype="html"> |
1877 | <source>GLOBAL SEARCH</source> | 1886 | <source>GLOBAL SEARCH</source> |
1878 | <target state="new">GLOBAL SEARCH</target> | 1887 | <target state="new">GLOBAL SEARCH</target> |
@@ -1952,19 +1961,19 @@ The link will expire within 1 hour.</target> | |||
1952 | <target state="new"> | 1961 | <target state="new"> |
1953 | Reset | 1962 | Reset |
1954 | </target> | 1963 | </target> |
1955 | 1964 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">9</context></context-group> | |
1956 | 1965 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">23</context></context-group> | |
1957 | 1966 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">42</context></context-group> | |
1958 | 1967 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">61</context></context-group> | |
1959 | 1968 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">75</context></context-group> | |
1960 | 1969 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">110</context></context-group> | |
1961 | 1970 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">123</context></context-group> | |
1962 | 1971 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">136</context></context-group> | |
1963 | 1972 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">149</context></context-group> | |
1964 | 1973 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">164</context></context-group> | |
1965 | 1974 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">172</context></context-group> | |
1966 | 1975 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">205</context></context-group> | |
1967 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">9</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">61</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">75</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">110</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">123</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">136</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">149</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">164</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">172</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></trans-unit> | 1976 | </trans-unit> |
1968 | <trans-unit id="4540121094340493564" datatype="html"> | 1977 | <trans-unit id="4540121094340493564" datatype="html"> |
1969 | <source>Display only</source> | 1978 | <source>Display only</source> |
1970 | <target state="new">Display only</target> | 1979 | <target state="new">Display only</target> |
@@ -1976,15 +1985,19 @@ The link will expire within 1 hour.</target> | |||
1976 | <trans-unit id="2180217594100853008" datatype="html"> | 1985 | <trans-unit id="2180217594100853008" datatype="html"> |
1977 | <source>Live videos</source> | 1986 | <source>Live videos</source> |
1978 | <target state="new">Live videos</target> | 1987 | <target state="new">Live videos</target> |
1979 | 1988 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">29</context></context-group> | |
1980 | 1989 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">64</context></context-group> | |
1981 | <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/+search/search-filters.component.ts</context><context context-type="linenumber">64</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">158</context></context-group></trans-unit> | 1990 | <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> |
1991 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">158</context></context-group> | ||
1992 | </trans-unit> | ||
1982 | <trans-unit id="2392481201920342009" datatype="html"> | 1993 | <trans-unit id="2392481201920342009" datatype="html"> |
1983 | <source>VOD videos</source> | 1994 | <source>VOD videos</source> |
1984 | <target state="new">VOD videos</target> | 1995 | <target state="new">VOD videos</target> |
1985 | 1996 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">34</context></context-group> | |
1986 | 1997 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">60</context></context-group> | |
1987 | <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/+search/search-filters.component.ts</context><context context-type="linenumber">60</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">164</context></context-group></trans-unit> | 1998 | <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> |
1999 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">164</context></context-group> | ||
2000 | </trans-unit> | ||
1988 | <trans-unit id="7970752988844762769"> | 2001 | <trans-unit id="7970752988844762769"> |
1989 | <source>Published date</source> | 2002 | <source>Published date</source> |
1990 | <target>Datum publikace</target> | 2003 | <target>Datum publikace</target> |
@@ -2008,9 +2021,9 @@ The link will expire within 1 hour.</target> | |||
2008 | <trans-unit id="7410432243549869948"> | 2021 | <trans-unit id="7410432243549869948"> |
2009 | <source>Duration</source> | 2022 | <source>Duration</source> |
2010 | <target>Trvání</target> | 2023 | <target>Trvání</target> |
2011 | 2024 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">108</context></context-group> | |
2012 | 2025 | <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> | |
2013 | <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> | 2026 | </trans-unit> |
2014 | <trans-unit id="3589238979642505685"> | 2027 | <trans-unit id="3589238979642505685"> |
2015 | <source>Display sensitive content</source> | 2028 | <source>Display sensitive content</source> |
2016 | <target>Zobrazit citlivý obsah</target> | 2029 | <target>Zobrazit citlivý obsah</target> |
@@ -2029,10 +2042,10 @@ The link will expire within 1 hour.</target> | |||
2029 | <trans-unit id="1806667489382256324"> | 2042 | <trans-unit id="1806667489382256324"> |
2030 | <source>Category</source> | 2043 | <source>Category</source> |
2031 | <target>Kategorie</target> | 2044 | <target>Kategorie</target> |
2032 | 2045 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">121</context></context-group> | |
2033 | 2046 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">63</context></context-group> | |
2034 | 2047 | <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> | |
2035 | <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">63</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> | 2048 | </trans-unit> |
2036 | <trans-unit id="5478121364779850827" datatype="html"> | 2049 | <trans-unit id="5478121364779850827" datatype="html"> |
2037 | <source>Reset</source> | 2050 | <source>Reset</source> |
2038 | <target state="new"> | 2051 | <target state="new"> |
@@ -2052,10 +2065,10 @@ The link will expire within 1 hour.</target> | |||
2052 | <trans-unit id="9065795501872450602"> | 2065 | <trans-unit id="9065795501872450602"> |
2053 | <source>Licence</source> | 2066 | <source>Licence</source> |
2054 | <target>Licence</target> | 2067 | <target>Licence</target> |
2055 | 2068 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">134</context></context-group> | |
2056 | 2069 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">74</context></context-group> | |
2057 | 2070 | <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> | |
2058 | <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">74</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> | 2071 | </trans-unit> |
2059 | <trans-unit id="4184995865179898060" datatype="html"> | 2072 | <trans-unit id="4184995865179898060" datatype="html"> |
2060 | <source>Display all licenses</source> | 2073 | <source>Display all licenses</source> |
2061 | <target state="new">Display all licenses</target> | 2074 | <target state="new">Display all licenses</target> |
@@ -2064,11 +2077,11 @@ The link will expire within 1 hour.</target> | |||
2064 | <trans-unit id="2826581353496868063"> | 2077 | <trans-unit id="2826581353496868063"> |
2065 | <source>Language</source> | 2078 | <source>Language</source> |
2066 | <target>Jazyk</target> | 2079 | <target>Jazyk</target> |
2067 | 2080 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">147</context></context-group> | |
2068 | 2081 | <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> | |
2069 | 2082 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">94</context></context-group> | |
2070 | 2083 | <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> | |
2071 | <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">94</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> | 2084 | </trans-unit> |
2072 | <trans-unit id="7904142744051432458" datatype="html"> | 2085 | <trans-unit id="7904142744051432458" datatype="html"> |
2073 | <source>Display all languages</source> | 2086 | <source>Display all languages</source> |
2074 | <target state="new">Display all languages</target> | 2087 | <target state="new">Display all languages</target> |
@@ -2083,8 +2096,10 @@ The link will expire within 1 hour.</target> | |||
2083 | <source>One of these tags</source> | 2096 | <source>One of these tags</source> |
2084 | <target>Jeden z těchto štítků</target> | 2097 | <target>Jeden z těchto štítků</target> |
2085 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">170</context></context-group> | 2098 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">170</context></context-group> |
2086 | </trans-unit><trans-unit id="5143793904897598509" datatype="html"> | 2099 | </trans-unit> |
2087 | <source>PeerTube instance host</source><target state="new">PeerTube instance host</target> | 2100 | <trans-unit id="5143793904897598509" datatype="html"> |
2101 | <source>PeerTube instance host</source> | ||
2102 | <target state="new">PeerTube instance host</target> | ||
2088 | <context-group purpose="location"> | 2103 | <context-group purpose="location"> |
2089 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> | 2104 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> |
2090 | <context context-type="linenumber">178</context> | 2105 | <context context-type="linenumber">178</context> |
@@ -2093,13 +2108,13 @@ The link will expire within 1 hour.</target> | |||
2093 | <trans-unit id="283421392567624698" datatype="html"> | 2108 | <trans-unit id="283421392567624698" datatype="html"> |
2094 | <source>Search target</source> | 2109 | <source>Search target</source> |
2095 | <target state="new">Search target</target> | 2110 | <target state="new">Search target</target> |
2096 | 2111 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">187</context></context-group> | |
2097 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">187</context></context-group></trans-unit> | 2112 | </trans-unit> |
2098 | <trans-unit id="2489767671380266270" datatype="html"> | 2113 | <trans-unit id="2489767671380266270" datatype="html"> |
2099 | <source>Vidiverse</source> | 2114 | <source>Vidiverse</source> |
2100 | <target state="new">Vidiverse</target> | 2115 | <target state="new">Vidiverse</target> |
2101 | 2116 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">197</context></context-group> | |
2102 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">197</context></context-group></trans-unit> | 2117 | </trans-unit> |
2103 | <trans-unit id="5478121364779850827" datatype="html"> | 2118 | <trans-unit id="5478121364779850827" datatype="html"> |
2104 | <source>Reset</source> | 2119 | <source>Reset</source> |
2105 | <target state="new"> | 2120 | <target state="new"> |
@@ -2110,8 +2125,8 @@ The link will expire within 1 hour.</target> | |||
2110 | <trans-unit id="8829497237648100098"> | 2125 | <trans-unit id="8829497237648100098"> |
2111 | <source>Filter</source> | 2126 | <source>Filter</source> |
2112 | <target>Filtr</target> | 2127 | <target>Filtr</target> |
2113 | 2128 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">208</context></context-group> | |
2114 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">208</context></context-group></trans-unit> | 2129 | </trans-unit> |
2115 | <trans-unit id="6479885129995567639" datatype="html"> | 2130 | <trans-unit id="6479885129995567639" datatype="html"> |
2116 | <source>Video channels</source> | 2131 | <source>Video channels</source> |
2117 | <target state="new">Video channels</target> | 2132 | <target state="new">Video channels</target> |
@@ -2147,9 +2162,9 @@ The link will expire within 1 hour.</target> | |||
2147 | <trans-unit id="7886570921510760899"> | 2162 | <trans-unit id="7886570921510760899"> |
2148 | <source>Tags</source> | 2163 | <source>Tags</source> |
2149 | <target>Štítky</target> | 2164 | <target>Štítky</target> |
2150 | 2165 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">19</context></context-group> | |
2151 | 2166 | <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> | |
2152 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">19</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> | 2167 | </trans-unit> |
2153 | <trans-unit id="354332809647287722" datatype="html"> | 2168 | <trans-unit id="354332809647287722" datatype="html"> |
2154 | <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> | 2169 | <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> |
2155 | <target state="new"> | 2170 | <target state="new"> |
@@ -2172,14 +2187,14 @@ The link will expire within 1 hour.</target> | |||
2172 | <trans-unit id="6179532215548637839" datatype="html"> | 2187 | <trans-unit id="6179532215548637839" datatype="html"> |
2173 | <source>extensions</source> | 2188 | <source>extensions</source> |
2174 | <target state="new">extensions</target> | 2189 | <target state="new">extensions</target> |
2175 | 2190 | <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> | |
2176 | <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> | 2191 | </trans-unit> |
2177 | <trans-unit id="8054921481196967348" datatype="html"> | 2192 | <trans-unit id="8054921481196967348" datatype="html"> |
2178 | <source>This image is too large.</source> | 2193 | <source>This image is too large.</source> |
2179 | <target state="new">This image is too large.</target> | 2194 | <target state="new">This image is too large.</target> |
2180 | 2195 | <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> | |
2181 | 2196 | <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> | |
2182 | <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> | 2197 | </trans-unit> |
2183 | <trans-unit id="6259523075362402245" datatype="html"> | 2198 | <trans-unit id="6259523075362402245" datatype="html"> |
2184 | <source>Upload a new banner</source> | 2199 | <source>Upload a new banner</source> |
2185 | <target state="new">Upload a new banner</target> | 2200 | <target state="new">Upload a new banner</target> |
@@ -2204,13 +2219,13 @@ The link will expire within 1 hour.</target> | |||
2204 | <trans-unit id="3220184757632006830" datatype="html"> | 2219 | <trans-unit id="3220184757632006830" datatype="html"> |
2205 | <source>Account avatar</source> | 2220 | <source>Account avatar</source> |
2206 | <target state="new">Account avatar</target> | 2221 | <target state="new">Account avatar</target> |
2207 | 2222 | <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> | |
2208 | <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> | 2223 | </trans-unit> |
2209 | <trans-unit id="1138964882426023395" datatype="html"> | 2224 | <trans-unit id="1138964882426023395" datatype="html"> |
2210 | <source>Channel avatar</source> | 2225 | <source>Channel avatar</source> |
2211 | <target state="new">Channel avatar</target> | 2226 | <target state="new">Channel avatar</target> |
2212 | 2227 | <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> | |
2213 | <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> | 2228 | </trans-unit> |
2214 | <trans-unit id="1358902062258458923" datatype="html"> | 2229 | <trans-unit id="1358902062258458923" datatype="html"> |
2215 | <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> | 2230 | <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> |
2216 | <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> | 2231 | <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> |
@@ -2226,26 +2241,34 @@ The link will expire within 1 hour.</target> | |||
2226 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context> | 2241 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context> |
2227 | <context context-type="linenumber">24</context> | 2242 | <context context-type="linenumber">24</context> |
2228 | </context-group> | 2243 | </context-group> |
2229 | </trans-unit><trans-unit id="283609029522452529" datatype="html"> | 2244 | </trans-unit> |
2230 | <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> | 2245 | <trans-unit id="283609029522452529" datatype="html"> |
2246 | <source>Error in channel miniature component: <x id="PH" equiv-text="err.message"/></source> | ||
2247 | <target state="new">Error in channel miniature component: <x id="PH" equiv-text="err.message"/></target> | ||
2231 | <context-group purpose="location"> | 2248 | <context-group purpose="location"> |
2232 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts</context> | 2249 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts</context> |
2233 | <context context-type="linenumber">57</context> | 2250 | <context context-type="linenumber">57</context> |
2234 | </context-group> | 2251 | </context-group> |
2235 | </trans-unit><trans-unit id="3059355667050002541" datatype="html"> | 2252 | </trans-unit> |
2236 | <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> | 2253 | <trans-unit id="3059355667050002541" datatype="html"> |
2254 | <source>Error in playlist miniature component: <x id="PH" equiv-text="err.message"/></source> | ||
2255 | <target state="new">Error in playlist miniature component: <x id="PH" equiv-text="err.message"/></target> | ||
2237 | <context-group purpose="location"> | 2256 | <context-group purpose="location"> |
2238 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/playlist-miniature-markup.component.ts</context> | 2257 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/playlist-miniature-markup.component.ts</context> |
2239 | <context context-type="linenumber">47</context> | 2258 | <context context-type="linenumber">47</context> |
2240 | </context-group> | 2259 | </context-group> |
2241 | </trans-unit><trans-unit id="863691161959989717" datatype="html"> | 2260 | </trans-unit> |
2242 | <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> | 2261 | <trans-unit id="863691161959989717" datatype="html"> |
2262 | <source>Error in video miniature component: <x id="PH" equiv-text="err.message"/></source> | ||
2263 | <target state="new">Error in video miniature component: <x id="PH" equiv-text="err.message"/></target> | ||
2243 | <context-group purpose="location"> | 2264 | <context-group purpose="location"> |
2244 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts</context> | 2265 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts</context> |
2245 | <context context-type="linenumber">59</context> | 2266 | <context context-type="linenumber">59</context> |
2246 | </context-group> | 2267 | </context-group> |
2247 | </trans-unit><trans-unit id="1247256698916587400" datatype="html"> | 2268 | </trans-unit> |
2248 | <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> | 2269 | <trans-unit id="1247256698916587400" datatype="html"> |
2270 | <source>Error in videos list component: <x id="PH" equiv-text="err.message"/></source> | ||
2271 | <target state="new">Error in videos list component: <x id="PH" equiv-text="err.message"/></target> | ||
2249 | <context-group purpose="location"> | 2272 | <context-group purpose="location"> |
2250 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.ts</context> | 2273 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.ts</context> |
2251 | <context context-type="linenumber">77</context> | 2274 | <context context-type="linenumber">77</context> |
@@ -2306,16 +2329,16 @@ The link will expire within 1 hour.</target> | |||
2306 | <trans-unit id="8440128775129354214"> | 2329 | <trans-unit id="8440128775129354214"> |
2307 | <source>Privacy</source> | 2330 | <source>Privacy</source> |
2308 | <target>Soukromí</target> | 2331 | <target>Soukromí</target> |
2309 | 2332 | <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> | |
2310 | 2333 | <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> | |
2311 | 2334 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">106</context></context-group> | |
2312 | 2335 | <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> | |
2313 | 2336 | <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> | |
2314 | 2337 | <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> | |
2315 | 2338 | <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> | |
2316 | 2339 | <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> | |
2317 | 2340 | <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> | |
2318 | <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">106</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> | 2341 | </trans-unit> |
2319 | <trans-unit id="2806917038528218276" datatype="html"> | 2342 | <trans-unit id="2806917038528218276" datatype="html"> |
2320 | <source>FAQ</source> | 2343 | <source>FAQ</source> |
2321 | <target state="new">FAQ</target> | 2344 | <target state="new">FAQ</target> |
@@ -2439,10 +2462,10 @@ The link will expire within 1 hour.</target> | |||
2439 | <trans-unit id="2602773901491715295"> | 2462 | <trans-unit id="2602773901491715295"> |
2440 | <source>Captions</source> | 2463 | <source>Captions</source> |
2441 | <target>Titulky</target> | 2464 | <target>Titulky</target> |
2442 | 2465 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">155</context></context-group> | |
2443 | 2466 | <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> | |
2444 | 2467 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">181</context></context-group> | |
2445 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">155</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">181</context></context-group></trans-unit> | 2468 | </trans-unit> |
2446 | <trans-unit id="1168086599577356916" datatype="html"> | 2469 | <trans-unit id="1168086599577356916" datatype="html"> |
2447 | <source>Video preview</source> | 2470 | <source>Video preview</source> |
2448 | <target state="new">Video preview</target> | 2471 | <target state="new">Video preview</target> |
@@ -2583,17 +2606,17 @@ The link will expire within 1 hour.</target> | |||
2583 | <trans-unit id="4021752662928002901"> | 2606 | <trans-unit id="4021752662928002901"> |
2584 | <source>Update</source> | 2607 | <source>Update</source> |
2585 | <target>Aktualizovat</target> | 2608 | <target>Aktualizovat</target> |
2586 | 2609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">180</context></context-group> | |
2587 | 2610 | <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> | |
2588 | 2611 | <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">45</context></context-group> | |
2589 | 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">68</context></context-group> | |
2590 | 2613 | <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> | |
2591 | 2614 | <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> | |
2592 | 2615 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">18</context></context-group> | |
2593 | 2616 | <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> | |
2594 | 2617 | <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> | |
2595 | 2618 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">284</context></context-group> | |
2596 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">180</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">45</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">18</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">284</context></context-group></trans-unit> | 2619 | </trans-unit> |
2597 | <trans-unit id="6722765664648523978"> | 2620 | <trans-unit id="6722765664648523978"> |
2598 | <source>Select the file to upload</source> | 2621 | <source>Select the file to upload</source> |
2599 | <target>Zvolte soubor k nahrání</target> | 2622 | <target>Zvolte soubor k nahrání</target> |
@@ -2603,13 +2626,13 @@ The link will expire within 1 hour.</target> | |||
2603 | <trans-unit id="9172233176401579786" datatype="html"> | 2626 | <trans-unit id="9172233176401579786" datatype="html"> |
2604 | <source>Scheduled</source> | 2627 | <source>Scheduled</source> |
2605 | <target state="new">Scheduled</target> | 2628 | <target state="new">Scheduled</target> |
2606 | 2629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">192</context></context-group> | |
2607 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">192</context></context-group></trans-unit> | 2630 | </trans-unit> |
2608 | <trans-unit id="1435317307066082710" datatype="html"> | 2631 | <trans-unit id="1435317307066082710" datatype="html"> |
2609 | <source>Hide the video until a specific date</source> | 2632 | <source>Hide the video until a specific date</source> |
2610 | <target state="new">Hide the video until a specific date</target> | 2633 | <target state="new">Hide the video until a specific date</target> |
2611 | 2634 | <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> | |
2612 | <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> | 2635 | </trans-unit> |
2613 | <trans-unit id="6148369758871787018" datatype="html"> | 2636 | <trans-unit id="6148369758871787018" datatype="html"> |
2614 | <source>Video background image</source> | 2637 | <source>Video background image</source> |
2615 | <target state="new">Video background image</target> | 2638 | <target state="new">Video background image</target> |
@@ -2670,25 +2693,31 @@ The link will expire within 1 hour.</target> | |||
2670 | <source>Upload on hold</source> | 2693 | <source>Upload on hold</source> |
2671 | <target state="new">Upload on hold</target> | 2694 | <target state="new">Upload on hold</target> |
2672 | 2695 | ||
2673 | <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">167</context></context-group></trans-unit> | 2696 | <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">174</context></context-group></trans-unit> |
2674 | <trans-unit id="285180972645018518" datatype="html"> | 2697 | <trans-unit id="285180972645018518" datatype="html"> |
2675 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2698 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2676 | <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> | 2699 | <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> |
2677 | 2700 | <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> | |
2678 | <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"> | 2701 | </trans-unit> |
2679 | <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> | 2702 | <trans-unit id="1138810463037464722" datatype="html"> |
2703 | <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> | ||
2704 | <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> | ||
2680 | <context-group purpose="location"> | 2705 | <context-group purpose="location"> |
2681 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 2706 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
2682 | <context context-type="linenumber">104</context> | 2707 | <context context-type="linenumber">104</context> |
2683 | </context-group> | 2708 | </context-group> |
2684 | </trans-unit><trans-unit id="438743381693904838" datatype="html"> | 2709 | </trans-unit> |
2685 | <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> | 2710 | <trans-unit id="438743381693904838" datatype="html"> |
2711 | <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> | ||
2712 | <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> | ||
2686 | <context-group purpose="location"> | 2713 | <context-group purpose="location"> |
2687 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 2714 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
2688 | <context context-type="linenumber">106</context> | 2715 | <context context-type="linenumber">106</context> |
2689 | </context-group> | 2716 | </context-group> |
2690 | </trans-unit><trans-unit id="6796692581512042469" datatype="html"> | 2717 | </trans-unit> |
2691 | <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> | 2718 | <trans-unit id="6796692581512042469" datatype="html"> |
2719 | <source>Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.</source> | ||
2720 | <target state="new">Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.</target> | ||
2692 | <context-group purpose="location"> | 2721 | <context-group purpose="location"> |
2693 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 2722 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
2694 | <context context-type="linenumber">108</context> | 2723 | <context context-type="linenumber">108</context> |
@@ -2697,8 +2726,8 @@ The link will expire within 1 hour.</target> | |||
2697 | <trans-unit id="2587226585711833549" datatype="html"> | 2726 | <trans-unit id="2587226585711833549" datatype="html"> |
2698 | <source>Read instance rules for help</source> | 2727 | <source>Read instance rules for help</source> |
2699 | <target state="new">Read instance rules for help</target> | 2728 | <target state="new">Read instance rules for help</target> |
2700 | 2729 | <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> | |
2701 | <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> | 2730 | </trans-unit> |
2702 | <trans-unit id="3455474330346212563" datatype="html"> | 2731 | <trans-unit id="3455474330346212563" datatype="html"> |
2703 | <source>Select the torrent to import</source> | 2732 | <source>Select the torrent to import</source> |
2704 | <target state="new">Select the torrent to import</target> | 2733 | <target state="new">Select the torrent to import</target> |
@@ -2725,23 +2754,23 @@ The link will expire within 1 hour.</target> | |||
2725 | <trans-unit id="4422946962830681102" datatype="html"> | 2754 | <trans-unit id="4422946962830681102" datatype="html"> |
2726 | <source>Torrents with only 1 file are supported.</source> | 2755 | <source>Torrents with only 1 file are supported.</source> |
2727 | <target state="new">Torrents with only 1 file are supported.</target> | 2756 | <target state="new">Torrents with only 1 file are supported.</target> |
2728 | 2757 | <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">120</context></context-group> | |
2729 | <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">120</context></context-group></trans-unit> | 2758 | </trans-unit> |
2730 | <trans-unit id="7860848084471862305" datatype="html"> | 2759 | <trans-unit id="7860848084471862305" datatype="html"> |
2731 | <source>Cannot create live because this instance have too many created lives</source> | 2760 | <source>Cannot create live because this instance have too many created lives</source> |
2732 | <target state="new">Cannot create live because this instance have too many created lives</target> | 2761 | <target state="new">Cannot create live because this instance have too many created lives</target> |
2733 | 2762 | <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">101</context></context-group> | |
2734 | <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">101</context></context-group></trans-unit> | 2763 | </trans-unit> |
2735 | <trans-unit id="1278564497286613571" datatype="html"> | 2764 | <trans-unit id="1278564497286613571" datatype="html"> |
2736 | <source>Cannot create live because you created too many lives</source> | 2765 | <source>Cannot create live because you created too many lives</source> |
2737 | <target state="new">Cannot create live because you created too many lives</target> | 2766 | <target state="new">Cannot create live because you created too many lives</target> |
2738 | 2767 | <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> | |
2739 | <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> | 2768 | </trans-unit> |
2740 | <trans-unit id="2621043320678012413" datatype="html"> | 2769 | <trans-unit id="2621043320678012413" datatype="html"> |
2741 | <source>Live published.</source> | 2770 | <source>Live published.</source> |
2742 | <target state="new">Live published.</target> | 2771 | <target state="new">Live published.</target> |
2743 | 2772 | <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> | |
2744 | <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> | 2773 | </trans-unit> |
2745 | <trans-unit id="8218579597782287078" datatype="html"> | 2774 | <trans-unit id="8218579597782287078" datatype="html"> |
2746 | <source>Go Live</source> | 2775 | <source>Go Live</source> |
2747 | <target state="new">Go Live</target> | 2776 | <target state="new">Go Live</target> |
@@ -2766,57 +2795,57 @@ The link will expire within 1 hour.</target> | |||
2766 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to upload your videos. | 2795 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to upload your videos. |
2767 | 2796 | ||
2768 | </target> | 2797 | </target> |
2769 | 2798 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">34</context></context-group> | |
2770 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 2799 | </trans-unit> |
2771 | <trans-unit id="293476877021544115" datatype="html"> | 2800 | <trans-unit id="293476877021544115" datatype="html"> |
2772 | <source>Import <x id="INTERPOLATION"/></source> | 2801 | <source>Import <x id="INTERPOLATION"/></source> |
2773 | <target state="translated">Importovat <x id="INTERPOLATION"/></target> | 2802 | <target state="translated">Importovat <x id="INTERPOLATION"/></target> |
2774 | 2803 | <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> | |
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></trans-unit> | 2804 | </trans-unit> |
2776 | <trans-unit id="4766833966971572147" datatype="html"> | 2805 | <trans-unit id="4766833966971572147" datatype="html"> |
2777 | <source>Upload <x id="INTERPOLATION"/></source> | 2806 | <source>Upload <x id="INTERPOLATION"/></source> |
2778 | <target state="new">Upload | 2807 | <target state="new">Upload |
2779 | <x id="INTERPOLATION" equiv-text="{{ videoName }}"/> | 2808 | <x id="INTERPOLATION" equiv-text="{{ videoName }}"/> |
2780 | </target> | 2809 | </target> |
2781 | 2810 | <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> | |
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></trans-unit> | 2811 | </trans-unit> |
2783 | <trans-unit id="7003826819757856838"> | 2812 | <trans-unit id="7003826819757856838"> |
2784 | <source>Upload a file</source> | 2813 | <source>Upload a file</source> |
2785 | <target>Nahrát soubor</target> | 2814 | <target>Nahrát soubor</target> |
2786 | 2815 | <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> | |
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></trans-unit> | 2816 | </trans-unit> |
2788 | <trans-unit id="2061223017941329156" datatype="html"> | 2817 | <trans-unit id="2061223017941329156" datatype="html"> |
2789 | <source>Import with URL</source> | 2818 | <source>Import with URL</source> |
2790 | <target state="new">Import with URL</target> | 2819 | <target state="new">Import with URL</target> |
2791 | 2820 | <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> | |
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></trans-unit> | 2821 | </trans-unit> |
2793 | <trans-unit id="8740142697043012403" datatype="html"> | 2822 | <trans-unit id="8740142697043012403" datatype="html"> |
2794 | <source>Import with torrent</source> | 2823 | <source>Import with torrent</source> |
2795 | <target state="new">Import with torrent</target> | 2824 | <target state="new">Import with torrent</target> |
2796 | 2825 | <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> | |
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></trans-unit> | 2826 | </trans-unit> |
2798 | <trans-unit id="6066940329544282265" datatype="html"> | 2827 | <trans-unit id="6066940329544282265" datatype="html"> |
2799 | <source>Go live</source> | 2828 | <source>Go live</source> |
2800 | <target state="new">Go live</target> | 2829 | <target state="new">Go live</target> |
2801 | 2830 | <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> | |
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></trans-unit> | 2831 | </trans-unit> |
2803 | <trans-unit id="3907889591911208762" datatype="html"> | 2832 | <trans-unit id="3907889591911208762" datatype="html"> |
2804 | <source>Other videos</source> | 2833 | <source>Other videos</source> |
2805 | <target state="new"> | 2834 | <target state="new"> |
2806 | Other videos | 2835 | Other videos |
2807 | </target> | 2836 | </target> |
2808 | 2837 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html</context><context context-type="linenumber">5</context></context-group> | |
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">5</context></context-group></trans-unit> | 2838 | </trans-unit> |
2810 | <trans-unit id="2913936134410914576" datatype="html"> | 2839 | <trans-unit id="2913936134410914576" datatype="html"> |
2811 | <source>AUTOPLAY</source> | 2840 | <source>AUTOPLAY</source> |
2812 | <target state="new">AUTOPLAY</target> | 2841 | <target state="new">AUTOPLAY</target> |
2813 | 2842 | <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> | |
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></trans-unit> | 2843 | </trans-unit> |
2815 | <trans-unit id="4619111912751495491" datatype="html"> | 2844 | <trans-unit id="4619111912751495491" datatype="html"> |
2816 | <source>Report this comment</source> | 2845 | <source>Report this comment</source> |
2817 | <target state="new">Report this comment</target> | 2846 | <target state="new">Report this comment</target> |
2818 | 2847 | <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> | |
2819 | <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> | 2848 | </trans-unit> |
2820 | <trans-unit id="7419704019640008953"> | 2849 | <trans-unit id="7419704019640008953"> |
2821 | <source>Share</source> | 2850 | <source>Share</source> |
2822 | <target>Sdílet</target> | 2851 | <target>Sdílet</target> |
@@ -2939,64 +2968,58 @@ The link will expire within 1 hour.</target> | |||
2939 | <trans-unit id="8928816882866356838" datatype="html"> | 2968 | <trans-unit id="8928816882866356838" datatype="html"> |
2940 | <source>Public</source> | 2969 | <source>Public</source> |
2941 | <target state="new">Public</target> | 2970 | <target state="new">Public</target> |
2942 | 2971 | <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> | |
2943 | <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> | 2972 | </trans-unit> |
2944 | |||
2945 | |||
2946 | |||
2947 | |||
2948 | |||
2949 | <trans-unit id="4416005356063364306" datatype="html"> | 2973 | <trans-unit id="4416005356063364306" datatype="html"> |
2950 | <source>This video is blocked.</source> | 2974 | <source>This video is blocked.</source> |
2951 | <target state="new">This video is blocked.</target> | 2975 | <target state="new">This video is blocked.</target> |
2952 | 2976 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">26</context></context-group> | |
2953 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 2977 | </trans-unit> |
2954 | <trans-unit id="2482137713226830428" datatype="html"> | 2978 | <trans-unit id="2482137713226830428" datatype="html"> |
2955 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source> | 2979 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source> |
2956 | <target state="new">Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></target> | 2980 | <target state="new">Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></target> |
2957 | 2981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">31</context></context-group> | |
2958 | 2982 | </trans-unit> | |
2959 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | ||
2960 | <trans-unit id="1813238393038053050" datatype="html"> | 2983 | <trans-unit id="1813238393038053050" datatype="html"> |
2961 | <source>SUPPORT</source> | 2984 | <source>SUPPORT</source> |
2962 | <target state="new">SUPPORT</target> | 2985 | <target state="new">SUPPORT</target> |
2963 | 2986 | <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> | |
2964 | <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> | 2987 | </trans-unit> |
2965 | <trans-unit id="9219888125536520293" datatype="html"> | 2988 | <trans-unit id="9219888125536520293" datatype="html"> |
2966 | <source>SHARE</source> | 2989 | <source>SHARE</source> |
2967 | <target state="new">SHARE</target> | 2990 | <target state="new">SHARE</target> |
2968 | 2991 | <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> | |
2969 | <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> | 2992 | </trans-unit> |
2970 | <trans-unit id="6671956963490165282" datatype="html"> | 2993 | <trans-unit id="6671956963490165282" datatype="html"> |
2971 | <source>SAVE</source> | 2994 | <source>SAVE</source> |
2972 | <target state="new">SAVE</target> | 2995 | <target state="new">SAVE</target> |
2973 | 2996 | <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> | |
2974 | <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> | 2997 | </trans-unit> |
2975 | <trans-unit id="647016352598204238" datatype="html"> | 2998 | <trans-unit id="647016352598204238" datatype="html"> |
2976 | <source>DOWNLOAD</source> | 2999 | <source>DOWNLOAD</source> |
2977 | <target state="new">DOWNLOAD</target> | 3000 | <target state="new">DOWNLOAD</target> |
2978 | 3001 | <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> | |
2979 | <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> | 3002 | </trans-unit> |
2980 | <trans-unit id="677619204556459328"> | 3003 | <trans-unit id="677619204556459328"> |
2981 | <source>Like this video</source> | 3004 | <source>Like this video</source> |
2982 | <target>To se mi líbí</target> | 3005 | <target>To se mi líbí</target> |
2983 | 3006 | <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> | |
2984 | <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> | 3007 | </trans-unit> |
2985 | <trans-unit id="1979134407801821102"> | 3008 | <trans-unit id="1979134407801821102"> |
2986 | <source>Dislike this video</source> | 3009 | <source>Dislike this video</source> |
2987 | <target>To se mi nelíbí</target> | 3010 | <target>To se mi nelíbí</target> |
2988 | 3011 | <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> | |
2989 | <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> | 3012 | </trans-unit> |
2990 | <trans-unit id="4001371302469308813" datatype="html"> | 3013 | <trans-unit id="4001371302469308813" datatype="html"> |
2991 | <source>Support options for this video</source> | 3014 | <source>Support options for this video</source> |
2992 | <target state="new">Support options for this video</target> | 3015 | <target state="new">Support options for this video</target> |
2993 | 3016 | <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">56</context></context-group> | |
2994 | <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">56</context></context-group></trans-unit> | 3017 | </trans-unit> |
2995 | <trans-unit id="687548610091961489" datatype="html"> | 3018 | <trans-unit id="687548610091961489" datatype="html"> |
2996 | <source>By <x id="INTERPOLATION"/></source> | 3019 | <source>By <x id="INTERPOLATION"/></source> |
2997 | <target state="translated">Od <x id="INTERPOLATION"/></target> | 3020 | <target state="translated">Od <x id="INTERPOLATION"/></target> |
2998 | 3021 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">71</context></context-group> | |
2999 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">71</context></context-group></trans-unit> | 3022 | </trans-unit> |
3000 | <trans-unit id="1144407473317535723" datatype="html"> | 3023 | <trans-unit id="1144407473317535723" datatype="html"> |
3001 | <source>Subscribe</source> | 3024 | <source>Subscribe</source> |
3002 | <target state="new">Subscribe</target> | 3025 | <target state="new">Subscribe</target> |
@@ -3020,19 +3043,21 @@ The link will expire within 1 hour.</target> | |||
3020 | <trans-unit id="7215101881367554791"> | 3043 | <trans-unit id="7215101881367554791"> |
3021 | <source>Show more</source> | 3044 | <source>Show more</source> |
3022 | <target>Zobrazit více</target> | 3045 | <target>Zobrazit více</target> |
3023 | 3046 | <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> | |
3024 | <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> | 3047 | </trans-unit> |
3025 | <trans-unit id="3517550046701184661"> | 3048 | <trans-unit id="3517550046701184661"> |
3026 | <source>Show less</source> | 3049 | <source>Show less</source> |
3027 | <target>Zobrazit méně</target> | 3050 | <target>Zobrazit méně</target> |
3028 | 3051 | <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> | |
3029 | <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> | 3052 | </trans-unit> |
3030 | <trans-unit id="66785722678644243" datatype="html"> | 3053 | <trans-unit id="66785722678644243" datatype="html"> |
3031 | <source>Origin</source> | 3054 | <source>Origin</source> |
3032 | <target state="new">Origin</target> | 3055 | <target state="new">Origin</target> |
3033 | 3056 | <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> | |
3034 | <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"> | 3057 | </trans-unit> |
3035 | <source>Open the video on the origin instance</source><target state="new">Open the video on the origin instance</target> | 3058 | <trans-unit id="6981359593518942576" datatype="html"> |
3059 | <source>Open the video on the origin instance</source> | ||
3060 | <target state="new">Open the video on the origin instance</target> | ||
3036 | <context-group purpose="location"> | 3061 | <context-group purpose="location"> |
3037 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context> | 3062 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context> |
3038 | <context context-type="linenumber">14</context> | 3063 | <context context-type="linenumber">14</context> |
@@ -3041,29 +3066,29 @@ The link will expire within 1 hour.</target> | |||
3041 | <trans-unit id="5139892963394684487" datatype="html"> | 3066 | <trans-unit id="5139892963394684487" datatype="html"> |
3042 | <source>Originally published</source> | 3067 | <source>Originally published</source> |
3043 | <target state="new">Originally published</target> | 3068 | <target state="new">Originally published</target> |
3044 | 3069 | <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> | |
3045 | <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> | 3070 | </trans-unit> |
3046 | <trans-unit id="6402393085909200998" datatype="html"> | 3071 | <trans-unit id="6402393085909200998" datatype="html"> |
3047 | <source>Friendly Reminder:</source> | 3072 | <source>Friendly Reminder:</source> |
3048 | <target state="new">Friendly Reminder: </target> | 3073 | <target state="new">Friendly Reminder: </target> |
3049 | 3074 | <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> | |
3050 | <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> | 3075 | </trans-unit> |
3051 | <trans-unit id="2935783216050341269" datatype="html"> | 3076 | <trans-unit id="2935783216050341269" datatype="html"> |
3052 | <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> | 3077 | <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> |
3053 | <target state="new"> | 3078 | <target state="new"> |
3054 | 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. | 3079 | 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. |
3055 | </target> | 3080 | </target> |
3056 | 3081 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">6</context></context-group> | |
3057 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 3082 | </trans-unit> |
3058 | <trans-unit id="4619188387782427495"> | 3083 | <trans-unit id="4619188387782427495"> |
3059 | <source>More information</source> | 3084 | <source>More information</source> |
3060 | <target>Více informací</target> | 3085 | <target>Více informací</target> |
3061 | 3086 | <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">36</context></context-group> | |
3062 | 3087 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">56</context></context-group> | |
3063 | 3088 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">56</context></context-group> | |
3064 | 3089 | <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> | |
3065 | 3090 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">32</context></context-group> | |
3066 | <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">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">56</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">56</context></context-group><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><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 3091 | </trans-unit> |
3067 | <trans-unit id="3452334748875293295" datatype="html"> | 3092 | <trans-unit id="3452334748875293295" datatype="html"> |
3068 | <source>The video was blocked due to automatic blocking of new videos</source> | 3093 | <source>The video was blocked due to automatic blocking of new videos</source> |
3069 | <target state="new">The video was blocked due to automatic blocking of new videos</target> | 3094 | <target state="new">The video was blocked due to automatic blocking of new videos</target> |
@@ -3077,204 +3102,210 @@ The link will expire within 1 hour.</target> | |||
3077 | <trans-unit id="4512155674928869984"> | 3102 | <trans-unit id="4512155674928869984"> |
3078 | <source>Get more information</source> | 3103 | <source>Get more information</source> |
3079 | <target>Získat více informací</target> | 3104 | <target>Získat více informací</target> |
3080 | 3105 | <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> | |
3081 | <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> | 3106 | </trans-unit> |
3082 | <trans-unit id="5184373289520493569" datatype="html"> | 3107 | <trans-unit id="5184373289520493569" datatype="html"> |
3083 | <source>OK</source> | 3108 | <source>OK</source> |
3084 | <target state="new"> | 3109 | <target state="new"> |
3085 | OK | 3110 | OK |
3086 | </target> | 3111 | </target> |
3087 | 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">13</context></context-group> | |
3088 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit><trans-unit id="4092533321838934102" datatype="html"> | 3113 | </trans-unit> |
3089 | <source> The video is being imported, it will be available when the import is finished. | 3114 | <trans-unit id="4092533321838934102" datatype="html"> |
3090 | </source><target state="new"> The video is being imported, it will be available when the import is finished. | 3115 | <source>The video is being imported, it will be available when the import is finished.</source> |
3116 | <target state="new"> The video is being imported, it will be available when the import is finished. | ||
3091 | </target> | 3117 | </target> |
3092 | <context-group purpose="location"> | 3118 | <context-group purpose="location"> |
3093 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 3119 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
3094 | <context context-type="linenumber">2,3</context> | 3120 | <context context-type="linenumber">2,3</context> |
3095 | </context-group> | 3121 | </context-group> |
3096 | </trans-unit><trans-unit id="8304621069698650554" datatype="html"> | 3122 | </trans-unit> |
3097 | <source> The video is being transcoded, it may not work properly. | 3123 | <trans-unit id="8304621069698650554" datatype="html"> |
3098 | </source><target state="new"> The video is being transcoded, it may not work properly. | 3124 | <source>The video is being transcoded, it may not work properly.</source> |
3125 | <target state="new"> The video is being transcoded, it may not work properly. | ||
3099 | </target> | 3126 | </target> |
3100 | <context-group purpose="location"> | 3127 | <context-group purpose="location"> |
3101 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 3128 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
3102 | <context context-type="linenumber">6,7</context> | 3129 | <context context-type="linenumber">6,7</context> |
3103 | </context-group> | 3130 | </context-group> |
3104 | </trans-unit><trans-unit id="9080034597841586171" datatype="html"> | 3131 | </trans-unit> |
3105 | <source> The video is being moved to an external server, it may not work properly. | 3132 | <trans-unit id="9080034597841586171" datatype="html"> |
3106 | </source><target state="new"> The video is being moved to an external server, it may not work properly. | 3133 | <source>The video is being moved to an external server, it may not work properly.</source> |
3134 | <target state="new"> The video is being moved to an external server, it may not work properly. | ||
3107 | </target> | 3135 | </target> |
3108 | <context-group purpose="location"> | 3136 | <context-group purpose="location"> |
3109 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 3137 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
3110 | <context context-type="linenumber">10,11</context> | 3138 | <context context-type="linenumber">10,11</context> |
3111 | </context-group> | 3139 | </context-group> |
3112 | </trans-unit><trans-unit id="8619499607322327082" datatype="html"> | 3140 | </trans-unit> |
3113 | <source> This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. | 3141 | <trans-unit id="8619499607322327082" datatype="html"> |
3114 | </source><target state="new"> This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. | 3142 | <source>This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. </source> |
3143 | <target state="new"> This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. | ||
3115 | </target> | 3144 | </target> |
3116 | 3145 | <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> | |
3117 | <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="4262297989675590582" datatype="html"> | 3146 | </trans-unit> |
3118 | <source> This live has not started yet. | 3147 | <trans-unit id="4262297989675590582" datatype="html"> |
3119 | </source><target state="new"> This live has not started yet. | 3148 | <source>This live has not started yet.</source> |
3149 | <target state="new"> This live has not started yet. | ||
3120 | </target> | 3150 | </target> |
3121 | 3151 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">18</context></context-group> | |
3122 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit><trans-unit id="4926204350710628499" datatype="html"> | 3152 | </trans-unit> |
3123 | <source> This live has ended. | 3153 | <trans-unit id="4926204350710628499" datatype="html"> |
3124 | </source><target state="new"> This live has ended. | 3154 | <source>This live has ended.</source> |
3155 | <target state="new"> This live has ended. | ||
3125 | </target> | 3156 | </target> |
3126 | 3157 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">22</context></context-group> | |
3127 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 3158 | </trans-unit> |
3128 | <trans-unit id="8518611938109939710" datatype="html"> | 3159 | <trans-unit id="8518611938109939710" datatype="html"> |
3129 | <source>SORT BY</source> | 3160 | <source>SORT BY</source> |
3130 | <target state="new"> | 3161 | <target state="new"> |
3131 | SORT BY | 3162 | SORT BY |
3132 | </target> | 3163 | </target> |
3133 | 3164 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">11</context></context-group> | |
3134 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 3165 | </trans-unit> |
3135 | <trans-unit id="6448160249466325288" datatype="html"> | 3166 | <trans-unit id="6448160249466325288" datatype="html"> |
3136 | <source>Most recent first (default)</source> | 3167 | <source>Most recent first (default)</source> |
3137 | <target state="new">Most recent first (default)</target> | 3168 | <target state="new">Most recent first (default)</target> |
3138 | 3169 | <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> | |
3139 | <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> | 3170 | </trans-unit> |
3140 | <trans-unit id="5179007899354903649" datatype="html"> | 3171 | <trans-unit id="5179007899354903649" datatype="html"> |
3141 | <source>Most replies first</source> | 3172 | <source>Most replies first</source> |
3142 | <target state="new">Most replies first</target> | 3173 | <target state="new">Most replies first</target> |
3143 | 3174 | <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> | |
3144 | <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> | 3175 | </trans-unit> |
3145 | <trans-unit id="7494537777006082055"> | 3176 | <trans-unit id="7494537777006082055"> |
3146 | <source>No comments.</source> | 3177 | <source>No comments.</source> |
3147 | <target>Žádné komentáře</target> | 3178 | <target>Žádné komentáře</target> |
3148 | 3179 | <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> | |
3149 | <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> | 3180 | </trans-unit> |
3150 | <trans-unit id="6390009909920475335" datatype="html"> | 3181 | <trans-unit id="6390009909920475335" datatype="html"> |
3151 | <source>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 </source> | 3182 | <source>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 </source> |
3152 | <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> | 3183 | <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> |
3153 | 3184 | <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> | |
3154 | <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></trans-unit> | 3185 | </trans-unit> |
3155 | <trans-unit id="4036338619293319383" datatype="html"> | 3186 | <trans-unit id="4036338619293319383" datatype="html"> |
3156 | <source>{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</source> | 3187 | <source>{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</source> |
3157 | <target state="new">{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</target> | 3188 | <target state="new">{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</target> |
3158 | 3189 | <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> | |
3159 | 3190 | <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> | |
3160 | 3191 | <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> | |
3161 | <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> | 3192 | </trans-unit> |
3162 | <trans-unit id="127329338495775339" datatype="html"> | 3193 | <trans-unit id="127329338495775339" datatype="html"> |
3163 | <source>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' }}"/> </source> | 3194 | <source>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' }}"/> </source> |
3164 | <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> | 3195 | <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> |
3165 | 3196 | <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> | |
3166 | <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></trans-unit> | 3197 | </trans-unit> |
3167 | <trans-unit id="5535545444690528619" datatype="html"> | 3198 | <trans-unit id="5535545444690528619" datatype="html"> |
3168 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></source> | 3199 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></source> |
3169 | <target state="new">View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></target> | 3200 | <target state="new">View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></target> |
3170 | 3201 | <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> | |
3171 | <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> | 3202 | </trans-unit> |
3172 | <trans-unit id="1055254162789146714"> | 3203 | <trans-unit id="1055254162789146714"> |
3173 | <source>Comments are disabled.</source> | 3204 | <source>Comments are disabled.</source> |
3174 | <target> | 3205 | <target> |
3175 | Komentáře nejsou povoleny. | 3206 | Komentáře nejsou povoleny. |
3176 | </target> | 3207 | </target> |
3177 | 3208 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">92</context></context-group> | |
3178 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> | 3209 | </trans-unit> |
3179 | <trans-unit id="5733075023444401902"> | 3210 | <trans-unit id="5733075023444401902"> |
3180 | <source>Add comment...</source> | 3211 | <source>Add comment...</source> |
3181 | <target>Přidat komentář...</target> | 3212 | <target>Přidat komentář...</target> |
3182 | 3213 | <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> | |
3183 | <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> | 3214 | </trans-unit> |
3184 | <trans-unit id="982956590420630883" datatype="html"> | 3215 | <trans-unit id="982956590420630883" datatype="html"> |
3185 | <source>Markdown compatible</source> | 3216 | <source>Markdown compatible</source> |
3186 | <target state="new">Markdown compatible</target> | 3217 | <target state="new">Markdown compatible</target> |
3187 | 3218 | <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> | |
3188 | <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> | 3219 | </trans-unit> |
3189 | <trans-unit id="5793595564950675122" datatype="html"> | 3220 | <trans-unit id="5793595564950675122" datatype="html"> |
3190 | <source>Markdown compatible that supports:</source> | 3221 | <source>Markdown compatible that supports:</source> |
3191 | <target state="new">Markdown compatible that supports:</target> | 3222 | <target state="new">Markdown compatible that supports:</target> |
3192 | 3223 | <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> | |
3193 | <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> | 3224 | </trans-unit> |
3194 | <trans-unit id="8422216333877786919" datatype="html"> | 3225 | <trans-unit id="8422216333877786919" datatype="html"> |
3195 | <source>Auto generated links</source> | 3226 | <source>Auto generated links</source> |
3196 | <target state="new">Auto generated links</target> | 3227 | <target state="new">Auto generated links</target> |
3197 | 3228 | <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> | |
3198 | <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> | 3229 | </trans-unit> |
3199 | <trans-unit id="6365822416124232422" datatype="html"> | 3230 | <trans-unit id="6365822416124232422" datatype="html"> |
3200 | <source>Break lines</source> | 3231 | <source>Break lines</source> |
3201 | <target state="new">Break lines</target> | 3232 | <target state="new">Break lines</target> |
3202 | 3233 | <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> | |
3203 | <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> | 3234 | </trans-unit> |
3204 | <trans-unit id="8756167649220050929" datatype="html"> | 3235 | <trans-unit id="8756167649220050929" datatype="html"> |
3205 | <source>Lists</source> | 3236 | <source>Lists</source> |
3206 | <target state="new">Lists</target> | 3237 | <target state="new">Lists</target> |
3207 | 3238 | <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> | |
3208 | 3239 | <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> | |
3209 | <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> | 3240 | </trans-unit> |
3210 | <trans-unit id="2516633974298697807" datatype="html"> | 3241 | <trans-unit id="2516633974298697807" datatype="html"> |
3211 | <source>Emphasis</source> | 3242 | <source>Emphasis</source> |
3212 | <target state="new">Emphasis</target> | 3243 | <target state="new">Emphasis</target> |
3213 | 3244 | <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> | |
3214 | 3245 | <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> | |
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">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> | 3246 | </trans-unit> |
3216 | <trans-unit id="2810844969104710423" datatype="html"> | 3247 | <trans-unit id="2810844969104710423" datatype="html"> |
3217 | <source>bold</source> | 3248 | <source>bold</source> |
3218 | <target state="new">bold</target> | 3249 | <target state="new">bold</target> |
3219 | 3250 | <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> | |
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">26</context></context-group></trans-unit> | 3251 | </trans-unit> |
3221 | <trans-unit id="8497278965577453274" datatype="html"> | 3252 | <trans-unit id="8497278965577453274" datatype="html"> |
3222 | <source>italic</source> | 3253 | <source>italic</source> |
3223 | <target state="new">italic</target> | 3254 | <target state="new">italic</target> |
3224 | 3255 | <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> | |
3225 | <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> | 3256 | </trans-unit> |
3226 | <trans-unit id="7227611412155083002" datatype="html"> | 3257 | <trans-unit id="7227611412155083002" datatype="html"> |
3227 | <source>Emoji shortcuts</source> | 3258 | <source>Emoji shortcuts</source> |
3228 | <target state="new">Emoji shortcuts</target> | 3259 | <target state="new">Emoji shortcuts</target> |
3229 | 3260 | <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> | |
3230 | <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> | 3261 | </trans-unit> |
3231 | <trans-unit id="6608581312644027413" datatype="html"> | 3262 | <trans-unit id="6608581312644027413" datatype="html"> |
3232 | <source>Emoji markup</source> | 3263 | <source>Emoji markup</source> |
3233 | <target state="new">Emoji markup</target> | 3264 | <target state="new">Emoji markup</target> |
3234 | 3265 | <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> | |
3235 | <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> | 3266 | </trans-unit> |
3236 | <trans-unit id="381522038671562286" datatype="html"> | 3267 | <trans-unit id="381522038671562286" datatype="html"> |
3237 | <source>See complete list</source> | 3268 | <source>See complete list</source> |
3238 | <target state="new">See complete list</target> | 3269 | <target state="new">See complete list</target> |
3239 | 3270 | <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> | |
3240 | <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> | 3271 | </trans-unit> |
3241 | <trans-unit id="2263890353858735493" datatype="html"> | 3272 | <trans-unit id="2263890353858735493" datatype="html"> |
3242 | <source>You are one step away from commenting</source> | 3273 | <source>You are one step away from commenting</source> |
3243 | <target state="new">You are one step away from commenting</target> | 3274 | <target state="new">You are one step away from commenting</target> |
3244 | 3275 | <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> | |
3245 | <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> | 3276 | </trans-unit> |
3246 | <trans-unit id="7508177761852352782" datatype="html"> | 3277 | <trans-unit id="7508177761852352782" datatype="html"> |
3247 | <source>You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example).</source> | 3278 | <source>You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example).</source> |
3248 | <target state="new"> You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). </target> | 3279 | <target state="new"> You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). </target> |
3249 | 3280 | <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">65</context></context-group> | |
3250 | <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">65</context></context-group></trans-unit> | 3281 | </trans-unit> |
3251 | <trans-unit id="2958389355547305739" datatype="html"> | 3282 | <trans-unit id="2958389355547305739" datatype="html"> |
3252 | <source>Login to comment</source> | 3283 | <source>Login to comment</source> |
3253 | <target state="translated">Přihlásit ke komentování</target> | 3284 | <target state="translated">Přihlásit ke komentování</target> |
3254 | 3285 | <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> | |
3255 | <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> | 3286 | </trans-unit> |
3256 | <trans-unit id="4817080330698362530" datatype="html"> | 3287 | <trans-unit id="4817080330698362530" datatype="html"> |
3257 | <source>Markdown Emoji List</source> | 3288 | <source>Markdown Emoji List</source> |
3258 | <target state="new">Markdown Emoji List</target> | 3289 | <target state="new">Markdown Emoji List</target> |
3259 | 3290 | <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> | |
3260 | <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> | 3291 | </trans-unit> |
3261 | <trans-unit id="2662644497259948010" datatype="html"> | 3292 | <trans-unit id="2662644497259948010" datatype="html"> |
3262 | <source>Comment</source> | 3293 | <source>Comment</source> |
3263 | <target state="new">Comment</target> | 3294 | <target state="new">Comment</target> |
3264 | 3295 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">44</context></context-group> | |
3265 | 3296 | <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> | |
3266 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">44</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> | 3297 | </trans-unit> |
3267 | <trans-unit id="4502286564339177240" datatype="html"> | 3298 | <trans-unit id="4502286564339177240" datatype="html"> |
3268 | <source>Reply</source> | 3299 | <source>Reply</source> |
3269 | <target state="new">Reply</target> | 3300 | <target state="new">Reply</target> |
3270 | 3301 | <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> | |
3271 | 3302 | <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> | |
3272 | <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> | 3303 | </trans-unit> |
3273 | <trans-unit id="3572897237443938692"> | 3304 | <trans-unit id="3572897237443938692"> |
3274 | <source>Highlighted comment</source> | 3305 | <source>Highlighted comment</source> |
3275 | <target>Zvýrazněné komentáře</target> | 3306 | <target>Zvýrazněné komentáře</target> |
3276 | 3307 | <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> | |
3277 | <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> | 3308 | </trans-unit> |
3278 | <trans-unit id="4502286564339177240"> | 3309 | <trans-unit id="4502286564339177240"> |
3279 | <source>Reply</source> | 3310 | <source>Reply</source> |
3280 | <target>Odpovědět</target> | 3311 | <target>Odpovědět</target> |
@@ -3283,8 +3314,8 @@ The link will expire within 1 hour.</target> | |||
3283 | <trans-unit id="2447932355167015019" datatype="html"> | 3314 | <trans-unit id="2447932355167015019" datatype="html"> |
3284 | <source>This comment has been deleted</source> | 3315 | <source>This comment has been deleted</source> |
3285 | <target state="new">This comment has been deleted</target> | 3316 | <target state="new">This comment has been deleted</target> |
3286 | 3317 | <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> | |
3287 | <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> | 3318 | </trans-unit> |
3288 | <trans-unit id="9031514421077169181" datatype="html"> | 3319 | <trans-unit id="9031514421077169181" datatype="html"> |
3289 | <source>Video redundancies</source> | 3320 | <source>Video redundancies</source> |
3290 | <target state="new">Video redundancies</target> | 3321 | <target state="new">Video redundancies</target> |
@@ -3311,14 +3342,14 @@ The link will expire within 1 hour.</target> | |||
3311 | <trans-unit id="658727060940996385" datatype="html"> | 3342 | <trans-unit id="658727060940996385" datatype="html"> |
3312 | <source>Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</source> | 3343 | <source>Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</source> |
3313 | <target state="new">Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</target> | 3344 | <target state="new">Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</target> |
3314 | 3345 | <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> | |
3315 | <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> | 3346 | </trans-unit> |
3316 | <trans-unit id="270726559962362501" datatype="html"> | 3347 | <trans-unit id="270726559962362501" datatype="html"> |
3317 | <source>Renew token</source> | 3348 | <source>Renew token</source> |
3318 | <target state="new">Renew token</target> | 3349 | <target state="new">Renew token</target> |
3319 | 3350 | <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> | |
3320 | 3351 | <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> | |
3321 | <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> | 3352 | </trans-unit> |
3322 | <trans-unit id="3029923402309610616" datatype="html"> | 3353 | <trans-unit id="3029923402309610616" datatype="html"> |
3323 | <source>Token renewed. Update your client configuration accordingly.</source> | 3354 | <source>Token renewed. Update your client configuration accordingly.</source> |
3324 | <target state="new">Token renewed. Update your client configuration accordingly.</target> | 3355 | <target state="new">Token renewed. Update your client configuration accordingly.</target> |
@@ -3387,8 +3418,9 @@ The link will expire within 1 hour.</target> | |||
3387 | <trans-unit id="6559246822757089203" datatype="html"> | 3418 | <trans-unit id="6559246822757089203" datatype="html"> |
3388 | <source>Clear filters</source> | 3419 | <source>Clear filters</source> |
3389 | <target state="new">Clear filters</target> | 3420 | <target state="new">Clear filters</target> |
3390 | 3421 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.component.html</context><context context-type="linenumber">23</context></context-group> | |
3391 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.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/simple-search-input.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 3422 | <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> |
3423 | </trans-unit> | ||
3392 | <trans-unit id="4266779970063047572" datatype="html"> | 3424 | <trans-unit id="4266779970063047572" datatype="html"> |
3393 | <source>Video/Comment/Account</source> | 3425 | <source>Video/Comment/Account</source> |
3394 | <target state="new">Video/Comment/Account</target> | 3426 | <target state="new">Video/Comment/Account</target> |
@@ -3399,7 +3431,6 @@ The link will expire within 1 hour.</target> | |||
3399 | <target>ID</target> | 3431 | <target>ID</target> |
3400 | <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> | 3432 | <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> |
3401 | </trans-unit> | 3433 | </trans-unit> |
3402 | |||
3403 | <trans-unit id="5911214550882917183"> | 3434 | <trans-unit id="5911214550882917183"> |
3404 | <source>State</source> | 3435 | <source>State</source> |
3405 | <target>Stav</target> | 3436 | <target>Stav</target> |
@@ -3471,7 +3502,6 @@ The link will expire within 1 hour.</target> | |||
3471 | </target> | 3502 | </target> |
3472 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">3</context></context-group> | 3503 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">3</context></context-group> |
3473 | </trans-unit> | 3504 | </trans-unit> |
3474 | |||
3475 | <trans-unit id="6571718060636962350" datatype="html"> | 3505 | <trans-unit id="6571718060636962350" datatype="html"> |
3476 | <source>Redundancy allowed <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3506 | <source>Redundancy allowed <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3477 | <target state="new">Redundancy allowed | 3507 | <target state="new">Redundancy allowed |
@@ -3483,9 +3513,8 @@ The link will expire within 1 hour.</target> | |||
3483 | <trans-unit id="9160510009013134726" datatype="html"> | 3513 | <trans-unit id="9160510009013134726" datatype="html"> |
3484 | <source>Unfollow</source> | 3514 | <source>Unfollow</source> |
3485 | <target state="new">Unfollow</target> | 3515 | <target state="new">Unfollow</target> |
3486 | 3516 | <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> | |
3487 | 3517 | </trans-unit> | |
3488 | <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> | ||
3489 | <trans-unit id="8246779176913476983" datatype="html"> | 3518 | <trans-unit id="8246779176913476983" datatype="html"> |
3490 | <source>Open instance in a new tab</source> | 3519 | <source>Open instance in a new tab</source> |
3491 | <target state="new">Open instance in a new tab</target> | 3520 | <target state="new">Open instance in a new tab</target> |
@@ -3496,13 +3525,13 @@ The link will expire within 1 hour.</target> | |||
3496 | <trans-unit id="9132918641931433659" datatype="html"> | 3525 | <trans-unit id="9132918641931433659" datatype="html"> |
3497 | <source>No host found matching current filters.</source> | 3526 | <source>No host found matching current filters.</source> |
3498 | <target state="new">No host found matching current filters.</target> | 3527 | <target state="new">No host found matching current filters.</target> |
3499 | 3528 | <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> | |
3500 | <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> | 3529 | </trans-unit> |
3501 | <trans-unit id="7274241885665071790" datatype="html"> | 3530 | <trans-unit id="7274241885665071790" datatype="html"> |
3502 | <source>Your instance is not following anyone.</source> | 3531 | <source>Your instance is not following anyone.</source> |
3503 | <target state="new">Your instance is not following anyone.</target> | 3532 | <target state="new">Your instance is not following anyone.</target> |
3504 | 3533 | <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> | |
3505 | <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> | 3534 | </trans-unit> |
3506 | <trans-unit id="4774348799569692380" datatype="html"> | 3535 | <trans-unit id="4774348799569692380" datatype="html"> |
3507 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> hosts</source> | 3536 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> hosts</source> |
3508 | <target state="new">Showing | 3537 | <target state="new">Showing |
@@ -3512,8 +3541,6 @@ The link will expire within 1 hour.</target> | |||
3512 | </target> | 3541 | </target> |
3513 | <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> | 3542 | <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> |
3514 | </trans-unit> | 3543 | </trans-unit> |
3515 | |||
3516 | |||
3517 | <trans-unit id="9216117865911519658" datatype="html"> | 3544 | <trans-unit id="9216117865911519658" datatype="html"> |
3518 | <source>Action</source> | 3545 | <source>Action</source> |
3519 | <target state="new">Action</target> | 3546 | <target state="new">Action</target> |
@@ -3542,9 +3569,9 @@ The link will expire within 1 hour.</target> | |||
3542 | <trans-unit id="8286337167859377104"> | 3569 | <trans-unit id="8286337167859377104"> |
3543 | <source>Create user</source> | 3570 | <source>Create user</source> |
3544 | <target>Vytvořit uživatele</target> | 3571 | <target>Vytvořit uživatele</target> |
3545 | 3572 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">96</context></context-group> | |
3546 | 3573 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">20</context></context-group> | |
3547 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">96</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 3574 | </trans-unit> |
3548 | <trans-unit id="8363291180171434623" datatype="html"> | 3575 | <trans-unit id="8363291180171434623" datatype="html"> |
3549 | <source>Table parameters</source> | 3576 | <source>Table parameters</source> |
3550 | <target state="new">Table parameters</target> | 3577 | <target state="new">Table parameters</target> |
@@ -3563,11 +3590,12 @@ The link will expire within 1 hour.</target> | |||
3563 | <trans-unit id="5248717555542428023"> | 3590 | <trans-unit id="5248717555542428023"> |
3564 | <source>Username</source> | 3591 | <source>Username</source> |
3565 | <target>Uživatelské jméno</target> | 3592 | <target>Uživatelské jméno</target> |
3566 | 3593 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group> | |
3567 | 3594 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group> | |
3568 | 3595 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">111</context></context-group> | |
3569 | 3596 | <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> | |
3570 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/users/user-list/user-list.component.ts</context><context context-type="linenumber">111</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> | 3597 | <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> |
3598 | </trans-unit> | ||
3571 | <trans-unit id="5428411040014095392" datatype="html"> | 3599 | <trans-unit id="5428411040014095392" datatype="html"> |
3572 | <source>e.g. jane_doe</source> | 3600 | <source>e.g. jane_doe</source> |
3573 | <target state="new">e.g. jane_doe</target> | 3601 | <target state="new">e.g. jane_doe</target> |
@@ -3597,9 +3625,10 @@ The link will expire within 1 hour.</target> | |||
3597 | <trans-unit id="4145496584631696119"> | 3625 | <trans-unit id="4145496584631696119"> |
3598 | <source>Role</source> | 3626 | <source>Role</source> |
3599 | <target>Role</target> | 3627 | <target>Role</target> |
3600 | 3628 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> | |
3601 | 3629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> | |
3602 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/users/user-list/user-list.component.ts</context><context context-type="linenumber">114</context></context-group></trans-unit> | 3630 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">114</context></context-group> |
3631 | </trans-unit> | ||
3603 | <trans-unit id="7046347992315328430" datatype="html"> | 3632 | <trans-unit id="7046347992315328430" datatype="html"> |
3604 | <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> | 3633 | <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> |
3605 | <target state="new"> | 3634 | <target state="new"> |
@@ -3624,9 +3653,10 @@ The link will expire within 1 hour.</target> | |||
3624 | <trans-unit id="2622255144026150901" datatype="html"> | 3653 | <trans-unit id="2622255144026150901" datatype="html"> |
3625 | <source>Auth plugin</source> | 3654 | <source>Auth plugin</source> |
3626 | <target state="new">Auth plugin</target> | 3655 | <target state="new">Auth plugin</target> |
3627 | 3656 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group> | |
3628 | 3657 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group> | |
3629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/users/user-list/user-list.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 3658 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">121</context></context-group> |
3659 | </trans-unit> | ||
3630 | <trans-unit id="588099657508661970" datatype="html"> | 3660 | <trans-unit id="588099657508661970" datatype="html"> |
3631 | <source>None (local authentication)</source> | 3661 | <source>None (local authentication)</source> |
3632 | <target state="new">None (local authentication)</target> | 3662 | <target state="new">None (local authentication)</target> |
@@ -3888,8 +3918,10 @@ The link will expire within 1 hour.</target> | |||
3888 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">65</context></context-group> | 3918 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">65</context></context-group> |
3889 | <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> | 3919 | <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> |
3890 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">41</context></context-group> | 3920 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">41</context></context-group> |
3891 | </trans-unit><trans-unit id="8390803680962035202" datatype="html"> | 3921 | </trans-unit> |
3892 | <source>Follower</source><target state="new">Follower</target> | 3922 | <trans-unit id="8390803680962035202" datatype="html"> |
3923 | <source>Follower</source> | ||
3924 | <target state="new">Follower</target> | ||
3893 | <context-group purpose="location"> | 3925 | <context-group purpose="location"> |
3894 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> | 3926 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> |
3895 | <context context-type="linenumber">24</context> | 3927 | <context context-type="linenumber">24</context> |
@@ -3939,28 +3971,28 @@ The link will expire within 1 hour.</target> | |||
3939 | <trans-unit id="1807029821872995706" datatype="html"> | 3971 | <trans-unit id="1807029821872995706" datatype="html"> |
3940 | <source>Unsolved reports</source> | 3972 | <source>Unsolved reports</source> |
3941 | <target state="new">Unsolved reports</target> | 3973 | <target state="new">Unsolved reports</target> |
3942 | 3974 | <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> | |
3943 | <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> | 3975 | </trans-unit> |
3944 | <trans-unit id="2570256912317308673" datatype="html"> | 3976 | <trans-unit id="2570256912317308673" datatype="html"> |
3945 | <source>Accepted reports</source> | 3977 | <source>Accepted reports</source> |
3946 | <target state="new">Accepted reports</target> | 3978 | <target state="new">Accepted reports</target> |
3947 | 3979 | <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> | |
3948 | <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> | 3980 | </trans-unit> |
3949 | <trans-unit id="4335414817109654558" datatype="html"> | 3981 | <trans-unit id="4335414817109654558" datatype="html"> |
3950 | <source>Refused reports</source> | 3982 | <source>Refused reports</source> |
3951 | <target state="new">Refused reports</target> | 3983 | <target state="new">Refused reports</target> |
3952 | 3984 | <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> | |
3953 | <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> | 3985 | </trans-unit> |
3954 | <trans-unit id="5604806676748121035" datatype="html"> | 3986 | <trans-unit id="5604806676748121035" datatype="html"> |
3955 | <source>Reports with blocked videos</source> | 3987 | <source>Reports with blocked videos</source> |
3956 | <target state="new">Reports with blocked videos</target> | 3988 | <target state="new">Reports with blocked videos</target> |
3957 | 3989 | <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> | |
3958 | <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> | 3990 | </trans-unit> |
3959 | <trans-unit id="5105869928182826553" datatype="html"> | 3991 | <trans-unit id="5105869928182826553" datatype="html"> |
3960 | <source>Reports with deleted videos</source> | 3992 | <source>Reports with deleted videos</source> |
3961 | <target state="new">Reports with deleted videos</target> | 3993 | <target state="new">Reports with deleted videos</target> |
3962 | 3994 | <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> | |
3963 | <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> | 3995 | </trans-unit> |
3964 | <trans-unit id="4678289986918934018" datatype="html"> | 3996 | <trans-unit id="4678289986918934018" datatype="html"> |
3965 | <source>Block reason:</source> | 3997 | <source>Block reason:</source> |
3966 | <target state="new">Block reason:</target> | 3998 | <target state="new">Block reason:</target> |
@@ -3979,13 +4011,13 @@ The link will expire within 1 hour.</target> | |||
3979 | <trans-unit id="7755288609601798418" datatype="html"> | 4011 | <trans-unit id="7755288609601798418" datatype="html"> |
3980 | <source>Automatic blocks</source> | 4012 | <source>Automatic blocks</source> |
3981 | <target state="new">Automatic blocks</target> | 4013 | <target state="new">Automatic blocks</target> |
3982 | 4014 | <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">32</context></context-group> | |
3983 | <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">32</context></context-group></trans-unit> | 4015 | </trans-unit> |
3984 | <trans-unit id="6510868134640657079" datatype="html"> | 4016 | <trans-unit id="6510868134640657079" datatype="html"> |
3985 | <source>Manual blocks</source> | 4017 | <source>Manual blocks</source> |
3986 | <target state="new">Manual blocks</target> | 4018 | <target state="new">Manual blocks</target> |
3987 | 4019 | <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">36</context></context-group> | |
3988 | <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">36</context></context-group></trans-unit> | 4020 | </trans-unit> |
3989 | <trans-unit id="2143435845912984377" datatype="html"> | 4021 | <trans-unit id="2143435845912984377" datatype="html"> |
3990 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> blocked videos</source> | 4022 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> blocked videos</source> |
3991 | <target state="new">Showing | 4023 | <target state="new">Showing |
@@ -4045,10 +4077,11 @@ The link will expire within 1 hour.</target> | |||
4045 | <trans-unit id="6549265851868599441"> | 4077 | <trans-unit id="6549265851868599441"> |
4046 | <source>Video</source> | 4078 | <source>Video</source> |
4047 | <target>Video</target> | 4079 | <target>Video</target> |
4048 | 4080 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">43</context></context-group> | |
4049 | 4081 | <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> | |
4050 | 4082 | <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> | |
4051 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">43</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> | 4083 | <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> |
4084 | </trans-unit> | ||
4052 | <trans-unit id="2662644497259948010" datatype="html"> | 4085 | <trans-unit id="2662644497259948010" datatype="html"> |
4053 | <source>Comment</source> | 4086 | <source>Comment</source> |
4054 | <target state="new">Comment</target> | 4087 | <target state="new">Comment</target> |
@@ -4159,11 +4192,11 @@ The link will expire within 1 hour.</target> | |||
4159 | <trans-unit id="2381859602529023966"> | 4192 | <trans-unit id="2381859602529023966"> |
4160 | <source>Instance</source> | 4193 | <source>Instance</source> |
4161 | <target>Instance</target> | 4194 | <target>Instance</target> |
4162 | 4195 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">5</context></context-group> | |
4163 | 4196 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">192</context></context-group> | |
4164 | 4197 | <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> | |
4165 | 4198 | <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> | |
4166 | <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">192</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> | 4199 | </trans-unit> |
4167 | <trans-unit id="1300704815627663264"> | 4200 | <trans-unit id="1300704815627663264"> |
4168 | <source>Muted at <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 4201 | <source>Muted at <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
4169 | <target state="new">Muted at | 4202 | <target state="new">Muted at |
@@ -4210,8 +4243,8 @@ The link will expire within 1 hour.</target> | |||
4210 | <target state="new"> | 4243 | <target state="new"> |
4211 | It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers. | 4244 | It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers. |
4212 | </target> | 4245 | </target> |
4213 | 4246 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context><context context-type="linenumber">28</context></context-group> | |
4214 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4247 | </trans-unit> |
4215 | <trans-unit id="4058814854824495833" datatype="html"> | 4248 | <trans-unit id="4058814854824495833" datatype="html"> |
4216 | <source>Mute domains</source> | 4249 | <source>Mute domains</source> |
4217 | <target state="new">Mute domains</target> | 4250 | <target state="new">Mute domains</target> |
@@ -4282,14 +4315,14 @@ The link will expire within 1 hour.</target> | |||
4282 | <trans-unit id="4580988005648117665"> | 4315 | <trans-unit id="4580988005648117665"> |
4283 | <source>Search</source> | 4316 | <source>Search</source> |
4284 | <target>Hledat</target> | 4317 | <target>Hledat</target> |
4285 | 4318 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">5</context></context-group> | |
4286 | 4319 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">12</context></context-group> | |
4287 | 4320 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">260</context></context-group> | |
4288 | 4321 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">8</context></context-group> | |
4289 | 4322 | <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> | |
4290 | 4323 | <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> | |
4291 | 4324 | <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> | |
4292 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">5</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">260</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> | 4325 | </trans-unit> |
4293 | <trans-unit id="8630916846096019339" datatype="html"> | 4326 | <trans-unit id="8630916846096019339" datatype="html"> |
4294 | <source>Users can resolve distant content</source> | 4327 | <source>Users can resolve distant content</source> |
4295 | <target state="new">Users can resolve distant content</target> | 4328 | <target state="new">Users can resolve distant content</target> |
@@ -4320,29 +4353,29 @@ The link will expire within 1 hour.</target> | |||
4320 | <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">36</context></context-group> | 4353 | <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">36</context></context-group> |
4321 | <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> | 4354 | <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> |
4322 | </trans-unit> | 4355 | </trans-unit> |
4323 | |||
4324 | <trans-unit id="2144158274184161635" datatype="html"> | 4356 | <trans-unit id="2144158274184161635" datatype="html"> |
4325 | <source>Videos with the most interactions for recent videos</source> | 4357 | <source>Videos with the most interactions for recent videos</source> |
4326 | <target state="new">Videos with the most interactions for recent videos</target> | 4358 | <target state="new">Videos with the most interactions for recent videos</target> |
4327 | 4359 | <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> | |
4328 | <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> | 4360 | </trans-unit> |
4329 | <trans-unit id="8312243926314494468" datatype="html"> | 4361 | <trans-unit id="8312243926314494468" datatype="html"> |
4330 | <source>Videos with the most views during the last 24 hours</source> | 4362 | <source>Videos with the most views during the last 24 hours</source> |
4331 | <target state="new">Videos with the most views during the last 24 hours</target> | 4363 | <target state="new">Videos with the most views during the last 24 hours</target> |
4332 | 4364 | <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> | |
4333 | <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"> | 4365 | </trans-unit> |
4334 | <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> | 4366 | <trans-unit id="8731139416455609016" datatype="html"> |
4367 | <source>Videos with the most views during the last <x id="PH" equiv-text="this.trendingDays"/> days</source> | ||
4368 | <target state="new">Videos with the most views during the last <x id="PH" equiv-text="this.trendingDays"/> days</target> | ||
4335 | <context-group purpose="location"> | 4369 | <context-group purpose="location"> |
4336 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> | 4370 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> |
4337 | <context context-type="linenumber">209</context> | 4371 | <context context-type="linenumber">209</context> |
4338 | </context-group> | 4372 | </context-group> |
4339 | </trans-unit> | 4373 | </trans-unit> |
4340 | |||
4341 | <trans-unit id="1671858302647356245" datatype="html"> | 4374 | <trans-unit id="1671858302647356245" datatype="html"> |
4342 | <source>Videos that have the most likes</source> | 4375 | <source>Videos that have the most likes</source> |
4343 | <target state="new">Videos that have the most likes</target> | 4376 | <target state="new">Videos that have the most likes</target> |
4344 | 4377 | <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> | |
4345 | <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> | 4378 | </trans-unit> |
4346 | <trans-unit id="2006841089844688970" datatype="html"> | 4379 | <trans-unit id="2006841089844688970" datatype="html"> |
4347 | <source>To load your new installed plugins or themes, refresh the page.</source> | 4380 | <source>To load your new installed plugins or themes, refresh the page.</source> |
4348 | <target state="new"> | 4381 | <target state="new"> |
@@ -4431,18 +4464,18 @@ The link will expire within 1 hour.</target> | |||
4431 | <trans-unit id="545410448674339480" datatype="html"> | 4464 | <trans-unit id="545410448674339480" datatype="html"> |
4432 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source> | 4465 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source> |
4433 | <target state="new"><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</target> | 4466 | <target state="new"><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</target> |
4434 | 4467 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">143</context></context-group> | |
4435 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">143</context></context-group></trans-unit> | 4468 | </trans-unit> |
4436 | <trans-unit id="379090446060940062" datatype="html"> | 4469 | <trans-unit id="379090446060940062" datatype="html"> |
4437 | <source>Do you really want to delete all comments of <x id="PH"/>?</source> | 4470 | <source>Do you really want to delete all comments of <x id="PH"/>?</source> |
4438 | <target state="new">Do you really want to delete all comments of <x id="PH"/>?</target> | 4471 | <target state="new">Do you really want to delete all comments of <x id="PH"/>?</target> |
4439 | 4472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">163</context></context-group> | |
4440 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 4473 | </trans-unit> |
4441 | <trans-unit id="4539246224625965241" datatype="html"> | 4474 | <trans-unit id="4539246224625965241" datatype="html"> |
4442 | <source>Comments of <x id="PH"/> will be deleted in a few minutes</source> | 4475 | <source>Comments of <x id="PH"/> will be deleted in a few minutes</source> |
4443 | <target state="new">Comments of <x id="PH"/> will be deleted in a few minutes</target> | 4476 | <target state="new">Comments of <x id="PH"/> will be deleted in a few minutes</target> |
4444 | 4477 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">175</context></context-group> | |
4445 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">175</context></context-group></trans-unit> | 4478 | </trans-unit> |
4446 | <trans-unit id="7427986413651551775" datatype="html"> | 4479 | <trans-unit id="7427986413651551775" datatype="html"> |
4447 | <source>Video comments</source> | 4480 | <source>Video comments</source> |
4448 | <target state="new">Video comments</target> | 4481 | <target state="new">Video comments</target> |
@@ -4580,41 +4613,42 @@ The link will expire within 1 hour.</target> | |||
4580 | <trans-unit id="6588040559347368313" datatype="html"> | 4613 | <trans-unit id="6588040559347368313" datatype="html"> |
4581 | <source>Add a new category</source> | 4614 | <source>Add a new category</source> |
4582 | <target state="new">Add a new category</target> | 4615 | <target state="new">Add a new category</target> |
4583 | 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> | |
4584 | <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> | ||
4585 | <trans-unit id="8953934448427251062" datatype="html"> | 4619 | <trans-unit id="8953934448427251062" datatype="html"> |
4586 | <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> |
4587 | <target state="new">The | 4621 | <target state="new">The |
4588 | <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 |
4589 | <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. |
4590 | </target> | 4624 | </target> |
4591 | 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> | |
4592 | <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> |
4593 | <trans-unit id="34094919610906740" datatype="html"> | 4627 | <trans-unit id="34094919610906740" datatype="html"> |
4594 | <source>Help share videos being played</source> | 4628 | <source>Help share videos being played</source> |
4595 | <target state="new">Help share videos being played</target> | 4629 | <target state="new">Help share videos being played</target> |
4596 | 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> | |
4597 | <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> |
4598 | <trans-unit id="6236140336967052987" datatype="html"> | 4632 | <trans-unit id="6236140336967052987" datatype="html"> |
4599 | <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> |
4600 | <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> |
4601 | 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> | |
4602 | <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> |
4603 | <trans-unit id="9135112681389493865" datatype="html"> | 4637 | <trans-unit id="9135112681389493865" datatype="html"> |
4604 | <source>Automatically play videos</source> | 4638 | <source>Automatically play videos</source> |
4605 | <target state="new">Automatically play videos</target> | 4639 | <target state="new">Automatically play videos</target> |
4606 | 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> | |
4607 | <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> |
4608 | <trans-unit id="575474399125992547" datatype="html"> | 4642 | <trans-unit id="575474399125992547" datatype="html"> |
4609 | <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> |
4610 | <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> |
4611 | 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> | |
4612 | <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> |
4613 | <trans-unit id="2701970773087072815" datatype="html"> | 4647 | <trans-unit id="2701970773087072815" datatype="html"> |
4614 | <source>Automatically start playing the next video</source> | 4648 | <source>Automatically start playing the next video</source> |
4615 | <target state="new">Automatically start playing the next video</target> | 4649 | <target state="new">Automatically start playing the next video</target> |
4616 | 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> | |
4617 | <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> |
4618 | <trans-unit id="5983800192187691457" datatype="html"> | 4652 | <trans-unit id="5983800192187691457" datatype="html"> |
4619 | <source>Main languages you/your moderators speak</source> | 4653 | <source>Main languages you/your moderators speak</source> |
4620 | <target state="new">Main languages you/your moderators speak</target> | 4654 | <target state="new">Main languages you/your moderators speak</target> |
@@ -5088,8 +5122,8 @@ The link will expire within 1 hour.</target> | |||
5088 | <trans-unit id="2149300564474427551"> | 5122 | <trans-unit id="2149300564474427551"> |
5089 | <source>Administrator</source> | 5123 | <source>Administrator</source> |
5090 | <target>Administrátor</target> | 5124 | <target>Administrátor</target> |
5091 | 5125 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group> | |
5092 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group></trans-unit> | 5126 | </trans-unit> |
5093 | <trans-unit id="3171683206914962995"> | 5127 | <trans-unit id="3171683206914962995"> |
5094 | <source>Admin email</source> | 5128 | <source>Admin email</source> |
5095 | <target>E-mail administrátora</target> | 5129 | <target>E-mail administrátora</target> |
@@ -5547,137 +5581,169 @@ color: red; | |||
5547 | <trans-unit id="4915431133669985304"> | 5581 | <trans-unit id="4915431133669985304"> |
5548 | <source>Profile</source> | 5582 | <source>Profile</source> |
5549 | <target>Profil</target> | 5583 | <target>Profil</target> |
5550 | 5584 | <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> | |
5551 | <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> | 5585 | </trans-unit> |
5552 | <trans-unit id="1963136290621768454" datatype="html"> | 5586 | <trans-unit id="1963136290621768454" datatype="html"> |
5553 | <source>Resolution</source> | 5587 | <source>Resolution</source> |
5554 | <target state="new">Resolution</target> | 5588 | <target state="new">Resolution</target> |
5555 | 5589 | <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> | |
5556 | <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> | 5590 | </trans-unit> |
5557 | <trans-unit id="7814358426066520520" datatype="html"> | 5591 | <trans-unit id="7814358426066520520" datatype="html"> |
5558 | <source>Aspect ratio</source> | 5592 | <source>Aspect ratio</source> |
5559 | <target state="new">Aspect ratio</target> | 5593 | <target state="new">Aspect ratio</target> |
5560 | 5594 | <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> | |
5561 | <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> | 5595 | </trans-unit> |
5562 | <trans-unit id="44862519224794374" datatype="html"> | 5596 | <trans-unit id="44862519224794374" datatype="html"> |
5563 | <source>Average frame rate</source> | 5597 | <source>Average frame rate</source> |
5564 | <target state="new">Average frame rate</target> | 5598 | <target state="new">Average frame rate</target> |
5565 | 5599 | <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> | |
5566 | <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> | 5600 | </trans-unit> |
5567 | <trans-unit id="5053683525387462246" datatype="html"> | 5601 | <trans-unit id="5053683525387462246" datatype="html"> |
5568 | <source>Pixel format</source> | 5602 | <source>Pixel format</source> |
5569 | <target state="new">Pixel format</target> | 5603 | <target state="new">Pixel format</target> |
5570 | 5604 | <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> | |
5571 | <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> | 5605 | </trans-unit> |
5572 | <trans-unit id="7858676566953242358" datatype="html"> | 5606 | <trans-unit id="7858676566953242358" datatype="html"> |
5573 | <source>Sample rate</source> | 5607 | <source>Sample rate</source> |
5574 | <target state="new">Sample rate</target> | 5608 | <target state="new">Sample rate</target> |
5575 | 5609 | <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> | |
5576 | <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> | 5610 | </trans-unit> |
5577 | <trans-unit id="5403856660543890284" datatype="html"> | 5611 | <trans-unit id="5403856660543890284" datatype="html"> |
5578 | <source>Channel Layout</source> | 5612 | <source>Channel Layout</source> |
5579 | <target state="new">Channel Layout</target> | 5613 | <target state="new">Channel Layout</target> |
5580 | 5614 | <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> | |
5581 | <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"> | 5615 | </trans-unit> |
5582 | <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 | 5616 | <trans-unit id="6317170736181476800" datatype="html"> |
5583 | >"/></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 | 5617 | <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> |
5584 | >"/></target> | 5618 | <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> |
5585 | <context-group purpose="location"> | 5619 | <context-group purpose="location"> |
5586 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5620 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5587 | <context context-type="linenumber">3,7</context> | 5621 | <context context-type="linenumber">3,7</context> |
5588 | </context-group> | 5622 | </context-group> |
5589 | </trans-unit><trans-unit id="1405600824334286337" datatype="html"> | 5623 | </trans-unit> |
5590 | <source>More filters</source><target state="new">More filters</target> | 5624 | <trans-unit id="1405600824334286337" datatype="html"> |
5625 | <source>More filters</source> | ||
5626 | <target state="new">More filters</target> | ||
5591 | <context-group purpose="location"> | 5627 | <context-group purpose="location"> |
5592 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5628 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5593 | <context context-type="linenumber">20</context> | 5629 | <context context-type="linenumber">20</context> |
5594 | </context-group> | 5630 | </context-group> |
5595 | </trans-unit><trans-unit id="8867436033163146458" datatype="html"> | 5631 | </trans-unit> |
5596 | <source>Less filters</source><target state="new">Less filters</target> | 5632 | <trans-unit id="8867436033163146458" datatype="html"> |
5633 | <source>Less filters</source> | ||
5634 | <target state="new">Less filters</target> | ||
5597 | <context-group purpose="location"> | 5635 | <context-group purpose="location"> |
5598 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5636 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5599 | <context context-type="linenumber">21</context> | 5637 | <context context-type="linenumber">21</context> |
5600 | </context-group> | 5638 | </context-group> |
5601 | </trans-unit><trans-unit id="7028708681117573961" datatype="html"> | 5639 | </trans-unit> |
5602 | <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> | 5640 | <trans-unit id="7028708681117573961" datatype="html"> |
5641 | <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> | ||
5642 | <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> | ||
5603 | <context-group purpose="location"> | 5643 | <context-group purpose="location"> |
5604 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5644 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5605 | <context context-type="linenumber">46</context> | 5645 | <context context-type="linenumber">46</context> |
5606 | </context-group> | 5646 | </context-group> |
5607 | </trans-unit><trans-unit id="5691258609562173281" datatype="html"> | 5647 | </trans-unit> |
5608 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"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>"/>"Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5648 | <trans-unit id="5691258609562173281" datatype="html"> |
5649 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | ||
5650 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
5609 | <context-group purpose="location"> | 5651 | <context-group purpose="location"> |
5610 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5652 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5611 | <context context-type="linenumber">48</context> | 5653 | <context context-type="linenumber">48</context> |
5612 | </context-group> | 5654 | </context-group> |
5613 | </trans-unit><trans-unit id="3224510615614621760" datatype="html"> | 5655 | </trans-unit> |
5614 | <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> | 5656 | <trans-unit id="3224510615614621760" datatype="html"> |
5657 | <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> | ||
5658 | <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> | ||
5615 | <context-group purpose="location"> | 5659 | <context-group purpose="location"> |
5616 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5660 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5617 | <context context-type="linenumber">49</context> | 5661 | <context context-type="linenumber">49</context> |
5618 | </context-group> | 5662 | </context-group> |
5619 | </trans-unit><trans-unit id="3082811226222076503" datatype="html"> | 5663 | </trans-unit> |
5620 | <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> | 5664 | <trans-unit id="3082811226222076503" datatype="html"> |
5665 | <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> | ||
5666 | <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> | ||
5621 | <context-group purpose="location"> | 5667 | <context-group purpose="location"> |
5622 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5668 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5623 | <context context-type="linenumber">50</context> | 5669 | <context context-type="linenumber">50</context> |
5624 | </context-group> | 5670 | </context-group> |
5625 | </trans-unit><trans-unit id="4322133526902910662" datatype="html"> | 5671 | </trans-unit> |
5626 | <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> | 5672 | <trans-unit id="4322133526902910662" datatype="html"> |
5673 | <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> | ||
5674 | <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> | ||
5627 | <context-group purpose="location"> | 5675 | <context-group purpose="location"> |
5628 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5676 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5629 | <context context-type="linenumber">51</context> | 5677 | <context context-type="linenumber">51</context> |
5630 | </context-group> | 5678 | </context-group> |
5631 | </trans-unit><trans-unit id="2343321245279384373" datatype="html"> | 5679 | </trans-unit> |
5632 | <source>Languages:</source><target state="new">Languages:</target> | 5680 | <trans-unit id="2343321245279384373" datatype="html"> |
5681 | <source>Languages:</source> | ||
5682 | <target state="new">Languages:</target> | ||
5633 | <context-group purpose="location"> | 5683 | <context-group purpose="location"> |
5634 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5684 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5635 | <context context-type="linenumber">59</context> | 5685 | <context context-type="linenumber">59</context> |
5636 | </context-group> | 5686 | </context-group> |
5637 | </trans-unit><trans-unit id="5063779773341398537" datatype="html"> | 5687 | </trans-unit> |
5638 | <source>Sensitive content:</source><target state="new">Sensitive content:</target> | 5688 | <trans-unit id="5063779773341398537" datatype="html"> |
5689 | <source>Sensitive content:</source> | ||
5690 | <target state="new">Sensitive content:</target> | ||
5639 | <context-group purpose="location"> | 5691 | <context-group purpose="location"> |
5640 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5692 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5641 | <context context-type="linenumber">66</context> | 5693 | <context context-type="linenumber">66</context> |
5642 | </context-group> | 5694 | </context-group> |
5643 | </trans-unit><trans-unit id="5723033003381016192" datatype="html"> | 5695 | </trans-unit> |
5644 | <source>Scope:</source><target state="new">Scope:</target> | 5696 | <trans-unit id="5723033003381016192" datatype="html"> |
5697 | <source>Scope:</source> | ||
5698 | <target state="new">Scope:</target> | ||
5645 | <context-group purpose="location"> | 5699 | <context-group purpose="location"> |
5646 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5700 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5647 | <context context-type="linenumber">81</context> | 5701 | <context context-type="linenumber">81</context> |
5648 | </context-group> | 5702 | </context-group> |
5649 | </trans-unit><trans-unit id="8481241275509347668" datatype="html"> | 5703 | </trans-unit> |
5650 | <source>Local videos (this instance)</source><target state="new">Local videos (this instance)</target> | 5704 | <trans-unit id="8481241275509347668" datatype="html"> |
5705 | <source>Local videos (this instance)</source> | ||
5706 | <target state="new">Local videos (this instance)</target> | ||
5651 | <context-group purpose="location"> | 5707 | <context-group purpose="location"> |
5652 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5708 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5653 | <context context-type="linenumber">85</context> | 5709 | <context context-type="linenumber">85</context> |
5654 | </context-group> | 5710 | </context-group> |
5655 | </trans-unit><trans-unit id="8383401711408398806" datatype="html"> | 5711 | </trans-unit> |
5656 | <source>Federated videos (this instance + followed instances)</source><target state="new">Federated videos (this instance + followed instances)</target> | 5712 | <trans-unit id="8383401711408398806" datatype="html"> |
5713 | <source>Federated videos (this instance + followed instances)</source> | ||
5714 | <target state="new">Federated videos (this instance + followed instances)</target> | ||
5657 | <context-group purpose="location"> | 5715 | <context-group purpose="location"> |
5658 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5716 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5659 | <context context-type="linenumber">90</context> | 5717 | <context context-type="linenumber">90</context> |
5660 | </context-group> | 5718 | </context-group> |
5661 | </trans-unit><trans-unit id="2736556170366900089" datatype="html"> | 5719 | </trans-unit> |
5662 | <source>Type:</source><target state="new">Type:</target> | 5720 | <trans-unit id="2736556170366900089" datatype="html"> |
5721 | <source>Type:</source> | ||
5722 | <target state="new">Type:</target> | ||
5663 | <context-group purpose="location"> | 5723 | <context-group purpose="location"> |
5664 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5724 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5665 | <context context-type="linenumber">95</context> | 5725 | <context context-type="linenumber">95</context> |
5666 | </context-group> | 5726 | </context-group> |
5667 | </trans-unit><trans-unit id="1744425032255703211" datatype="html"> | 5727 | </trans-unit> |
5668 | <source>VOD & Live videos</source><target state="new">VOD & Live videos</target> | 5728 | <trans-unit id="1744425032255703211" datatype="html"> |
5729 | <source>VOD & Live videos</source> | ||
5730 | <target state="new">VOD & Live videos</target> | ||
5669 | <context-group purpose="location"> | 5731 | <context-group purpose="location"> |
5670 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5732 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5671 | <context context-type="linenumber">99</context> | 5733 | <context context-type="linenumber">99</context> |
5672 | </context-group> | 5734 | </context-group> |
5673 | </trans-unit><trans-unit id="1370537846415473089" datatype="html"> | 5735 | </trans-unit> |
5674 | <source>Categories:</source><target state="new">Categories:</target> | 5736 | <trans-unit id="1370537846415473089" datatype="html"> |
5737 | <source>Categories:</source> | ||
5738 | <target state="new">Categories:</target> | ||
5675 | <context-group purpose="location"> | 5739 | <context-group purpose="location"> |
5676 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5740 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5677 | <context context-type="linenumber">114</context> | 5741 | <context context-type="linenumber">114</context> |
5678 | </context-group> | 5742 | </context-group> |
5679 | </trans-unit><trans-unit id="4250125031269088402" datatype="html"> | 5743 | </trans-unit> |
5680 | <source>Moderation:</source><target state="new">Moderation:</target> | 5744 | <trans-unit id="4250125031269088402" datatype="html"> |
5745 | <source>Moderation:</source> | ||
5746 | <target state="new">Moderation:</target> | ||
5681 | <context-group purpose="location"> | 5747 | <context-group purpose="location"> |
5682 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5748 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5683 | <context context-type="linenumber">120</context> | 5749 | <context context-type="linenumber">120</context> |
@@ -5747,9 +5813,9 @@ color: red; | |||
5747 | <trans-unit id="2658703380934466003" datatype="html"> | 5813 | <trans-unit id="2658703380934466003" datatype="html"> |
5748 | <source>Add a new language</source> | 5814 | <source>Add a new language</source> |
5749 | <target state="new">Add a new language</target> | 5815 | <target state="new">Add a new language</target> |
5750 | 5816 | <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> | |
5751 | 5817 | <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> | |
5752 | <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> | 5818 | </trans-unit> |
5753 | <trans-unit id="1530331428384894781"> | 5819 | <trans-unit id="1530331428384894781"> |
5754 | <source><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> is awaiting email verification </source> | 5820 | <source><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> is awaiting email verification </source> |
5755 | <target> | 5821 | <target> |
@@ -5789,9 +5855,9 @@ color: red; | |||
5789 | <trans-unit id="4844578664427956129"> | 5855 | <trans-unit id="4844578664427956129"> |
5790 | <source>Change ownership</source> | 5856 | <source>Change ownership</source> |
5791 | <target>Změnit vlastnictví</target> | 5857 | <target>Změnit vlastnictví</target> |
5792 | 5858 | <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> | |
5793 | 5859 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">180</context></context-group> | |
5794 | <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">180</context></context-group></trans-unit> | 5860 | </trans-unit> |
5795 | <trans-unit id="4561174610228620528"> | 5861 | <trans-unit id="4561174610228620528"> |
5796 | <source>Select the next owner</source> | 5862 | <source>Select the next owner</source> |
5797 | <target>Vyber nového vlastníka</target> | 5863 | <target>Vyber nového vlastníka</target> |
@@ -5855,9 +5921,9 @@ color: red; | |||
5855 | <trans-unit id="5417361655914085905" datatype="html"> | 5921 | <trans-unit id="5417361655914085905" datatype="html"> |
5856 | <source>Account page</source> | 5922 | <source>Account page</source> |
5857 | <target state="new">Account page</target> | 5923 | <target state="new">Account page</target> |
5858 | 5924 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">70</context></context-group> | |
5859 | 5925 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">76</context></context-group> | |
5860 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">70</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">76</context></context-group></trans-unit> | 5926 | </trans-unit> |
5861 | <trans-unit id="187187500641108332" datatype="html"> | 5927 | <trans-unit id="187187500641108332" datatype="html"> |
5862 | <source><x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> </source> | 5928 | <source><x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> </source> |
5863 | <target state="new"> | 5929 | <target state="new"> |
@@ -5889,13 +5955,13 @@ color: red; | |||
5889 | <trans-unit id="7000850040589508423" datatype="html"> | 5955 | <trans-unit id="7000850040589508423" datatype="html"> |
5890 | <source>Create video channel</source> | 5956 | <source>Create video channel</source> |
5891 | <target state="new">Create video channel</target> | 5957 | <target state="new">Create video channel</target> |
5892 | 5958 | <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> | |
5893 | <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> | 5959 | </trans-unit> |
5894 | <trans-unit id="5700655611297335752" datatype="html"> | 5960 | <trans-unit id="5700655611297335752" datatype="html"> |
5895 | <source>No channel found.</source> | 5961 | <source>No channel found.</source> |
5896 | <target state="new">No channel found.</target> | 5962 | <target state="new">No channel found.</target> |
5897 | 5963 | <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> | |
5898 | <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> | 5964 | </trans-unit> |
5899 | <trans-unit id="5500467336262464724"> | 5965 | <trans-unit id="5500467336262464724"> |
5900 | <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers </source> | 5966 | <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers </source> |
5901 | <target> | 5967 | <target> |
@@ -5986,16 +6052,16 @@ color: red; | |||
5986 | <trans-unit id="3122895472333547524"> | 6052 | <trans-unit id="3122895472333547524"> |
5987 | <source>Delete your account</source> | 6053 | <source>Delete your account</source> |
5988 | <target>Smazat vlastní účet</target> | 6054 | <target>Smazat vlastní účet</target> |
5989 | 6055 | <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> | |
5990 | 6056 | <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">26</context></context-group> | |
5991 | <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">26</context></context-group></trans-unit> | 6057 | </trans-unit> |
5992 | <trans-unit id="4000980858407872649" datatype="html"> | 6058 | <trans-unit id="4000980858407872649" datatype="html"> |
5993 | <source>Channel page</source> | 6059 | <source>Channel page</source> |
5994 | <target state="new">Channel page</target> | 6060 | <target state="new">Channel page</target> |
5995 | 6061 | <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> | |
5996 | 6062 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">20</context></context-group> | |
5997 | 6063 | <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> | |
5998 | <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-subscriptions/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">67</context></context-group></trans-unit> | 6064 | </trans-unit> |
5999 | <trans-unit id="9131836378905533756"> | 6065 | <trans-unit id="9131836378905533756"> |
6000 | <source>Created by <x id="INTERPOLATION"/></source> | 6066 | <source>Created by <x id="INTERPOLATION"/></source> |
6001 | <target>Vytvořil <x id="INTERPOLATION"/></target> | 6067 | <target>Vytvořil <x id="INTERPOLATION"/></target> |
@@ -6019,8 +6085,8 @@ color: red; | |||
6019 | <trans-unit id="4781078006040259916" datatype="html"> | 6085 | <trans-unit id="4781078006040259916" datatype="html"> |
6020 | <source>You don't have any video in your watch history yet.</source> | 6086 | <source>You don't have any video in your watch history yet.</source> |
6021 | <target state="new">You don't have any video in your watch history yet.</target> | 6087 | <target state="new">You don't have any video in your watch history yet.</target> |
6022 | 6088 | <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> | |
6023 | <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> | 6089 | </trans-unit> |
6024 | <trans-unit id="687236465759862933" datatype="html"> | 6090 | <trans-unit id="687236465759862933" datatype="html"> |
6025 | <source>Open syndication dropdown</source> | 6091 | <source>Open syndication dropdown</source> |
6026 | <target state="new">Open syndication dropdown</target> | 6092 | <target state="new">Open syndication dropdown</target> |
@@ -6032,14 +6098,18 @@ color: red; | |||
6032 | <context context-type="sourcefile">src/app/shared/shared-main/feeds/feed.component.html</context> | 6098 | <context context-type="sourcefile">src/app/shared/shared-main/feeds/feed.component.html</context> |
6033 | <context context-type="linenumber">3</context> | 6099 | <context context-type="linenumber">3</context> |
6034 | </context-group> | 6100 | </context-group> |
6035 | </trans-unit><trans-unit id="5511928240200239994" datatype="html"> | 6101 | </trans-unit> |
6036 | <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> | 6102 | <trans-unit id="5511928240200239994" datatype="html"> |
6103 | <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> | ||
6104 | <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> | ||
6037 | <context-group purpose="location"> | 6105 | <context-group purpose="location"> |
6038 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> | 6106 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> |
6039 | <context context-type="linenumber">5</context> | 6107 | <context context-type="linenumber">5</context> |
6040 | </context-group> | 6108 | </context-group> |
6041 | </trans-unit><trans-unit id="5339945526545410198" datatype="html"> | 6109 | </trans-unit> |
6042 | <source>Set up my channels</source><target state="new">Set up my channels</target> | 6110 | <trans-unit id="5339945526545410198" datatype="html"> |
6111 | <source>Set up my channels</source> | ||
6112 | <target state="new">Set up my channels</target> | ||
6043 | <context-group purpose="location"> | 6113 | <context-group purpose="location"> |
6044 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> | 6114 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> |
6045 | <context context-type="linenumber">6</context> | 6115 | <context context-type="linenumber">6</context> |
@@ -6101,8 +6171,8 @@ color: red; | |||
6101 | <trans-unit id="3438686710205841496" datatype="html"> | 6171 | <trans-unit id="3438686710205841496" datatype="html"> |
6102 | <source>Create playlist</source> | 6172 | <source>Create playlist</source> |
6103 | <target state="new">Create playlist</target> | 6173 | <target state="new">Create playlist</target> |
6104 | 6174 | <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> | |
6105 | <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> | 6175 | </trans-unit> |
6106 | <trans-unit id="7040375308762081154" datatype="html"> | 6176 | <trans-unit id="7040375308762081154" datatype="html"> |
6107 | <source>My video channels</source> | 6177 | <source>My video channels</source> |
6108 | <target state="new">My video channels</target> | 6178 | <target state="new">My video channels</target> |
@@ -6160,8 +6230,10 @@ color: red; | |||
6160 | 6230 | ||
6161 | </target> | 6231 | </target> |
6162 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">14</context></context-group> | 6232 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">14</context></context-group> |
6163 | </trans-unit><trans-unit id="8844610145426272276" datatype="html"> | 6233 | </trans-unit> |
6164 | <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> | 6234 | <trans-unit id="8844610145426272276" datatype="html"> |
6235 | <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> | ||
6236 | <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> | ||
6165 | <context-group purpose="location"> | 6237 | <context-group purpose="location"> |
6166 | <context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context> | 6238 | <context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context> |
6167 | <context context-type="linenumber">18,19</context> | 6239 | <context context-type="linenumber">18,19</context> |
@@ -6278,12 +6350,12 @@ color: red; | |||
6278 | <trans-unit id="403587185492002456" datatype="html"> | 6350 | <trans-unit id="403587185492002456" datatype="html"> |
6279 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> | 6351 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> |
6280 | <target state="new">{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</target> | 6352 | <target state="new">{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</target> |
6281 | 6353 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">23</context></context-group> | |
6282 | 6354 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">38</context></context-group> | |
6283 | 6355 | <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">30</context></context-group> | |
6284 | 6356 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">73</context></context-group> | |
6285 | 6357 | <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> | |
6286 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">23</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">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">73</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> | 6358 | </trans-unit> |
6287 | <trans-unit id="3068011377000255023" datatype="html"> | 6359 | <trans-unit id="3068011377000255023" datatype="html"> |
6288 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> | 6360 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> |
6289 | <target state="new">{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</target> | 6361 | <target state="new">{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</target> |
@@ -6325,8 +6397,8 @@ color: red; | |||
6325 | <trans-unit id="5512878593724620692" datatype="html"> | 6397 | <trans-unit id="5512878593724620692" datatype="html"> |
6326 | <source>CHANNELS</source> | 6398 | <source>CHANNELS</source> |
6327 | <target state="new">CHANNELS</target> | 6399 | <target state="new">CHANNELS</target> |
6328 | 6400 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">81</context></context-group> | |
6329 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 6401 | </trans-unit> |
6330 | <trans-unit id="3666829335406793239"> | 6402 | <trans-unit id="3666829335406793239"> |
6331 | <source>This account does not have channels.</source> | 6403 | <source>This account does not have channels.</source> |
6332 | <target>Tento účet nemá žádné kanály.</target> | 6404 | <target>Tento účet nemá žádné kanály.</target> |
@@ -6371,8 +6443,10 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6371 | It will delete <x id="PH_1"/> videos uploaded in this channel, and you will not be able to create another | 6443 | It will delete <x id="PH_1"/> videos uploaded in this channel, and you will not be able to create another |
6372 | channel with the same name (<x id="PH_2"/>)!</target> | 6444 | channel with the same name (<x id="PH_2"/>)!</target> |
6373 | <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> | 6445 | <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> |
6374 | </trans-unit><trans-unit id="4433306639366959484" datatype="html"> | 6446 | </trans-unit> |
6375 | <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> | 6447 | <trans-unit id="4433306639366959484" datatype="html"> |
6448 | <source>Please type the name of the video channel (<x id="PH" equiv-text="videoChannel.name"/>) to confirm</source> | ||
6449 | <target state="new">Please type the name of the video channel (<x id="PH" equiv-text="videoChannel.name"/>) to confirm</target> | ||
6376 | <context-group purpose="location"> | 6450 | <context-group purpose="location"> |
6377 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context> | 6451 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context> |
6378 | <context context-type="linenumber">48</context> | 6452 | <context context-type="linenumber">48</context> |
@@ -6449,7 +6523,6 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6449 | <context context-type="linenumber">16</context> | 6523 | <context context-type="linenumber">16</context> |
6450 | </context-group> | 6524 | </context-group> |
6451 | </trans-unit> | 6525 | </trans-unit> |
6452 | |||
6453 | <trans-unit id="8203367621031610680"> | 6526 | <trans-unit id="8203367621031610680"> |
6454 | <source>Your name</source> | 6527 | <source>Your name</source> |
6455 | <target>Vaše jméno</target> | 6528 | <target>Vaše jméno</target> |
@@ -6476,8 +6549,10 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6476 | <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/> | 6549 | <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/> |
6477 | </target> | 6550 | </target> |
6478 | <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> | 6551 | <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> |
6479 | </trans-unit><trans-unit id="8525213662266893834" datatype="html"> | 6552 | </trans-unit> |
6480 | <source>Contact us</source><target state="new">Contact us</target> | 6553 | <trans-unit id="8525213662266893834" datatype="html"> |
6554 | <source>Contact us</source> | ||
6555 | <target state="new">Contact us</target> | ||
6481 | <context-group purpose="location"> | 6556 | <context-group purpose="location"> |
6482 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> | 6557 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> |
6483 | <context context-type="linenumber">7</context> | 6558 | <context context-type="linenumber">7</context> |
@@ -6487,7 +6562,6 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6487 | <context context-type="linenumber">3</context> | 6562 | <context context-type="linenumber">3</context> |
6488 | </context-group> | 6563 | </context-group> |
6489 | </trans-unit> | 6564 | </trans-unit> |
6490 | |||
6491 | <trans-unit id="19872047295276660" datatype="html"> | 6565 | <trans-unit id="19872047295276660" datatype="html"> |
6492 | <source>This instance is dedicated to sensitive/NSFW content.</source> | 6566 | <source>This instance is dedicated to sensitive/NSFW content.</source> |
6493 | <target state="new">This instance is dedicated to sensitive/NSFW content.</target> | 6567 | <target state="new">This instance is dedicated to sensitive/NSFW content.</target> |
@@ -6814,24 +6888,26 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6814 | <trans-unit id="4195286790385468087" datatype="html"> | 6888 | <trans-unit id="4195286790385468087" datatype="html"> |
6815 | <source>About this instance</source> | 6889 | <source>About this instance</source> |
6816 | <target state="new">About this instance</target> | 6890 | <target state="new">About this instance</target> |
6817 | 6891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">24</context></context-group> | |
6818 | <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> | 6892 | </trans-unit> |
6819 | <trans-unit id="8773846522957677259" datatype="html"> | 6893 | <trans-unit id="8773846522957677259" datatype="html"> |
6820 | <source>About PeerTube</source> | 6894 | <source>About PeerTube</source> |
6821 | <target state="new">About PeerTube</target> | 6895 | <target state="new">About PeerTube</target> |
6822 | 6896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">49</context></context-group> | |
6823 | <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> | 6897 | </trans-unit> |
6824 | <trans-unit id="1812900507515561988" datatype="html"> | 6898 | <trans-unit id="1812900507515561988" datatype="html"> |
6825 | <source>About this instance's network</source> | 6899 | <source>About this instance's network</source> |
6826 | <target state="new">About this instance's network</target> | 6900 | <target state="new">About this instance's network</target> |
6827 | 6901 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">58</context></context-group> | |
6828 | <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> | 6902 | </trans-unit> |
6829 | <trans-unit id="892073694820881630" datatype="html"> | 6903 | <trans-unit id="892073694820881630" datatype="html"> |
6830 | <source>Link copied</source> | 6904 | <source>Link copied</source> |
6831 | <target state="new">Link copied</target> | 6905 | <target state="new">Link copied</target> |
6832 | 6906 | <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> | |
6833 | <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"> | 6907 | </trans-unit> |
6834 | <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> | 6908 | <trans-unit id="4807161697338135032" datatype="html"> |
6909 | <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> | ||
6910 | <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> | ||
6835 | <context-group purpose="location"> | 6911 | <context-group purpose="location"> |
6836 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> | 6912 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> |
6837 | <context context-type="linenumber">3</context> | 6913 | <context context-type="linenumber">3</context> |
@@ -6983,19 +7059,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6983 | <trans-unit id="6979021199788941693" datatype="html"> | 7059 | <trans-unit id="6979021199788941693" datatype="html"> |
6984 | <source>Your message has been sent.</source> | 7060 | <source>Your message has been sent.</source> |
6985 | <target state="new">Your message has been sent.</target> | 7061 | <target state="new">Your message has been sent.</target> |
6986 | 7062 | <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> | |
6987 | <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> | 7063 | </trans-unit> |
6988 | <trans-unit id="2072135752262464360" datatype="html"> | 7064 | <trans-unit id="2072135752262464360" datatype="html"> |
6989 | <source>You already sent this form recently</source> | 7065 | <source>You already sent this form recently</source> |
6990 | <target state="new">You already sent this form recently</target> | 7066 | <target state="new">You already sent this form recently</target> |
6991 | 7067 | <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> | |
6992 | <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> | 7068 | </trans-unit> |
6993 | <trans-unit id="819067926858619041" datatype="html"> | 7069 | <trans-unit id="819067926858619041" datatype="html"> |
6994 | <source>Account videos</source> | 7070 | <source>Account videos</source> |
6995 | <target state="new">Account videos</target> | 7071 | <target state="new">Account videos</target> |
6996 | 7072 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">35</context></context-group> | |
6997 | <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> | 7073 | </trans-unit> |
6998 | |||
6999 | <trans-unit id="4605517634011438234" datatype="html"> | 7074 | <trans-unit id="4605517634011438234" datatype="html"> |
7000 | <source>ACCOUNT</source> | 7075 | <source>ACCOUNT</source> |
7001 | <target state="new">ACCOUNT</target> | 7076 | <target state="new">ACCOUNT</target> |
@@ -7007,65 +7082,80 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7007 | <trans-unit id="6823616469362610020" datatype="html"> | 7082 | <trans-unit id="6823616469362610020" datatype="html"> |
7008 | <source>Account video channels</source> | 7083 | <source>Account video channels</source> |
7009 | <target state="new">Account video channels</target> | 7084 | <target state="new">Account video channels</target> |
7010 | 7085 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">26</context></context-group> | |
7011 | <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> | 7086 | </trans-unit> |
7012 | |||
7013 | <trans-unit id="807777065817324789" datatype="html"> | 7087 | <trans-unit id="807777065817324789" datatype="html"> |
7014 | <source>Display all videos (private, unlisted or not yet published)</source> | 7088 | <source>Display all videos (private, unlisted or not yet published)</source> |
7015 | <target state="new">Display all videos (private, unlisted or not yet published)</target> | 7089 | <target state="new">Display all videos (private, unlisted or not yet published)</target> |
7016 | 7090 | <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> | |
7017 | 7091 | </trans-unit> | |
7018 | 7092 | <trans-unit id="784681343382270982" datatype="html"> | |
7019 | 7093 | <source>Remove this filter</source> | |
7020 | 7094 | <target state="new">Remove this filter</target> | |
7021 | 7095 | <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> | |
7022 | 7096 | </trans-unit> | |
7023 | <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"> | 7097 | <trans-unit id="5254305728396198887" datatype="html"> |
7024 | <source>Remove this filter</source><target state="new">Remove this filter</target> | 7098 | <source>Sensitive content</source> |
7025 | 7099 | <target state="new">Sensitive content</target> | |
7026 | <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"> | 7100 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">115</context></context-group> |
7027 | <source>Sensitive content</source><target state="new">Sensitive content</target> | 7101 | </trans-unit> |
7028 | 7102 | <trans-unit id="5590086849807274701" datatype="html"> | |
7029 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">115</context></context-group></trans-unit><trans-unit id="5590086849807274701" datatype="html"> | 7103 | <source>Scope</source> |
7030 | <source>Scope</source><target state="new">Scope</target> | 7104 | <target state="new">Scope</target> |
7031 | 7105 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">122</context></context-group> | |
7032 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">122</context></context-group></trans-unit><trans-unit id="5019568087038659501" datatype="html"> | 7106 | </trans-unit> |
7033 | <source>Federated</source><target state="new">Federated</target> | 7107 | <trans-unit id="5019568087038659501" datatype="html"> |
7034 | 7108 | <source>Federated</source> | |
7035 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">124</context></context-group></trans-unit><trans-unit id="1949800099101277248" datatype="html"> | 7109 | <target state="new">Federated</target> |
7036 | <source>Languages</source><target state="new">Languages</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">124</context></context-group> |
7037 | 7111 | </trans-unit> | |
7038 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">132</context></context-group></trans-unit><trans-unit id="1902100407096396858" datatype="html"> | 7112 | <trans-unit id="1949800099101277248" datatype="html"> |
7039 | <source>Categories</source><target state="new">Categories</target> | 7113 | <source>Languages</source> |
7040 | 7114 | <target state="new">Languages</target> | |
7041 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">141</context></context-group></trans-unit><trans-unit id="3599150758014724057" datatype="html"> | 7115 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">132</context></context-group> |
7042 | <source>All videos</source><target state="new">All videos</target> | 7116 | </trans-unit> |
7043 | 7117 | <trans-unit id="1902100407096396858" datatype="html"> | |
7044 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">150</context></context-group></trans-unit><trans-unit id="8466337030143068285" datatype="html"> | 7118 | <source>Categories</source> |
7045 | <source>Blurred</source><target state="new">Blurred</target> | 7119 | <target state="new">Categories</target> |
7046 | 7120 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">141</context></context-group> | |
7047 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">225</context></context-group></trans-unit><trans-unit id="7054829409324166420" datatype="html"> | 7121 | </trans-unit> |
7048 | <source>hidden</source><target state="new">hidden</target> | 7122 | <trans-unit id="3599150758014724057" datatype="html"> |
7049 | 7123 | <source>All videos</source> | |
7050 | <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="5766954855630346873" datatype="html"> | 7124 | <target state="new">All videos</target> |
7051 | <source>blurred</source><target state="new">blurred</target> | 7125 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">150</context></context-group> |
7052 | 7126 | </trans-unit> | |
7053 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">232</context></context-group></trans-unit><trans-unit id="1833483831276078393" datatype="html"> | 7127 | <trans-unit id="8466337030143068285" datatype="html"> |
7054 | <source>displayed</source><target state="new">displayed</target> | 7128 | <source>Blurred</source> |
7055 | 7129 | <target state="new">Blurred</target> | |
7056 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">234</context></context-group></trans-unit> | 7130 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">225</context></context-group> |
7131 | </trans-unit> | ||
7132 | <trans-unit id="7054829409324166420" datatype="html"> | ||
7133 | <source>hidden</source> | ||
7134 | <target state="new">hidden</target> | ||
7135 | <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> | ||
7136 | </trans-unit> | ||
7137 | <trans-unit id="5766954855630346873" datatype="html"> | ||
7138 | <source>blurred</source> | ||
7139 | <target state="new">blurred</target> | ||
7140 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">232</context></context-group> | ||
7141 | </trans-unit> | ||
7142 | <trans-unit id="1833483831276078393" datatype="html"> | ||
7143 | <source>displayed</source> | ||
7144 | <target state="new">displayed</target> | ||
7145 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">234</context></context-group> | ||
7146 | </trans-unit> | ||
7057 | <trans-unit id="4856575356061361269" datatype="html"> | 7147 | <trans-unit id="4856575356061361269" datatype="html"> |
7058 | <source><x id="PH"/> direct account followers </source> | 7148 | <source><x id="PH"/> direct account followers </source> |
7059 | <target state="new"> | 7149 | <target state="new"> |
7060 | <x id="PH"/> direct account followers | 7150 | <x id="PH"/> direct account followers |
7061 | </target> | 7151 | </target> |
7062 | 7152 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">152</context></context-group> | |
7063 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">152</context></context-group></trans-unit> | 7153 | </trans-unit> |
7064 | <trans-unit id="6250999352462648289" datatype="html"> | 7154 | <trans-unit id="6250999352462648289" datatype="html"> |
7065 | <source>Report this account</source> | 7155 | <source>Report this account</source> |
7066 | <target state="new">Report this account</target> | 7156 | <target state="new">Report this account</target> |
7067 | 7157 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">196</context></context-group> | |
7068 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> | 7158 | </trans-unit> |
7069 | <trans-unit id="1504521795586863905" datatype="html"> | 7159 | <trans-unit id="1504521795586863905" datatype="html"> |
7070 | <source>VIDEOS</source> | 7160 | <source>VIDEOS</source> |
7071 | <target state="new">VIDEOS</target> | 7161 | <target state="new">VIDEOS</target> |
@@ -7075,21 +7165,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7075 | <trans-unit id="25349740244798533" datatype="html"> | 7165 | <trans-unit id="25349740244798533" datatype="html"> |
7076 | <source>Username copied</source> | 7166 | <source>Username copied</source> |
7077 | <target state="new">Username copied</target> | 7167 | <target state="new">Username copied</target> |
7078 | 7168 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">120</context></context-group> | |
7079 | 7169 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">103</context></context-group> | |
7080 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">120</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit> | 7170 | </trans-unit> |
7081 | <trans-unit id="9221735175659318025" datatype="html"> | 7171 | <trans-unit id="9221735175659318025" datatype="html"> |
7082 | <source>1 subscriber</source> | 7172 | <source>1 subscriber</source> |
7083 | <target state="new">1 subscriber</target> | 7173 | <target state="new">1 subscriber</target> |
7084 | 7174 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">124</context></context-group> | |
7085 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7175 | </trans-unit> |
7086 | <trans-unit id="4097331874769079975" datatype="html"> | 7176 | <trans-unit id="4097331874769079975" datatype="html"> |
7087 | <source><x id="PH"/> subscribers</source> | 7177 | <source><x id="PH"/> subscribers</source> |
7088 | <target state="new"><x id="PH"/> subscribers</target> | 7178 | <target state="new"><x id="PH"/> subscribers</target> |
7089 | 7179 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">126</context></context-group> | |
7090 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 7180 | </trans-unit> |
7091 | |||
7092 | |||
7093 | <trans-unit id="1035838766454786107" datatype="html"> | 7181 | <trans-unit id="1035838766454786107" datatype="html"> |
7094 | <source>Audio-only</source> | 7182 | <source>Audio-only</source> |
7095 | <target state="new">Audio-only</target> | 7183 | <target state="new">Audio-only</target> |
@@ -7139,8 +7227,10 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7139 | <source>Auto (via ffmpeg)</source> | 7227 | <source>Auto (via ffmpeg)</source> |
7140 | <target state="new">Auto (via ffmpeg)</target> | 7228 | <target state="new">Auto (via ffmpeg)</target> |
7141 | <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> | 7229 | <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> |
7142 | </trans-unit><trans-unit id="3642770981085338761" datatype="html"> | 7230 | </trans-unit> |
7143 | <source>Followers of your instance</source><target state="new">Followers of your instance</target> | 7231 | <trans-unit id="3642770981085338761" datatype="html"> |
7232 | <source>Followers of your instance</source> | ||
7233 | <target state="new">Followers of your instance</target> | ||
7144 | <context-group purpose="location"> | 7234 | <context-group purpose="location"> |
7145 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> | 7235 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> |
7146 | <context context-type="linenumber">3</context> | 7236 | <context context-type="linenumber">3</context> |
@@ -7250,8 +7340,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7250 | <trans-unit id="2060042292048624940"> | 7340 | <trans-unit id="2060042292048624940"> |
7251 | <source>Configuration updated.</source> | 7341 | <source>Configuration updated.</source> |
7252 | <target>Nastavení aktualizováno.</target> | 7342 | <target>Nastavení aktualizováno.</target> |
7253 | 7343 | <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">286</context></context-group> | |
7254 | <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">286</context></context-group></trans-unit> | 7344 | </trans-unit> |
7255 | <trans-unit id="6920964195632624609" datatype="html"> | 7345 | <trans-unit id="6920964195632624609" datatype="html"> |
7256 | <source>INSTANCE HOMEPAGE</source> | 7346 | <source>INSTANCE HOMEPAGE</source> |
7257 | <target state="new">INSTANCE HOMEPAGE</target> | 7347 | <target state="new">INSTANCE HOMEPAGE</target> |
@@ -7295,34 +7385,41 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7295 | <trans-unit id="2127446333083057097" datatype="html"> | 7385 | <trans-unit id="2127446333083057097" datatype="html"> |
7296 | <source>Domain is required.</source> | 7386 | <source>Domain is required.</source> |
7297 | <target state="new">Domain is required.</target> | 7387 | <target state="new">Domain is required.</target> |
7298 | 7388 | <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> | |
7299 | <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"> | 7389 | <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> |
7300 | <source>Hosts entered are invalid.</source><target state="new">Hosts entered are invalid.</target> | 7390 | </trans-unit> |
7391 | <trans-unit id="7951488350851416577" datatype="html"> | ||
7392 | <source>Hosts entered are invalid.</source> | ||
7393 | <target state="new">Hosts entered are invalid.</target> | ||
7301 | <context-group purpose="location"> | 7394 | <context-group purpose="location"> |
7302 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 7395 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
7303 | <context context-type="linenumber">93</context> | 7396 | <context context-type="linenumber">93</context> |
7304 | </context-group> | 7397 | </context-group> |
7305 | </trans-unit><trans-unit id="1469559036084108672" datatype="html"> | 7398 | </trans-unit> |
7306 | <source>Hosts entered contain duplicates.</source><target state="new">Hosts entered contain duplicates.</target> | 7399 | <trans-unit id="1469559036084108672" datatype="html"> |
7400 | <source>Hosts entered contain duplicates.</source> | ||
7401 | <target state="new">Hosts entered contain duplicates.</target> | ||
7307 | <context-group purpose="location"> | 7402 | <context-group purpose="location"> |
7308 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 7403 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
7309 | <context context-type="linenumber">94</context> | 7404 | <context context-type="linenumber">94</context> |
7310 | </context-group> | 7405 | </context-group> |
7311 | </trans-unit><trans-unit id="5991533283446904296" datatype="html"> | 7406 | </trans-unit> |
7312 | <source>Hosts or handles are invalid.</source><target state="new">Hosts or handles are invalid.</target> | 7407 | <trans-unit id="5991533283446904296" datatype="html"> |
7408 | <source>Hosts or handles are invalid.</source> | ||
7409 | <target state="new">Hosts or handles are invalid.</target> | ||
7313 | <context-group purpose="location"> | 7410 | <context-group purpose="location"> |
7314 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 7411 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
7315 | <context context-type="linenumber">102</context> | 7412 | <context context-type="linenumber">102</context> |
7316 | </context-group> | 7413 | </context-group> |
7317 | </trans-unit><trans-unit id="6759198394434886237" datatype="html"> | 7414 | </trans-unit> |
7318 | <source>Hosts or handles contain duplicates.</source><target state="new">Hosts or handles contain duplicates.</target> | 7415 | <trans-unit id="6759198394434886237" datatype="html"> |
7416 | <source>Hosts or handles contain duplicates.</source> | ||
7417 | <target state="new">Hosts or handles contain duplicates.</target> | ||
7319 | <context-group purpose="location"> | 7418 | <context-group purpose="location"> |
7320 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 7419 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
7321 | <context context-type="linenumber">103</context> | 7420 | <context context-type="linenumber">103</context> |
7322 | </context-group> | 7421 | </context-group> |
7323 | </trans-unit> | 7422 | </trans-unit> |
7324 | |||
7325 | |||
7326 | <trans-unit id="240806681889331244"> | 7423 | <trans-unit id="240806681889331244"> |
7327 | <source>Unlimited</source> | 7424 | <source>Unlimited</source> |
7328 | <target>Neomezeně</target> | 7425 | <target>Neomezeně</target> |
@@ -7482,8 +7579,10 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7482 | <x id="PH"/> removed from instance followers | 7579 | <x id="PH"/> removed from instance followers |
7483 | </target> | 7580 | </target> |
7484 | <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> | 7581 | <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> |
7485 | </trans-unit><trans-unit id="6018246591673612412" datatype="html"> | 7582 | </trans-unit> |
7486 | <source>Follow</source><target state="new">Follow</target> | 7583 | <trans-unit id="6018246591673612412" datatype="html"> |
7584 | <source>Follow</source> | ||
7585 | <target state="new">Follow</target> | ||
7487 | <context-group purpose="location"> | 7586 | <context-group purpose="location"> |
7488 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> | 7587 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> |
7489 | <context context-type="linenumber">3</context> | 7588 | <context context-type="linenumber">3</context> |
@@ -7496,8 +7595,10 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7496 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | 7595 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> |
7497 | <context context-type="linenumber">18</context> | 7596 | <context context-type="linenumber">18</context> |
7498 | </context-group> | 7597 | </context-group> |
7499 | </trans-unit><trans-unit id="3596798855644241001" datatype="html"> | 7598 | </trans-unit> |
7500 | <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> | 7599 | <trans-unit id="3596798855644241001" datatype="html"> |
7600 | <source>1 host (without "http://"), account handle or channel handle per line</source> | ||
7601 | <target state="new">1 host (without "http://"), account handle or channel handle per line</target> | ||
7501 | <context-group purpose="location"> | 7602 | <context-group purpose="location"> |
7502 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> | 7603 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> |
7503 | <context context-type="linenumber">11</context> | 7604 | <context context-type="linenumber">11</context> |
@@ -7508,14 +7609,17 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7508 | <target> | 7609 | <target> |
7509 | <x id="PH"/> není platný | 7610 | <x id="PH"/> není platný |
7510 | </target> | 7611 | </target> |
7511 | 7612 | <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> | |
7512 | <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> | 7613 | <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> |
7614 | </trans-unit> | ||
7513 | <trans-unit id="2355066641781598196"> | 7615 | <trans-unit id="2355066641781598196"> |
7514 | <source>Follow request(s) sent!</source> | 7616 | <source>Follow request(s) sent!</source> |
7515 | <target>Požadavek odeslán!</target> | 7617 | <target>Požadavek odeslán!</target> |
7516 | 7618 | <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> | |
7517 | <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"> | 7619 | </trans-unit> |
7518 | <source>Your instance subscriptions</source><target state="new">Your instance subscriptions</target> | 7620 | <trans-unit id="3459358413436264734" datatype="html"> |
7621 | <source>Your instance subscriptions</source> | ||
7622 | <target state="new">Your instance subscriptions</target> | ||
7519 | <context-group purpose="location"> | 7623 | <context-group purpose="location"> |
7520 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | 7624 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> |
7521 | <context context-type="linenumber">3</context> | 7625 | <context context-type="linenumber">3</context> |
@@ -7524,8 +7628,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7524 | <trans-unit id="4245720728052819482"> | 7628 | <trans-unit id="4245720728052819482"> |
7525 | <source>Do you really want to unfollow <x id="PH"/>?</source> | 7629 | <source>Do you really want to unfollow <x id="PH"/>?</source> |
7526 | <target>Opravdu chcete zrušit odběr kanálu <x id="PH"/>?</target> | 7630 | <target>Opravdu chcete zrušit odběr kanálu <x id="PH"/>?</target> |
7527 | 7631 | <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> | |
7528 | <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> | 7632 | </trans-unit> |
7529 | <trans-unit id="9160510009013134726"> | 7633 | <trans-unit id="9160510009013134726"> |
7530 | <source>Unfollow</source> | 7634 | <source>Unfollow</source> |
7531 | <target>Zrušit odběr</target> | 7635 | <target>Zrušit odběr</target> |
@@ -7534,8 +7638,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7534 | <trans-unit id="3935234189109112926"> | 7638 | <trans-unit id="3935234189109112926"> |
7535 | <source>You are not following <x id="PH"/> anymore.</source> | 7639 | <source>You are not following <x id="PH"/> anymore.</source> |
7536 | <target>Už dále neodebíráte <x id="PH"/>.</target> | 7640 | <target>Už dále neodebíráte <x id="PH"/>.</target> |
7537 | 7641 | <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> | |
7538 | <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> | 7642 | </trans-unit> |
7539 | <trans-unit id="2593763089859685916" datatype="html"> | 7643 | <trans-unit id="2593763089859685916" datatype="html"> |
7540 | <source>enabled</source> | 7644 | <source>enabled</source> |
7541 | <target state="new">enabled</target> | 7645 | <target state="new">enabled</target> |
@@ -7554,35 +7658,35 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7554 | <trans-unit id="81585474102700882" datatype="html"> | 7658 | <trans-unit id="81585474102700882" datatype="html"> |
7555 | <source>Used</source> | 7659 | <source>Used</source> |
7556 | <target state="new">Used</target> | 7660 | <target state="new">Used</target> |
7557 | 7661 | <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">102</context></context-group> | |
7558 | <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">102</context></context-group></trans-unit> | 7662 | </trans-unit> |
7559 | <trans-unit id="3955868613858648955" datatype="html"> | 7663 | <trans-unit id="3955868613858648955" datatype="html"> |
7560 | <source>Available</source> | 7664 | <source>Available</source> |
7561 | <target state="new">Available</target> | 7665 | <target state="new">Available</target> |
7562 | 7666 | <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">102</context></context-group> | |
7563 | <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">102</context></context-group></trans-unit> | 7667 | </trans-unit> |
7564 | <trans-unit id="5875705095657098468" datatype="html"> | 7668 | <trans-unit id="5875705095657098468" datatype="html"> |
7565 | <source>Do you really want to remove this video redundancy?</source> | 7669 | <source>Do you really want to remove this video redundancy?</source> |
7566 | <target state="new">Do you really want to remove this video redundancy?</target> | 7670 | <target state="new">Do you really want to remove this video redundancy?</target> |
7567 | 7671 | <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">142</context></context-group> | |
7568 | <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">142</context></context-group></trans-unit> | 7672 | </trans-unit> |
7569 | <trans-unit id="9098272570113000349" datatype="html"> | 7673 | <trans-unit id="9098272570113000349" datatype="html"> |
7570 | <source>Remove redundancy</source> | 7674 | <source>Remove redundancy</source> |
7571 | <target state="new">Remove redundancy</target> | 7675 | <target state="new">Remove redundancy</target> |
7572 | 7676 | <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">143</context></context-group> | |
7573 | <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">143</context></context-group></trans-unit> | 7677 | </trans-unit> |
7574 | <trans-unit id="6537102123107780785" datatype="html"> | 7678 | <trans-unit id="6537102123107780785" datatype="html"> |
7575 | <source>Video redundancies removed!</source> | 7679 | <source>Video redundancies removed!</source> |
7576 | <target state="new">Video redundancies removed!</target> | 7680 | <target state="new">Video redundancies removed!</target> |
7577 | 7681 | <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> | |
7578 | <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> | 7682 | </trans-unit> |
7579 | <trans-unit id="8639315630141911544" datatype="html"> | 7683 | <trans-unit id="8639315630141911544" datatype="html"> |
7580 | <source>Account <x id="PH"/> unmuted by your instance.</source> | 7684 | <source>Account <x id="PH"/> unmuted by your instance.</source> |
7581 | <target state="new">Account | 7685 | <target state="new">Account |
7582 | <x id="PH"/> unmuted by your instance. | 7686 | <x id="PH"/> unmuted by your instance. |
7583 | </target> | 7687 | </target> |
7584 | 7688 | <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> | |
7585 | <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> | 7689 | </trans-unit> |
7586 | <trans-unit id="3371601176452094961" datatype="html"> | 7690 | <trans-unit id="3371601176452094961" datatype="html"> |
7587 | <source>Instance <x id="PH"/> unmuted by your instance.</source> | 7691 | <source>Instance <x id="PH"/> unmuted by your instance.</source> |
7588 | <target state="new">Instance | 7692 | <target state="new">Instance |
@@ -7593,9 +7697,9 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7593 | <trans-unit id="1598375456114200087" datatype="html"> | 7697 | <trans-unit id="1598375456114200087" datatype="html"> |
7594 | <source>Instance <x id="PH"/> muted.</source> | 7698 | <source>Instance <x id="PH"/> muted.</source> |
7595 | <target state="translated">Instance <x id="PH"/> ztišena.</target> | 7699 | <target state="translated">Instance <x id="PH"/> ztišena.</target> |
7596 | 7700 | <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> | |
7597 | 7701 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">145</context></context-group> | |
7598 | <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">145</context></context-group></trans-unit> | 7702 | </trans-unit> |
7599 | <trans-unit id="3096398988891996621" datatype="html"> | 7703 | <trans-unit id="3096398988891996621" datatype="html"> |
7600 | <source>Instance <x id="PH"/> muted by your instance.</source> | 7704 | <source>Instance <x id="PH"/> muted by your instance.</source> |
7601 | <target state="translated">Instance <x id="PH"/> ztišena vaší instancí.</target> | 7705 | <target state="translated">Instance <x id="PH"/> ztišena vaší instancí.</target> |
@@ -7629,9 +7733,9 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7629 | <trans-unit id="8768506950499277937" datatype="html"> | 7733 | <trans-unit id="8768506950499277937" datatype="html"> |
7630 | <source>Copyright</source> | 7734 | <source>Copyright</source> |
7631 | <target state="new">Copyright</target> | 7735 | <target state="new">Copyright</target> |
7632 | 7736 | <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> | |
7633 | 7737 | <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> | |
7634 | <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">161</context></context-group></trans-unit> | 7738 | </trans-unit> |
7635 | <trans-unit id="3776575731053010580" datatype="html"> | 7739 | <trans-unit id="3776575731053010580" datatype="html"> |
7636 | <source>Server rules</source> | 7740 | <source>Server rules</source> |
7637 | <target state="new">Server rules</target> | 7741 | <target state="new">Server rules</target> |
@@ -7640,127 +7744,127 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7640 | <trans-unit id="6907161397537530258" datatype="html"> | 7744 | <trans-unit id="6907161397537530258" datatype="html"> |
7641 | <source>Thumbnails</source> | 7745 | <source>Thumbnails</source> |
7642 | <target state="new">Thumbnails</target> | 7746 | <target state="new">Thumbnails</target> |
7643 | 7747 | <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> | |
7644 | 7748 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">176</context></context-group> | |
7645 | <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">176</context></context-group></trans-unit> | 7749 | </trans-unit> |
7646 | <trans-unit id="6473213678768782133" datatype="html"> | 7750 | <trans-unit id="6473213678768782133" datatype="html"> |
7647 | <source>Internal actions</source> | 7751 | <source>Internal actions</source> |
7648 | <target state="new">Internal actions</target> | 7752 | <target state="new">Internal actions</target> |
7649 | 7753 | <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">56</context></context-group> | |
7650 | 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">256</context></context-group> | |
7651 | <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">56</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">256</context></context-group></trans-unit> | 7755 | </trans-unit> |
7652 | <trans-unit id="4559872264406386913" datatype="html"> | 7756 | <trans-unit id="4559872264406386913" datatype="html"> |
7653 | <source>Delete report</source> | 7757 | <source>Delete report</source> |
7654 | <target state="new">Delete report</target> | 7758 | <target state="new">Delete report</target> |
7655 | 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">287</context></context-group> | |
7656 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">287</context></context-group></trans-unit> | 7760 | </trans-unit> |
7657 | <trans-unit id="5793550984155962433" datatype="html"> | 7761 | <trans-unit id="5793550984155962433" datatype="html"> |
7658 | <source>Actions for the flagged account</source> | 7762 | <source>Actions for the flagged account</source> |
7659 | <target state="new">Actions for the flagged account</target> | 7763 | <target state="new">Actions for the flagged account</target> |
7660 | 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">298</context></context-group> | |
7661 | <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> | 7765 | </trans-unit> |
7662 | <trans-unit id="1679841953757186358" datatype="html"> | 7766 | <trans-unit id="1679841953757186358" datatype="html"> |
7663 | <source>Mark as accepted</source> | 7767 | <source>Mark as accepted</source> |
7664 | <target state="new">Mark as accepted</target> | 7768 | <target state="new">Mark as accepted</target> |
7665 | 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">272</context></context-group> | |
7666 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">272</context></context-group></trans-unit> | 7770 | </trans-unit> |
7667 | <trans-unit id="7993358694073742566" datatype="html"> | 7771 | <trans-unit id="7993358694073742566" datatype="html"> |
7668 | <source>Mark as rejected</source> | 7772 | <source>Mark as rejected</source> |
7669 | <target state="new">Mark as rejected</target> | 7773 | <target state="new">Mark as rejected</target> |
7670 | 7774 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">277</context></context-group> | |
7671 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">277</context></context-group></trans-unit> | 7775 | </trans-unit> |
7672 | <trans-unit id="4175703770051343108" datatype="html"> | 7776 | <trans-unit id="4175703770051343108" datatype="html"> |
7673 | <source>Add internal note</source> | 7777 | <source>Add internal note</source> |
7674 | <target state="new">Add internal note</target> | 7778 | <target state="new">Add internal note</target> |
7675 | 7779 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">282</context></context-group> | |
7676 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">282</context></context-group></trans-unit> | 7780 | </trans-unit> |
7677 | <trans-unit id="296166371893775555" datatype="html"> | 7781 | <trans-unit id="296166371893775555" datatype="html"> |
7678 | <source>Actions for the video</source> | 7782 | <source>Actions for the video</source> |
7679 | <target state="new">Actions for the video</target> | 7783 | <target state="new">Actions for the video</target> |
7680 | 7784 | <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">79</context></context-group> | |
7681 | 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">346</context></context-group> | |
7682 | <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">79</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">346</context></context-group></trans-unit> | 7786 | </trans-unit> |
7683 | <trans-unit id="3924877328520650445" datatype="html"> | 7787 | <trans-unit id="3924877328520650445" datatype="html"> |
7684 | <source>Block video</source> | 7788 | <source>Block video</source> |
7685 | <target state="new">Block video</target> | 7789 | <target state="new">Block video</target> |
7686 | 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">351</context></context-group> | |
7687 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">351</context></context-group></trans-unit> | 7791 | </trans-unit> |
7688 | <trans-unit id="4762794934098378428" datatype="html"> | 7792 | <trans-unit id="4762794934098378428" datatype="html"> |
7689 | <source>Video blocked.</source> | 7793 | <source>Video blocked.</source> |
7690 | <target state="new">Video blocked.</target> | 7794 | <target state="new">Video blocked.</target> |
7691 | 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">357</context></context-group> | |
7692 | 7796 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context><context context-type="linenumber">60</context></context-group> | |
7693 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">357</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> | 7797 | </trans-unit> |
7694 | <trans-unit id="4328862996304258770" datatype="html"> | 7798 | <trans-unit id="4328862996304258770" datatype="html"> |
7695 | <source>Unblock video</source> | 7799 | <source>Unblock video</source> |
7696 | <target state="new">Unblock video</target> | 7800 | <target state="new">Unblock video</target> |
7697 | 7801 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">367</context></context-group> | |
7698 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">367</context></context-group></trans-unit> | 7802 | </trans-unit> |
7699 | <trans-unit id="9065327551191479877" datatype="html"> | 7803 | <trans-unit id="9065327551191479877" datatype="html"> |
7700 | <source>Video unblocked.</source> | 7804 | <source>Video unblocked.</source> |
7701 | <target state="new">Video unblocked.</target> | 7805 | <target state="new">Video unblocked.</target> |
7702 | 7806 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">373</context></context-group> | |
7703 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">373</context></context-group></trans-unit> | 7807 | </trans-unit> |
7704 | <trans-unit id="1250415136605923486" datatype="html"> | 7808 | <trans-unit id="1250415136605923486" datatype="html"> |
7705 | <source>Do you really want to delete this abuse report?</source> | 7809 | <source>Do you really want to delete this abuse report?</source> |
7706 | <target state="new">Do you really want to delete this abuse report?</target> | 7810 | <target state="new">Do you really want to delete this abuse report?</target> |
7707 | 7811 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">145</context></context-group> | |
7708 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">145</context></context-group></trans-unit> | 7812 | </trans-unit> |
7709 | <trans-unit id="3482559157143817408" datatype="html"> | 7813 | <trans-unit id="3482559157143817408" datatype="html"> |
7710 | <source>Abuse deleted.</source> | 7814 | <source>Abuse deleted.</source> |
7711 | <target state="new">Abuse deleted.</target> | 7815 | <target state="new">Abuse deleted.</target> |
7712 | 7816 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">151</context></context-group> | |
7713 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">151</context></context-group></trans-unit> | 7817 | </trans-unit> |
7714 | <trans-unit id="6282990098351939529" datatype="html"> | 7818 | <trans-unit id="6282990098351939529" datatype="html"> |
7715 | <source>Deleted comment</source> | 7819 | <source>Deleted comment</source> |
7716 | <target state="new">Deleted comment</target> | 7820 | <target state="new">Deleted comment</target> |
7717 | 7821 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">227</context></context-group> | |
7718 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">227</context></context-group></trans-unit> | 7822 | </trans-unit> |
7719 | <trans-unit id="9196775343330824083" datatype="html"> | 7823 | <trans-unit id="9196775343330824083" datatype="html"> |
7720 | <source>Messages with reporter</source> | 7824 | <source>Messages with reporter</source> |
7721 | <target state="new">Messages with reporter</target> | 7825 | <target state="new">Messages with reporter</target> |
7722 | 7826 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">261</context></context-group> | |
7723 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">261</context></context-group></trans-unit> | 7827 | </trans-unit> |
7724 | <trans-unit id="8770468575924421391" datatype="html"> | 7828 | <trans-unit id="8770468575924421391" datatype="html"> |
7725 | <source>Messages with moderators</source> | 7829 | <source>Messages with moderators</source> |
7726 | <target state="new">Messages with moderators</target> | 7830 | <target state="new">Messages with moderators</target> |
7727 | 7831 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">262</context></context-group> | |
7728 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">262</context></context-group></trans-unit> | 7832 | </trans-unit> |
7729 | <trans-unit id="8528549800795985099" datatype="html"> | 7833 | <trans-unit id="8528549800795985099" datatype="html"> |
7730 | <source>Update internal note</source> | 7834 | <source>Update internal note</source> |
7731 | <target state="new">Update internal note</target> | 7835 | <target state="new">Update internal note</target> |
7732 | 7836 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">267</context></context-group> | |
7733 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">267</context></context-group></trans-unit> | 7837 | </trans-unit> |
7734 | <trans-unit id="3962242315365992494" datatype="html"> | 7838 | <trans-unit id="3962242315365992494" datatype="html"> |
7735 | <source>Switch video block to manual</source> | 7839 | <source>Switch video block to manual</source> |
7736 | <target state="new">Switch video block to manual</target> | 7840 | <target state="new">Switch video block to manual</target> |
7737 | 7841 | <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">61</context></context-group> | |
7738 | <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">61</context></context-group></trans-unit> | 7842 | </trans-unit> |
7739 | <trans-unit id="6906423861055262169" datatype="html"> | 7843 | <trans-unit id="6906423861055262169" datatype="html"> |
7740 | <source>Video <x id="PH"/> switched to manual block.</source> | 7844 | <source>Video <x id="PH"/> switched to manual block.</source> |
7741 | <target state="translated">Video <x id="PH"/> přepnuto na ruční blokování.</target> | 7845 | <target state="translated">Video <x id="PH"/> přepnuto na ruční blokování.</target> |
7742 | 7846 | <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">67</context></context-group> | |
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">67</context></context-group></trans-unit> | 7847 | </trans-unit> |
7744 | <trans-unit id="7293356040886494773" datatype="html"> | 7848 | <trans-unit id="7293356040886494773" datatype="html"> |
7745 | <source>Do you really want to unblock this video? It will be available again in the videos list.</source> | 7849 | <source>Do you really want to unblock this video? It will be available again in the videos list.</source> |
7746 | <target state="new">Do you really want to unblock this video? It will be available again in the videos list.</target> | 7850 | <target state="new">Do you really want to unblock this video? It will be available again in the videos list.</target> |
7747 | 7851 | <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">132</context></context-group> | |
7748 | 7852 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">180</context></context-group> | |
7749 | <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">132</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">180</context></context-group></trans-unit> | 7853 | </trans-unit> |
7750 | <trans-unit id="4859202148272511129" datatype="html"> | 7854 | <trans-unit id="4859202148272511129" datatype="html"> |
7751 | <source>Unblock</source> | 7855 | <source>Unblock</source> |
7752 | <target state="new">Unblock</target> | 7856 | <target state="new">Unblock</target> |
7753 | 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">83</context></context-group> | |
7754 | 7858 | <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">134</context></context-group> | |
7755 | 7859 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">182</context></context-group> | |
7756 | 7860 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">296</context></context-group> | |
7757 | <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">83</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">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">182</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">296</context></context-group></trans-unit> | 7861 | </trans-unit> |
7758 | <trans-unit id="4922469417589203720" datatype="html"> | 7862 | <trans-unit id="4922469417589203720" datatype="html"> |
7759 | <source>Video <x id="PH"/> unblocked.</source> | 7863 | <source>Video <x id="PH"/> unblocked.</source> |
7760 | <target state="translated">Video <x id="PH"/> odblokováno.</target> | 7864 | <target state="translated">Video <x id="PH"/> odblokováno.</target> |
7761 | 7865 | <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">140</context></context-group> | |
7762 | 7866 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">188</context></context-group> | |
7763 | <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">140</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">188</context></context-group></trans-unit> | 7867 | </trans-unit> |
7764 | <trans-unit id="6286037250766429054" datatype="html"> | 7868 | <trans-unit id="6286037250766429054" datatype="html"> |
7765 | <source>yes</source> | 7869 | <source>yes</source> |
7766 | <target state="new">yes</target> | 7870 | <target state="new">yes</target> |
@@ -7869,23 +7973,23 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7869 | <trans-unit id="6901018060567164184" datatype="html"> | 7973 | <trans-unit id="6901018060567164184" datatype="html"> |
7870 | <source>Plugins</source> | 7974 | <source>Plugins</source> |
7871 | <target state="new">Plugins</target> | 7975 | <target state="new">Plugins</target> |
7872 | 7976 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">31</context></context-group> | |
7873 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">31</context></context-group></trans-unit> | 7977 | </trans-unit> |
7874 | <trans-unit id="2798270190074840767" datatype="html"> | 7978 | <trans-unit id="2798270190074840767" datatype="html"> |
7875 | <source>Themes</source> | 7979 | <source>Themes</source> |
7876 | <target state="new">Themes</target> | 7980 | <target state="new">Themes</target> |
7877 | 7981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">35</context></context-group> | |
7878 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">35</context></context-group></trans-unit> | 7982 | </trans-unit> |
7879 | <trans-unit id="2941409202780782189" datatype="html"> | 7983 | <trans-unit id="2941409202780782189" datatype="html"> |
7880 | <source>plugin</source> | 7984 | <source>plugin</source> |
7881 | <target state="new">plugin</target> | 7985 | <target state="new">plugin</target> |
7882 | 7986 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">43</context></context-group> | |
7883 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">43</context></context-group></trans-unit> | 7987 | </trans-unit> |
7884 | <trans-unit id="840045833311458646" datatype="html"> | 7988 | <trans-unit id="840045833311458646" datatype="html"> |
7885 | <source>theme</source> | 7989 | <source>theme</source> |
7886 | <target state="new">theme</target> | 7990 | <target state="new">theme</target> |
7887 | 7991 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">46</context></context-group> | |
7888 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 7992 | </trans-unit> |
7889 | <trans-unit id="2483018961011868950" datatype="html"> | 7993 | <trans-unit id="2483018961011868950" datatype="html"> |
7890 | <source>IP address</source> | 7994 | <source>IP address</source> |
7891 | <target state="new">IP address</target> | 7995 | <target state="new">IP address</target> |
@@ -8011,9 +8115,9 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8011 | <trans-unit id="1519954996184640001"> | 8115 | <trans-unit id="1519954996184640001"> |
8012 | <source>Error</source> | 8116 | <source>Error</source> |
8013 | <target>Chyba</target> | 8117 | <target>Chyba</target> |
8014 | 8118 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">103</context></context-group> | |
8015 | 8119 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">18</context></context-group> | |
8016 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">103</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> | 8120 | </trans-unit> |
8017 | <trans-unit id="5076187961693950167" datatype="html"> | 8121 | <trans-unit id="5076187961693950167" datatype="html"> |
8018 | <source>Standard logs</source> | 8122 | <source>Standard logs</source> |
8019 | <target state="new">Standard logs</target> | 8123 | <target state="new">Standard logs</target> |
@@ -8027,8 +8131,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8027 | <trans-unit id="1886888801485703107"> | 8131 | <trans-unit id="1886888801485703107"> |
8028 | <source>User <x id="PH"/> created.</source> | 8132 | <source>User <x id="PH"/> created.</source> |
8029 | <target>Uživatel <x id="PH"/> vytvořen.</target> | 8133 | <target>Uživatel <x id="PH"/> vytvořen.</target> |
8030 | 8134 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">77</context></context-group> | |
8031 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8135 | </trans-unit> |
8032 | <trans-unit id="8286337167859377104" datatype="html"> | 8136 | <trans-unit id="8286337167859377104" datatype="html"> |
8033 | <source>Create user</source> | 8137 | <source>Create user</source> |
8034 | <target state="new">Create user</target> | 8138 | <target state="new">Create user</target> |
@@ -8052,27 +8156,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8052 | <trans-unit id="149953821752893163" datatype="html"> | 8156 | <trans-unit id="149953821752893163" datatype="html"> |
8053 | <source>Update user password</source> | 8157 | <source>Update user password</source> |
8054 | <target state="new">Update user password</target> | 8158 | <target state="new">Update user password</target> |
8055 | 8159 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">53</context></context-group> | |
8056 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">53</context></context-group></trans-unit> | 8160 | </trans-unit> |
8057 | |||
8058 | |||
8059 | <trans-unit id="780323526182667308" datatype="html"> | 8161 | <trans-unit id="780323526182667308" datatype="html"> |
8060 | <source>User <x id="PH"/> updated.</source> | 8162 | <source>User <x id="PH"/> updated.</source> |
8061 | <target state="translated">Uživatel <x id="PH"/> aktualizován.</target> | 8163 | <target state="translated">Uživatel <x id="PH"/> aktualizován.</target> |
8062 | 8164 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">92</context></context-group> | |
8063 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">92</context></context-group></trans-unit> | 8165 | </trans-unit> |
8064 | <trans-unit id="1349763489797682899"> | 8166 | <trans-unit id="1349763489797682899"> |
8065 | <source>Update user</source> | 8167 | <source>Update user</source> |
8066 | <target>Aktualizovat uživatele</target> | 8168 | <target>Aktualizovat uživatele</target> |
8067 | 8169 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">111</context></context-group> | |
8068 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">111</context></context-group></trans-unit> | 8170 | </trans-unit> |
8069 | <trans-unit id="8819563010322372715" datatype="html"> | 8171 | <trans-unit id="8819563010322372715" datatype="html"> |
8070 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> | 8172 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> |
8071 | <target state="new">An email asking for password reset has been sent to | 8173 | <target state="new">An email asking for password reset has been sent to |
8072 | <x id="PH"/>. | 8174 | <x id="PH"/>. |
8073 | </target> | 8175 | </target> |
8074 | 8176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">118</context></context-group> | |
8075 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 8177 | </trans-unit> |
8076 | <trans-unit id="7483807629538115183" datatype="html"> | 8178 | <trans-unit id="7483807629538115183" datatype="html"> |
8077 | <source>Users list</source> | 8179 | <source>Users list</source> |
8078 | <target state="new">Users list</target> | 8180 | <target state="new">Users list</target> |
@@ -8090,17 +8192,15 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8090 | </trans-unit> | 8192 | </trans-unit> |
8091 | <trans-unit id="8564701209009684429" datatype="html"> | 8193 | <trans-unit id="8564701209009684429" datatype="html"> |
8092 | <source>Federation</source> | 8194 | <source>Federation</source> |
8093 | <target state="new">Federation</target> | 8195 | <target state="translated">Federace</target> |
8094 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</context></context-group> | 8196 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</context></context-group> |
8095 | </trans-unit> | 8197 | </trans-unit> |
8096 | |||
8097 | |||
8098 | <trans-unit id="3767259920053407667" datatype="html"> | 8198 | <trans-unit id="3767259920053407667" datatype="html"> |
8099 | <source>Videos will be deleted, comments will be tombstoned.</source> | 8199 | <source>Videos will be deleted, comments will be tombstoned.</source> |
8100 | <target state="new">Videos will be deleted, comments will be tombstoned.</target> | 8200 | <target state="new">Videos will be deleted, comments will be tombstoned.</target> |
8101 | 8201 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">82</context></context-group> | |
8102 | 8202 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">267</context></context-group> | |
8103 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">82</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">267</context></context-group></trans-unit> | 8203 | </trans-unit> |
8104 | <trans-unit id="4209525355702493436" datatype="html"> | 8204 | <trans-unit id="4209525355702493436" datatype="html"> |
8105 | <source>Ban</source> | 8205 | <source>Ban</source> |
8106 | <target state="new">Ban</target> | 8206 | <target state="new">Ban</target> |
@@ -8110,9 +8210,9 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8110 | <trans-unit id="3855396975723886053" datatype="html"> | 8210 | <trans-unit id="3855396975723886053" datatype="html"> |
8111 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> | 8211 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> |
8112 | <target state="new">User won't be able to login anymore, but videos and comments will be kept as is.</target> | 8212 | <target state="new">User won't be able to login anymore, but videos and comments will be kept as is.</target> |
8113 | 8213 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">88</context></context-group> | |
8114 | 8214 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">272</context></context-group> | |
8115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">88</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">272</context></context-group></trans-unit> | 8215 | </trans-unit> |
8116 | <trans-unit id="4451482225013335720"> | 8216 | <trans-unit id="4451482225013335720"> |
8117 | <source>Unban</source> | 8217 | <source>Unban</source> |
8118 | <target>Odblokovat</target> | 8218 | <target>Odblokovat</target> |
@@ -8123,22 +8223,28 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8123 | <trans-unit id="7210277223053877333" datatype="html"> | 8223 | <trans-unit id="7210277223053877333" datatype="html"> |
8124 | <source>Set Email as Verified</source> | 8224 | <source>Set Email as Verified</source> |
8125 | <target state="new">Set Email as Verified</target> | 8225 | <target state="new">Set Email as Verified</target> |
8126 | 8226 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">100</context></context-group> | |
8127 | 8227 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">283</context></context-group> | |
8128 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">100</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">283</context></context-group></trans-unit><trans-unit id="4207916966377787111" datatype="html"> | 8228 | </trans-unit> |
8129 | <source>Created</source><target state="new">Created</target> | 8229 | <trans-unit id="4207916966377787111" datatype="html"> |
8230 | <source>Created</source> | ||
8231 | <target state="new">Created</target> | ||
8130 | <context-group purpose="location"> | 8232 | <context-group purpose="location"> |
8131 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> | 8233 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> |
8132 | <context context-type="linenumber">115</context> | 8234 | <context context-type="linenumber">115</context> |
8133 | </context-group> | 8235 | </context-group> |
8134 | </trans-unit><trans-unit id="8140268298586972139" datatype="html"> | 8236 | </trans-unit> |
8135 | <source>Daily quota</source><target state="new">Daily quota</target> | 8237 | <trans-unit id="8140268298586972139" datatype="html"> |
8238 | <source>Daily quota</source> | ||
8239 | <target state="new">Daily quota</target> | ||
8136 | <context-group purpose="location"> | 8240 | <context-group purpose="location"> |
8137 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> | 8241 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> |
8138 | <context context-type="linenumber">120</context> | 8242 | <context context-type="linenumber">120</context> |
8139 | </context-group> | 8243 | </context-group> |
8140 | </trans-unit><trans-unit id="7910076708497708162" datatype="html"> | 8244 | </trans-unit> |
8141 | <source>Last login</source><target state="new">Last login</target> | 8245 | <trans-unit id="7910076708497708162" datatype="html"> |
8246 | <source>Last login</source> | ||
8247 | <target state="new">Last login</target> | ||
8142 | <context-group purpose="location"> | 8248 | <context-group purpose="location"> |
8143 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> | 8249 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> |
8144 | <context context-type="linenumber">122</context> | 8250 | <context context-type="linenumber">122</context> |
@@ -8178,56 +8284,56 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8178 | <target state="new"> | 8284 | <target state="new"> |
8179 | <x id="PH"/> users deleted. | 8285 | <x id="PH"/> users deleted. |
8180 | </target> | 8286 | </target> |
8181 | 8287 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">201</context></context-group> | |
8182 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">201</context></context-group></trans-unit> | 8288 | </trans-unit> |
8183 | <trans-unit id="8360664597512051242" datatype="html"> | 8289 | <trans-unit id="8360664597512051242" datatype="html"> |
8184 | <source><x id="PH"/> users email set as verified. </source> | 8290 | <source><x id="PH"/> users email set as verified. </source> |
8185 | <target state="new"> | 8291 | <target state="new"> |
8186 | <x id="PH"/> users email set as verified. | 8292 | <x id="PH"/> users email set as verified. |
8187 | </target> | 8293 | </target> |
8188 | 8294 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">213</context></context-group> | |
8189 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit> | 8295 | </trans-unit> |
8190 | <trans-unit id="7390990800435887351" datatype="html"> | 8296 | <trans-unit id="7390990800435887351" datatype="html"> |
8191 | <source>Account <x id="PH"/> unmuted.</source> | 8297 | <source>Account <x id="PH"/> unmuted.</source> |
8192 | <target state="new">Account | 8298 | <target state="new">Account |
8193 | <x id="PH"/> unmuted. | 8299 | <x id="PH"/> unmuted. |
8194 | </target> | 8300 | </target> |
8195 | 8301 | <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> | |
8196 | 8302 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">131</context></context-group> | |
8197 | <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">131</context></context-group></trans-unit> | 8303 | </trans-unit> |
8198 | <trans-unit id="7246356397085094208" datatype="html"> | 8304 | <trans-unit id="7246356397085094208" datatype="html"> |
8199 | <source>Instance <x id="PH"/> unmuted.</source> | 8305 | <source>Instance <x id="PH"/> unmuted.</source> |
8200 | <target state="new">Instance | 8306 | <target state="new">Instance |
8201 | <x id="PH"/> unmuted. | 8307 | <x id="PH"/> unmuted. |
8202 | </target> | 8308 | </target> |
8203 | 8309 | <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> | |
8204 | 8310 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">159</context></context-group> | |
8205 | <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">159</context></context-group></trans-unit> | 8311 | </trans-unit> |
8206 | <trans-unit id="5551551295632950210" datatype="html"> | 8312 | <trans-unit id="5551551295632950210" datatype="html"> |
8207 | <source>Videos history is enabled</source> | 8313 | <source>Videos history is enabled</source> |
8208 | <target state="new">Videos history is enabled</target> | 8314 | <target state="new">Videos history is enabled</target> |
8209 | 8315 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">114</context></context-group> | |
8210 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">114</context></context-group></trans-unit> | 8316 | </trans-unit> |
8211 | <trans-unit id="9136227503281311926" datatype="html"> | 8317 | <trans-unit id="9136227503281311926" datatype="html"> |
8212 | <source>Videos history is disabled</source> | 8318 | <source>Videos history is disabled</source> |
8213 | <target state="new">Videos history is disabled</target> | 8319 | <target state="new">Videos history is disabled</target> |
8214 | 8320 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">115</context></context-group> | |
8215 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">115</context></context-group></trans-unit> | 8321 | </trans-unit> |
8216 | <trans-unit id="8966726118414892732" datatype="html"> | 8322 | <trans-unit id="8966726118414892732" datatype="html"> |
8217 | <source>Delete videos history</source> | 8323 | <source>Delete videos history</source> |
8218 | <target state="new">Delete videos history</target> | 8324 | <target state="new">Delete videos history</target> |
8219 | 8325 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">127</context></context-group> | |
8220 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | 8326 | </trans-unit> |
8221 | <trans-unit id="2482543433481435105" datatype="html"> | 8327 | <trans-unit id="2482543433481435105" datatype="html"> |
8222 | <source>Are you sure you want to delete all your videos history?</source> | 8328 | <source>Are you sure you want to delete all your videos history?</source> |
8223 | <target state="new">Are you sure you want to delete all your videos history?</target> | 8329 | <target state="new">Are you sure you want to delete all your videos history?</target> |
8224 | 8330 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">128</context></context-group> | |
8225 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> | 8331 | </trans-unit> |
8226 | <trans-unit id="4051606152827088952" datatype="html"> | 8332 | <trans-unit id="4051606152827088952" datatype="html"> |
8227 | <source>Videos history deleted</source> | 8333 | <source>Videos history deleted</source> |
8228 | <target state="new">Videos history deleted</target> | 8334 | <target state="new">Videos history deleted</target> |
8229 | 8335 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">136</context></context-group> | |
8230 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">136</context></context-group></trans-unit> | 8336 | </trans-unit> |
8231 | <trans-unit id="1486537403020619891" datatype="html"> | 8337 | <trans-unit id="1486537403020619891" datatype="html"> |
8232 | <source>My watch history</source> | 8338 | <source>My watch history</source> |
8233 | <target state="new">My watch history</target> | 8339 | <target state="new">My watch history</target> |
@@ -8268,24 +8374,24 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8268 | <trans-unit id="853586874765134886" datatype="html"> | 8374 | <trans-unit id="853586874765134886" datatype="html"> |
8269 | <source>You current password is invalid.</source> | 8375 | <source>You current password is invalid.</source> |
8270 | <target state="new">You current password is invalid.</target> | 8376 | <target state="new">You current password is invalid.</target> |
8271 | 8377 | <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> | |
8272 | 8378 | <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> | |
8273 | <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> | 8379 | </trans-unit> |
8274 | <trans-unit id="6159571046971090595"> | 8380 | <trans-unit id="6159571046971090595"> |
8275 | <source>Password updated.</source> | 8381 | <source>Password updated.</source> |
8276 | <target>Heslo aktualizováno.</target> | 8382 | <target>Heslo aktualizováno.</target> |
8277 | 8383 | <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> | |
8278 | <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> | 8384 | </trans-unit> |
8279 | <trans-unit id="5179099584732142331" datatype="html"> | 8385 | <trans-unit id="5179099584732142331" datatype="html"> |
8280 | <source>Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</source> | 8386 | <source>Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</source> |
8281 | <target state="new">Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</target> | 8387 | <target state="new">Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</target> |
8282 | 8388 | <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">23</context></context-group> | |
8283 | <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">23</context></context-group></trans-unit> | 8389 | </trans-unit> |
8284 | <trans-unit id="6897292459203320054" datatype="html"> | 8390 | <trans-unit id="6897292459203320054" datatype="html"> |
8285 | <source>Type your username to confirm</source> | 8391 | <source>Type your username to confirm</source> |
8286 | <target state="new">Type your username to confirm</target> | 8392 | <target state="new">Type your username to confirm</target> |
8287 | 8393 | <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">24</context></context-group> | |
8288 | <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">24</context></context-group></trans-unit> | 8394 | </trans-unit> |
8289 | <trans-unit id="3122895472333547524" datatype="html"> | 8395 | <trans-unit id="3122895472333547524" datatype="html"> |
8290 | <source>Delete your account</source> | 8396 | <source>Delete your account</source> |
8291 | <target state="new">Delete your account</target> | 8397 | <target state="new">Delete your account</target> |
@@ -8294,19 +8400,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8294 | <trans-unit id="2520605306994744004" datatype="html"> | 8400 | <trans-unit id="2520605306994744004" datatype="html"> |
8295 | <source>Delete my account</source> | 8401 | <source>Delete my account</source> |
8296 | <target state="new">Delete my account</target> | 8402 | <target state="new">Delete my account</target> |
8297 | 8403 | <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">27</context></context-group> | |
8298 | <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">27</context></context-group></trans-unit> | 8404 | </trans-unit> |
8299 | <trans-unit id="3902597758945766483" datatype="html"> | 8405 | <trans-unit id="3902597758945766483" datatype="html"> |
8300 | <source>Your account is deleted.</source> | 8406 | <source>Your account is deleted.</source> |
8301 | <target state="new">Your account is deleted.</target> | 8407 | <target state="new">Your account is deleted.</target> |
8302 | 8408 | <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">34</context></context-group> | |
8303 | <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">34</context></context-group></trans-unit> | 8409 | </trans-unit> |
8304 | <trans-unit id="4776289814033837037" datatype="html"> | 8410 | <trans-unit id="4776289814033837037" datatype="html"> |
8305 | <source>Interface settings updated.</source> | 8411 | <source>Interface settings updated.</source> |
8306 | <target state="new">Interface settings updated.</target> | 8412 | <target state="new">Interface settings updated.</target> |
8307 | 8413 | <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> | |
8308 | 8414 | <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> | |
8309 | <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> | 8415 | </trans-unit> |
8310 | <trans-unit id="77907918814566205"> | 8416 | <trans-unit id="77907918814566205"> |
8311 | <source>New video from your subscriptions</source> | 8417 | <source>New video from your subscriptions</source> |
8312 | <target>Nové video od sledovaných kanálů</target> | 8418 | <target>Nové video od sledovaných kanálů</target> |
@@ -8401,8 +8507,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8401 | <trans-unit id="4967231969832964676"> | 8507 | <trans-unit id="4967231969832964676"> |
8402 | <source>Profile updated.</source> | 8508 | <source>Profile updated.</source> |
8403 | <target>Profil aktualizován.</target> | 8509 | <target>Profil aktualizován.</target> |
8404 | 8510 | <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> | |
8405 | <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> | 8511 | </trans-unit> |
8406 | <trans-unit id="6721822899525405039" datatype="html"> | 8512 | <trans-unit id="6721822899525405039" datatype="html"> |
8407 | <source>People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source> | 8513 | <source>People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source> |
8408 | <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> | 8514 | <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> |
@@ -8414,72 +8520,71 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8414 | <trans-unit id="3525866160632851851"> | 8520 | <trans-unit id="3525866160632851851"> |
8415 | <source>Avatar changed.</source> | 8521 | <source>Avatar changed.</source> |
8416 | <target>Avatar změněn.</target> | 8522 | <target>Avatar změněn.</target> |
8417 | 8523 | <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> | |
8418 | 8524 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">111</context></context-group> | |
8419 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">111</context></context-group></trans-unit> | 8525 | </trans-unit> |
8420 | <trans-unit id="8920809083620698740" datatype="html"> | 8526 | <trans-unit id="8920809083620698740" datatype="html"> |
8421 | <source>avatar</source> | 8527 | <source>avatar</source> |
8422 | <target state="new">avatar</target> | 8528 | <target state="new">avatar</target> |
8423 | 8529 | <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> | |
8424 | 8530 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">118</context></context-group> | |
8425 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 8531 | </trans-unit> |
8426 | <trans-unit id="2775050991871557896" datatype="html"> | 8532 | <trans-unit id="2775050991871557896" datatype="html"> |
8427 | <source>Avatar deleted.</source> | 8533 | <source>Avatar deleted.</source> |
8428 | <target state="new">Avatar deleted.</target> | 8534 | <target state="new">Avatar deleted.</target> |
8429 | 8535 | <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> | |
8430 | 8536 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">128</context></context-group> | |
8431 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> | 8537 | </trans-unit> |
8432 | <trans-unit id="1233062525939746039" datatype="html"> | 8538 | <trans-unit id="1233062525939746039" datatype="html"> |
8433 | <source>Unknown language</source> | 8539 | <source>Unknown language</source> |
8434 | <target state="new">Unknown language</target> | 8540 | <target state="new">Unknown language</target> |
8435 | 8541 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">41</context></context-group> | |
8436 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit> | 8542 | </trans-unit> |
8437 | <trans-unit id="3761504852202418603" datatype="html"> | 8543 | <trans-unit id="3761504852202418603" datatype="html"> |
8438 | <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source> | 8544 | <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source> |
8439 | <target state="new">Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</target> | 8545 | <target state="new">Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</target> |
8440 | 8546 | <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> | |
8441 | <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> | 8547 | </trans-unit> |
8442 | <trans-unit id="3960396487495291449" datatype="html"> | 8548 | <trans-unit id="3960396487495291449" datatype="html"> |
8443 | <source>Video settings updated.</source> | 8549 | <source>Video settings updated.</source> |
8444 | <target state="new">Video settings updated.</target> | 8550 | <target state="new">Video settings updated.</target> |
8445 | 8551 | <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> | |
8446 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 8552 | </trans-unit> |
8447 | <trans-unit id="3326446048041727269" datatype="html"> | 8553 | <trans-unit id="3326446048041727269" datatype="html"> |
8448 | <source>Display/Video settings updated.</source> | 8554 | <source>Display/Video settings updated.</source> |
8449 | <target state="new">Display/Video settings updated.</target> | 8555 | <target state="new">Display/Video settings updated.</target> |
8450 | 8556 | <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> | |
8451 | <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> | 8557 | </trans-unit> |
8452 | <trans-unit id="1137937154872046253"> | 8558 | <trans-unit id="1137937154872046253"> |
8453 | <source>Video channel <x id="PH"/> created.</source> | 8559 | <source>Video channel <x id="PH"/> created.</source> |
8454 | <target>Videokanál <x id="PH"/> vytvořen.</target> | 8560 | <target>Videokanál <x id="PH"/> vytvořen.</target> |
8455 | 8561 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">66</context></context-group> | |
8456 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 8562 | </trans-unit> |
8457 | <trans-unit id="8723777130353305761" datatype="html"> | 8563 | <trans-unit id="8723777130353305761" datatype="html"> |
8458 | <source>This name already exists on this instance.</source> | 8564 | <source>This name already exists on this instance.</source> |
8459 | <target state="new">This name already exists on this instance.</target> | 8565 | <target state="new">This name already exists on this instance.</target> |
8460 | 8566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">72</context></context-group> | |
8461 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 8567 | </trans-unit> |
8462 | <trans-unit id="7589345916094713536"> | 8568 | <trans-unit id="7589345916094713536"> |
8463 | <source>Video channel <x id="PH"/> updated.</source> | 8569 | <source>Video channel <x id="PH"/> updated.</source> |
8464 | <target>Videokanál <x id="PH"/> aktualizován.</target> | 8570 | <target>Videokanál <x id="PH"/> aktualizován.</target> |
8465 | 8571 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">96</context></context-group> | |
8466 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">96</context></context-group></trans-unit> | 8572 | </trans-unit> |
8467 | <trans-unit id="8407755843502300957" datatype="html"> | 8573 | <trans-unit id="8407755843502300957" datatype="html"> |
8468 | <source>Banner changed.</source> | 8574 | <source>Banner changed.</source> |
8469 | <target state="new">Banner changed.</target> | 8575 | <target state="new">Banner changed.</target> |
8470 | 8576 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">141</context></context-group> | |
8471 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">141</context></context-group></trans-unit> | 8577 | </trans-unit> |
8472 | <trans-unit id="689638706960732906" datatype="html"> | 8578 | <trans-unit id="689638706960732906" datatype="html"> |
8473 | <source>banner</source> | 8579 | <source>banner</source> |
8474 | <target state="new">banner</target> | 8580 | <target state="new">banner</target> |
8475 | 8581 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">148</context></context-group> | |
8476 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">148</context></context-group></trans-unit> | 8582 | </trans-unit> |
8477 | <trans-unit id="3230561499965076671" datatype="html"> | 8583 | <trans-unit id="3230561499965076671" datatype="html"> |
8478 | <source>Banner deleted.</source> | 8584 | <source>Banner deleted.</source> |
8479 | <target state="new">Banner deleted.</target> | 8585 | <target state="new">Banner deleted.</target> |
8480 | 8586 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">158</context></context-group> | |
8481 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">158</context></context-group></trans-unit> | 8587 | </trans-unit> |
8482 | |||
8483 | <trans-unit id="624066830180032195"> | 8588 | <trans-unit id="624066830180032195"> |
8484 | <source>Video channel <x id="PH"/> deleted.</source> | 8589 | <source>Video channel <x id="PH"/> deleted.</source> |
8485 | <target>Videokanál <x id="PH"/> odstraněn.</target> | 8590 | <target>Videokanál <x id="PH"/> odstraněn.</target> |
@@ -8535,8 +8640,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8535 | <trans-unit id="5032453707232754344"> | 8640 | <trans-unit id="5032453707232754344"> |
8536 | <source>Playlist <x id="PH"/> created.</source> | 8641 | <source>Playlist <x id="PH"/> created.</source> |
8537 | <target>Seznam <x id="PH"/> vytvořen.</target> | 8642 | <target>Seznam <x id="PH"/> vytvořen.</target> |
8538 | 8643 | <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> | |
8539 | <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> | 8644 | </trans-unit> |
8540 | <trans-unit id="5674286808255988565" datatype="html"> | 8645 | <trans-unit id="5674286808255988565" datatype="html"> |
8541 | <source>Create</source> | 8646 | <source>Create</source> |
8542 | <target state="new">Create</target> | 8647 | <target state="new">Create</target> |
@@ -8569,15 +8674,15 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8569 | <trans-unit id="1431617394009162547"> | 8674 | <trans-unit id="1431617394009162547"> |
8570 | <source>Playlist <x id="PH"/> updated.</source> | 8675 | <source>Playlist <x id="PH"/> updated.</source> |
8571 | <target>Seznam <x id="PH"/> aktualizován.</target> | 8676 | <target>Seznam <x id="PH"/> aktualizován.</target> |
8572 | 8677 | <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> | |
8573 | <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> | 8678 | </trans-unit> |
8574 | <trans-unit id="2027805873922338635"> | 8679 | <trans-unit id="2027805873922338635"> |
8575 | <source>Do you really want to delete <x id="PH"/>?</source> | 8680 | <source>Do you really want to delete <x id="PH"/>?</source> |
8576 | <target>Opravdu chcete smazat seznam <x id="PH"/>?</target> | 8681 | <target>Opravdu chcete smazat seznam <x id="PH"/>?</target> |
8577 | 8682 | <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> | |
8578 | 8683 | <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> | |
8579 | 8684 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">143</context></context-group> | |
8580 | <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">143</context></context-group></trans-unit> | 8685 | </trans-unit> |
8581 | <trans-unit id="4844578664427956129" datatype="html"> | 8686 | <trans-unit id="4844578664427956129" datatype="html"> |
8582 | <source>Change ownership</source> | 8687 | <source>Change ownership</source> |
8583 | <target state="new">Change ownership</target> | 8688 | <target state="new">Change ownership</target> |
@@ -8602,15 +8707,15 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8602 | <trans-unit id="8197117721861453263"> | 8707 | <trans-unit id="8197117721861453263"> |
8603 | <source>Do you really want to delete <x id="PH"/> videos?</source> | 8708 | <source>Do you really want to delete <x id="PH"/> videos?</source> |
8604 | <target>Opravdu chcete odstranit <x id="PH"/> videí?</target> | 8709 | <target>Opravdu chcete odstranit <x id="PH"/> videí?</target> |
8605 | 8710 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">116</context></context-group> | |
8606 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">116</context></context-group></trans-unit> | 8711 | </trans-unit> |
8607 | <trans-unit id="2728855911908920537"> | 8712 | <trans-unit id="2728855911908920537"> |
8608 | <source><x id="PH"/> videos deleted. </source> | 8713 | <source><x id="PH"/> videos deleted. </source> |
8609 | <target> | 8714 | <target> |
8610 | <x id="PH"/> videí odstraněno. | 8715 | <x id="PH"/> videí odstraněno. |
8611 | </target> | 8716 | </target> |
8612 | 8717 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">133</context></context-group> | |
8613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit> | 8718 | </trans-unit> |
8614 | <trans-unit id="2027805873922338635"> | 8719 | <trans-unit id="2027805873922338635"> |
8615 | <source>Do you really want to delete <x id="PH"/>? </source> | 8720 | <source>Do you really want to delete <x id="PH"/>? </source> |
8616 | <target>Opravdu chcete odstranit | 8721 | <target>Opravdu chcete odstranit |
@@ -8624,15 +8729,17 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8624 | <trans-unit id="2767660806989176400"> | 8729 | <trans-unit id="2767660806989176400"> |
8625 | <source>Video <x id="PH"/> deleted.</source> | 8730 | <source>Video <x id="PH"/> deleted.</source> |
8626 | <target>Video <x id="PH"/> odstraněno.</target> | 8731 | <target>Video <x id="PH"/> odstraněno.</target> |
8627 | 8732 | <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> | |
8628 | 8733 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">214</context></context-group> | |
8629 | <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/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">214</context></context-group></trans-unit> | 8734 | </trans-unit> |
8630 | <trans-unit id="6810714890760227072" datatype="html"> | 8735 | <trans-unit id="6810714890760227072" datatype="html"> |
8631 | <source>Ownership change request sent.</source> | 8736 | <source>Ownership change request sent.</source> |
8632 | <target state="new">Ownership change request sent.</target> | 8737 | <target state="new">Ownership change request sent.</target> |
8633 | 8738 | <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> | |
8634 | <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"> | 8739 | </trans-unit> |
8635 | <source>Sort by</source><target state="new">Sort by</target> | 8740 | <trans-unit id="7699622144571229146" datatype="html"> |
8741 | <source>Sort by</source> | ||
8742 | <target state="new">Sort by</target> | ||
8636 | <context-group purpose="location"> | 8743 | <context-group purpose="location"> |
8637 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context> | 8744 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context> |
8638 | <context context-type="linenumber">26</context> | 8745 | <context context-type="linenumber">26</context> |
@@ -8691,29 +8798,29 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8691 | <trans-unit id="7916647920967632052" datatype="html"> | 8798 | <trans-unit id="7916647920967632052" datatype="html"> |
8692 | <source>max size</source> | 8799 | <source>max size</source> |
8693 | <target state="new">max size</target> | 8800 | <target state="new">max size</target> |
8694 | 8801 | <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> | |
8695 | 8802 | <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> | |
8696 | <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> | 8803 | </trans-unit> |
8697 | <trans-unit id="6489275254908395777" datatype="html"> | 8804 | <trans-unit id="6489275254908395777" datatype="html"> |
8698 | <source>Maximize editor</source> | 8805 | <source>Maximize editor</source> |
8699 | <target state="new">Maximize editor</target> | 8806 | <target state="new">Maximize editor</target> |
8700 | 8807 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context><context context-type="linenumber">49</context></context-group> | |
8701 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context><context context-type="linenumber">49</context></context-group></trans-unit> | 8808 | </trans-unit> |
8702 | <trans-unit id="4243591013849340688" datatype="html"> | 8809 | <trans-unit id="4243591013849340688" datatype="html"> |
8703 | <source>Exit maximized editor</source> | 8810 | <source>Exit maximized editor</source> |
8704 | <target state="new">Exit maximized editor</target> | 8811 | <target state="new">Exit maximized editor</target> |
8705 | 8812 | <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> | |
8706 | <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> | 8813 | </trans-unit> |
8707 | <trans-unit id="6537885755702623401" datatype="html"> | 8814 | <trans-unit id="6537885755702623401" datatype="html"> |
8708 | <source>Now please check your emails to verify your account and complete signup.</source> | 8815 | <source>Now please check your emails to verify your account and complete signup.</source> |
8709 | <target state="new">Now please check your emails to verify your account and complete signup.</target> | 8816 | <target state="new">Now please check your emails to verify your account and complete signup.</target> |
8710 | 8817 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">129</context></context-group> | |
8711 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit> | 8818 | </trans-unit> |
8712 | <trans-unit id="2847376451647729886"> | 8819 | <trans-unit id="2847376451647729886"> |
8713 | <source>You are now logged in as <x id="PH"/>!</source> | 8820 | <source>You are now logged in as <x id="PH"/>!</source> |
8714 | <target>Nyní jste přihlášen/a jako <x id="PH"/>!</target> | 8821 | <target>Nyní jste přihlášen/a jako <x id="PH"/>!</target> |
8715 | 8822 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">137</context></context-group> | |
8716 | <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> | 8823 | </trans-unit> |
8717 | <trans-unit id="2687679787442328897" datatype="html"> | 8824 | <trans-unit id="2687679787442328897" datatype="html"> |
8718 | <source>An email with verification link will be sent to <x id="PH"/>.</source> | 8825 | <source>An email with verification link will be sent to <x id="PH"/>.</source> |
8719 | <target state="translated">Email s ověřovacím odkazem zaslán na <x id="PH"/>.</target> | 8826 | <target state="translated">Email s ověřovacím odkazem zaslán na <x id="PH"/>.</target> |
@@ -8725,13 +8832,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8725 | <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> | 8832 | <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> |
8726 | <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">33</context></context-group> | 8833 | <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">33</context></context-group> |
8727 | </trans-unit> | 8834 | </trans-unit> |
8728 | |||
8729 | <trans-unit id="1783173774503340906"> | 8835 | <trans-unit id="1783173774503340906"> |
8730 | <source>Subscribe to the account</source> | 8836 | <source>Subscribe to the account</source> |
8731 | <target>Odebírat účet</target> | 8837 | <target>Odebírat účet</target> |
8732 | 8838 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">71</context></context-group> | |
8733 | 8839 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">713</context></context-group> | |
8734 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">71</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">713</context></context-group></trans-unit> | 8840 | </trans-unit> |
8735 | <trans-unit id="3131904093925601441" datatype="html"> | 8841 | <trans-unit id="3131904093925601441" datatype="html"> |
8736 | <source>PLAYLISTS</source> | 8842 | <source>PLAYLISTS</source> |
8737 | <target state="new">PLAYLISTS</target> | 8843 | <target state="new">PLAYLISTS</target> |
@@ -8743,70 +8849,70 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8743 | <trans-unit id="7709367721354853232"> | 8849 | <trans-unit id="7709367721354853232"> |
8744 | <source>Focus the search bar</source> | 8850 | <source>Focus the search bar</source> |
8745 | <target>Zaměřit na vyhledávací pole</target> | 8851 | <target>Zaměřit na vyhledávací pole</target> |
8746 | 8852 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">270</context></context-group> | |
8747 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">270</context></context-group></trans-unit> | 8853 | </trans-unit> |
8748 | <trans-unit id="4049262826107502276" datatype="html"> | 8854 | <trans-unit id="4049262826107502276" datatype="html"> |
8749 | <source>Toggle the left menu</source> | 8855 | <source>Toggle the left menu</source> |
8750 | <target state="new">Toggle the left menu</target> | 8856 | <target state="new">Toggle the left menu</target> |
8751 | 8857 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">275</context></context-group> | |
8752 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">275</context></context-group></trans-unit> | 8858 | </trans-unit> |
8753 | <trans-unit id="5409372033656550095" datatype="html"> | 8859 | <trans-unit id="5409372033656550095" datatype="html"> |
8754 | <source>Go to the discover videos page</source> | 8860 | <source>Go to the discover videos page</source> |
8755 | <target state="new">Go to the discover videos page</target> | 8861 | <target state="new">Go to the discover videos page</target> |
8756 | 8862 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">280</context></context-group> | |
8757 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">280</context></context-group></trans-unit> | 8863 | </trans-unit> |
8758 | <trans-unit id="4278050445961255445" datatype="html"> | 8864 | <trans-unit id="4278050445961255445" datatype="html"> |
8759 | <source>Go to the trending videos page</source> | 8865 | <source>Go to the trending videos page</source> |
8760 | <target state="new">Go to the trending videos page</target> | 8866 | <target state="new">Go to the trending videos page</target> |
8761 | 8867 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">285</context></context-group> | |
8762 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">285</context></context-group></trans-unit> | 8868 | </trans-unit> |
8763 | <trans-unit id="3242234958443825475" datatype="html"> | 8869 | <trans-unit id="3242234958443825475" datatype="html"> |
8764 | <source>Go to the recently added videos page</source> | 8870 | <source>Go to the recently added videos page</source> |
8765 | <target state="new">Go to the recently added videos page</target> | 8871 | <target state="new">Go to the recently added videos page</target> |
8766 | 8872 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">290</context></context-group> | |
8767 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">290</context></context-group></trans-unit> | 8873 | </trans-unit> |
8768 | <trans-unit id="2887122197778293919" datatype="html"> | 8874 | <trans-unit id="2887122197778293919" datatype="html"> |
8769 | <source>Go to the local videos page</source> | 8875 | <source>Go to the local videos page</source> |
8770 | <target state="new">Go to the local videos page</target> | 8876 | <target state="new">Go to the local videos page</target> |
8771 | 8877 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">295</context></context-group> | |
8772 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">295</context></context-group></trans-unit> | 8878 | </trans-unit> |
8773 | <trans-unit id="8009065619559214982" datatype="html"> | 8879 | <trans-unit id="8009065619559214982" datatype="html"> |
8774 | <source>Go to the videos upload page</source> | 8880 | <source>Go to the videos upload page</source> |
8775 | <target state="new">Go to the videos upload page</target> | 8881 | <target state="new">Go to the videos upload page</target> |
8776 | 8882 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">300</context></context-group> | |
8777 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">300</context></context-group></trans-unit> | 8883 | </trans-unit> |
8778 | <trans-unit id="3779524668013120370" datatype="html"> | 8884 | <trans-unit id="3779524668013120370" datatype="html"> |
8779 | <source>Go to my subscriptions</source> | 8885 | <source>Go to my subscriptions</source> |
8780 | <target state="new">Go to my subscriptions</target> | 8886 | <target state="new">Go to my subscriptions</target> |
8781 | 8887 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">63</context></context-group> | |
8782 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">63</context></context-group></trans-unit> | 8888 | </trans-unit> |
8783 | <trans-unit id="1136469849928650779" datatype="html"> | 8889 | <trans-unit id="1136469849928650779" datatype="html"> |
8784 | <source>Go to my videos</source> | 8890 | <source>Go to my videos</source> |
8785 | <target state="new">Go to my videos</target> | 8891 | <target state="new">Go to my videos</target> |
8786 | 8892 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">67</context></context-group> | |
8787 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 8893 | </trans-unit> |
8788 | <trans-unit id="7836683738999600376" datatype="html"> | 8894 | <trans-unit id="7836683738999600376" datatype="html"> |
8789 | <source>Go to my imports</source> | 8895 | <source>Go to my imports</source> |
8790 | <target state="new">Go to my imports</target> | 8896 | <target state="new">Go to my imports</target> |
8791 | 8897 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">71</context></context-group> | |
8792 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">71</context></context-group></trans-unit> | 8898 | </trans-unit> |
8793 | <trans-unit id="7511292153332773503" datatype="html"> | 8899 | <trans-unit id="7511292153332773503" datatype="html"> |
8794 | <source>Go to my channels</source> | 8900 | <source>Go to my channels</source> |
8795 | <target state="new">Go to my channels</target> | 8901 | <target state="new">Go to my channels</target> |
8796 | 8902 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">75</context></context-group> | |
8797 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">75</context></context-group></trans-unit> | 8903 | </trans-unit> |
8798 | <trans-unit id="2013324644839511073" datatype="html"> | 8904 | <trans-unit id="2013324644839511073" datatype="html"> |
8799 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="error.text"/>. | 8905 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="err.text"/>. |
8800 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> | 8906 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> |
8801 | <target state="new">Cannot retrieve OAuth Client credentials: <x id="PH"/>. | 8907 | <target state="new">Cannot retrieve OAuth Client credentials: <x id="PH"/>. |
8802 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</target> | 8908 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</target> |
8803 | 8909 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">98</context></context-group> | |
8804 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">98</context></context-group></trans-unit> | 8910 | </trans-unit> |
8805 | <trans-unit id="375263728166936544"> | 8911 | <trans-unit id="375263728166936544"> |
8806 | <source>You need to reconnect.</source> | 8912 | <source>You need to reconnect.</source> |
8807 | <target>Musíte se znovu připojit.</target> | 8913 | <target>Musíte se znovu připojit.</target> |
8808 | 8914 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">221</context></context-group> | |
8809 | <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> | 8915 | </trans-unit> |
8810 | <trans-unit id="2206638022166154361" datatype="html"> | 8916 | <trans-unit id="2206638022166154361" datatype="html"> |
8811 | <source>Keyboard Shortcuts:</source> | 8917 | <source>Keyboard Shortcuts:</source> |
8812 | <target state="new">Keyboard Shortcuts:</target> | 8918 | <target state="new">Keyboard Shortcuts:</target> |
@@ -8819,8 +8925,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8819 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> | 8925 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> |
8820 | <context context-type="linenumber">98</context> | 8926 | <context context-type="linenumber">98</context> |
8821 | </context-group> | 8927 | </context-group> |
8822 | </trans-unit><trans-unit id="4024404994702813072" datatype="html"> | 8928 | </trans-unit> |
8823 | <source>In my library</source><target state="new">In my library</target> | 8929 | <trans-unit id="4024404994702813072" datatype="html"> |
8930 | <source>In my library</source> | ||
8931 | <target state="new">In my library</target> | ||
8824 | <context-group purpose="location"> | 8932 | <context-group purpose="location"> |
8825 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> | 8933 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> |
8826 | <context context-type="linenumber">104</context> | 8934 | <context context-type="linenumber">104</context> |
@@ -8829,8 +8937,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8829 | <trans-unit id="232050922346936574" datatype="html"> | 8937 | <trans-unit id="232050922346936574" datatype="html"> |
8830 | <source>Trending</source> | 8938 | <source>Trending</source> |
8831 | <target state="new">Trending</target> | 8939 | <target state="new">Trending</target> |
8832 | 8940 | <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> | |
8833 | <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> | 8941 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">131</context></context-group> |
8942 | </trans-unit> | ||
8834 | <trans-unit id="6470888608149621404" datatype="html"> | 8943 | <trans-unit id="6470888608149621404" datatype="html"> |
8835 | <source>ON <x id="PH" equiv-text="config.instance.name"/></source> | 8944 | <source>ON <x id="PH" equiv-text="config.instance.name"/></source> |
8836 | <target state="new">ON <x id="PH" equiv-text="config.instance.name"/></target> | 8945 | <target state="new">ON <x id="PH" equiv-text="config.instance.name"/></target> |
@@ -8853,38 +8962,38 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8853 | <trans-unit id="1266887509445371246" datatype="html"> | 8962 | <trans-unit id="1266887509445371246" datatype="html"> |
8854 | <source>Incorrect username or password.</source> | 8963 | <source>Incorrect username or password.</source> |
8855 | <target state="new">Incorrect username or password.</target> | 8964 | <target state="new">Incorrect username or password.</target> |
8856 | 8965 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">163</context></context-group> | |
8857 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 8966 | </trans-unit> |
8858 | <trans-unit id="6974874606619467663" datatype="html"> | 8967 | <trans-unit id="6974874606619467663" datatype="html"> |
8859 | <source>Your account is blocked.</source> | 8968 | <source>Your account is blocked.</source> |
8860 | <target state="new">Your account is blocked.</target> | 8969 | <target state="new">Your account is blocked.</target> |
8861 | 8970 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">164</context></context-group> | |
8862 | <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> | 8971 | </trans-unit> |
8863 | <trans-unit id="7939914198003891823" datatype="html"> | 8972 | <trans-unit id="7939914198003891823" datatype="html"> |
8864 | <source>any language</source> | 8973 | <source>any language</source> |
8865 | <target state="new">any language</target> | 8974 | <target state="new">any language</target> |
8866 | 8975 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">266</context></context-group> | |
8867 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">266</context></context-group></trans-unit> | 8976 | </trans-unit> |
8868 | <trans-unit id="5633144232269377096" datatype="html"> | 8977 | <trans-unit id="5633144232269377096" datatype="html"> |
8869 | <source>hide</source> | 8978 | <source>hide</source> |
8870 | <target state="new">hide</target> | 8979 | <target state="new">hide</target> |
8871 | 8980 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">301</context></context-group> | |
8872 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">301</context></context-group></trans-unit> | 8981 | </trans-unit> |
8873 | <trans-unit id="8603861867909474404" datatype="html"> | 8982 | <trans-unit id="8603861867909474404" datatype="html"> |
8874 | <source>blur</source> | 8983 | <source>blur</source> |
8875 | <target state="new">blur</target> | 8984 | <target state="new">blur</target> |
8876 | 8985 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">305</context></context-group> | |
8877 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">305</context></context-group></trans-unit> | 8986 | </trans-unit> |
8878 | <trans-unit id="4534458451100881847" datatype="html"> | 8987 | <trans-unit id="4534458451100881847" datatype="html"> |
8879 | <source>display</source> | 8988 | <source>display</source> |
8880 | <target state="new">display</target> | 8989 | <target state="new">display</target> |
8881 | 8990 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">309</context></context-group> | |
8882 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">309</context></context-group></trans-unit> | 8991 | </trans-unit> |
8883 | <trans-unit id="4467323362722952678" datatype="html"> | 8992 | <trans-unit id="4467323362722952678" datatype="html"> |
8884 | <source>Unknown</source> | 8993 | <source>Unknown</source> |
8885 | <target state="new">Unknown</target> | 8994 | <target state="new">Unknown</target> |
8886 | 8995 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">196</context></context-group> | |
8887 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> | 8996 | </trans-unit> |
8888 | <trans-unit id="8781423666414310853"> | 8997 | <trans-unit id="8781423666414310853"> |
8889 | <source>Your password has been successfully reset!</source> | 8998 | <source>Your password has been successfully reset!</source> |
8890 | <target>Vaše heslo bylo úspěšně resetováno!</target> | 8999 | <target>Vaše heslo bylo úspěšně resetováno!</target> |
@@ -8893,41 +9002,41 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8893 | <trans-unit id="6048892649018070225"> | 9002 | <trans-unit id="6048892649018070225"> |
8894 | <source>Today</source> | 9003 | <source>Today</source> |
8895 | <target>Dnes</target> | 9004 | <target>Dnes</target> |
8896 | 9005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">41</context></context-group> | |
8897 | 9006 | <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> | |
8898 | 9007 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">123</context></context-group> | |
8899 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">41</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">123</context></context-group></trans-unit> | 9008 | </trans-unit> |
8900 | <trans-unit id="4498682414491138092" datatype="html"> | 9009 | <trans-unit id="4498682414491138092" datatype="html"> |
8901 | <source>Yesterday</source> | 9010 | <source>Yesterday</source> |
8902 | <target state="new">Yesterday</target> | 9011 | <target state="new">Yesterday</target> |
8903 | 9012 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">124</context></context-group> | |
8904 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 9013 | </trans-unit> |
8905 | <trans-unit id="5073473933031004097" datatype="html"> | 9014 | <trans-unit id="5073473933031004097" datatype="html"> |
8906 | <source>This week</source> | 9015 | <source>This week</source> |
8907 | <target state="new">This week</target> | 9016 | <target state="new">This week</target> |
8908 | 9017 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">125</context></context-group> | |
8909 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> | 9018 | </trans-unit> |
8910 | <trans-unit id="842657237693374355" datatype="html"> | 9019 | <trans-unit id="842657237693374355" datatype="html"> |
8911 | <source>This month</source> | 9020 | <source>This month</source> |
8912 | <target state="new">This month</target> | 9021 | <target state="new">This month</target> |
8913 | 9022 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">126</context></context-group> | |
8914 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 9023 | </trans-unit> |
8915 | <trans-unit id="4463380307954693363" datatype="html"> | 9024 | <trans-unit id="4463380307954693363" datatype="html"> |
8916 | <source>Last month</source> | 9025 | <source>Last month</source> |
8917 | <target state="new">Last month</target> | 9026 | <target state="new">Last month</target> |
8918 | 9027 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">127</context></context-group> | |
8919 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | 9028 | </trans-unit> |
8920 | <trans-unit id="7473676707373218484" datatype="html"> | 9029 | <trans-unit id="7473676707373218484" datatype="html"> |
8921 | <source>Older</source> | 9030 | <source>Older</source> |
8922 | <target state="new">Older</target> | 9031 | <target state="new">Older</target> |
8923 | 9032 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">128</context></context-group> | |
8924 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> | 9033 | </trans-unit> |
8925 | <trans-unit id="5036991421517255667" datatype="html"> | 9034 | <trans-unit id="5036991421517255667" datatype="html"> |
8926 | <source>Cannot load more videos. Try again later.</source> | 9035 | <source>Cannot load more videos. Try again later.</source> |
8927 | <target state="new">Cannot load more videos. Try again later.</target> | 9036 | <target state="new">Cannot load more videos. Try again later.</target> |
8928 | 9037 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">225</context></context-group> | |
8929 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">225</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">127</context></context-group></trans-unit> | 9038 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">127</context></context-group> |
8930 | 9039 | </trans-unit> | |
8931 | <trans-unit id="4873149362496451858" datatype="html"> | 9040 | <trans-unit id="4873149362496451858" datatype="html"> |
8932 | <source>Last 7 days</source> | 9041 | <source>Last 7 days</source> |
8933 | <target state="new">Last 7 days</target> | 9042 | <target state="new">Last 7 days</target> |
@@ -8987,22 +9096,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8987 | <trans-unit id="2123659921722214537" datatype="html"> | 9096 | <trans-unit id="2123659921722214537" datatype="html"> |
8988 | <source>Views</source> | 9097 | <source>Views</source> |
8989 | <target state="new">Views</target> | 9098 | <target state="new">Views</target> |
8990 | 9099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">94</context></context-group> | |
8991 | 9100 | </trans-unit> | |
8992 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit> | ||
8993 | <trans-unit id="3208627574396957172" datatype="html"> | 9101 | <trans-unit id="3208627574396957172" datatype="html"> |
8994 | <source>Search index is unavailable. Retrying with instance results instead.</source> | 9102 | <source>Search index is unavailable. Retrying with instance results instead.</source> |
8995 | <target state="new">Search index is unavailable. Retrying with instance results instead.</target> | 9103 | <target state="new">Search index is unavailable. Retrying with instance results instead.</target> |
8996 | 9104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">163</context></context-group> | |
8997 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 9105 | </trans-unit> |
8998 | <trans-unit id="307702206382241469" datatype="html"> | 9106 | <trans-unit id="307702206382241469" datatype="html"> |
8999 | <source>Search error</source> | 9107 | <source>Search error</source> |
9000 | <target state="new">Search error</target> | 9108 | <target state="new">Search error</target> |
9001 | 9109 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">164</context></context-group> | |
9002 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">164</context></context-group></trans-unit><trans-unit id="8491751845906232809" datatype="html"> | 9110 | </trans-unit> |
9003 | <source>PeerTube instance host filter is invalid</source><target state="new">PeerTube instance host filter is invalid</target> | 9111 | <trans-unit id="8491751845906232809" datatype="html"> |
9004 | 9112 | <source>PeerTube instance host filter is invalid</source> | |
9005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">332</context></context-group></trans-unit> | 9113 | <target state="new">PeerTube instance host filter is invalid</target> |
9114 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">332</context></context-group> | ||
9115 | </trans-unit> | ||
9006 | <trans-unit id="4580988005648117665" datatype="html"> | 9116 | <trans-unit id="4580988005648117665" datatype="html"> |
9007 | <source>Search</source> | 9117 | <source>Search</source> |
9008 | <target state="new">Search</target> | 9118 | <target state="new">Search</target> |
@@ -9458,17 +9568,17 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9458 | <trans-unit id="2761226139624435788"> | 9568 | <trans-unit id="2761226139624435788"> |
9459 | <source>Description must be at least 3 characters long.</source> | 9569 | <source>Description must be at least 3 characters long.</source> |
9460 | <target>Popis musí mít délku minimálně 3 znaky.</target> | 9570 | <target>Popis musí mít délku minimálně 3 znaky.</target> |
9461 | 9571 | <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> | |
9462 | 9572 | <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> | |
9463 | 9573 | <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> | |
9464 | <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> | 9574 | </trans-unit> |
9465 | <trans-unit id="4717982586356605243" datatype="html"> | 9575 | <trans-unit id="4717982586356605243" datatype="html"> |
9466 | <source>Description cannot be more than 1000 characters long.</source> | 9576 | <source>Description cannot be more than 1000 characters long.</source> |
9467 | <target state="new">Description cannot be more than 1000 characters long.</target> | 9577 | <target state="new">Description cannot be more than 1000 characters long.</target> |
9468 | 9578 | <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> | |
9469 | 9579 | <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> | |
9470 | 9580 | <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> | |
9471 | <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> | 9581 | </trans-unit> |
9472 | <trans-unit id="1814372869868173571" datatype="html"> | 9582 | <trans-unit id="1814372869868173571" datatype="html"> |
9473 | <source>You must agree with the instance terms in order to register on it.</source> | 9583 | <source>You must agree with the instance terms in order to register on it.</source> |
9474 | <target state="new">You must agree with the instance terms in order to register on it.</target> | 9584 | <target state="new">You must agree with the instance terms in order to register on it.</target> |
@@ -9487,23 +9597,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9487 | <trans-unit id="6632896893630378443"> | 9597 | <trans-unit id="6632896893630378443"> |
9488 | <source>Display name is required.</source> | 9598 | <source>Display name is required.</source> |
9489 | <target>Zobrazované jméno je vyžadováno.</target> | 9599 | <target>Zobrazované jméno je vyžadováno.</target> |
9490 | 9600 | <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> | |
9491 | 9601 | <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> | |
9492 | 9602 | <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> | |
9493 | <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> | 9603 | </trans-unit> |
9494 | <trans-unit id="1303578752658966736" datatype="html"> | 9604 | <trans-unit id="1303578752658966736" datatype="html"> |
9495 | <source>Display name must be at least 1 character long.</source> | 9605 | <source>Display name must be at least 1 character long.</source> |
9496 | <target state="new">Display name must be at least 1 character long.</target> | 9606 | <target state="new">Display name must be at least 1 character long.</target> |
9497 | 9607 | <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> | |
9498 | 9608 | <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> | |
9499 | 9609 | <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> | |
9500 | <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> | 9610 | </trans-unit> |
9501 | <trans-unit id="4613240543124934954" datatype="html"> | 9611 | <trans-unit id="4613240543124934954" datatype="html"> |
9502 | <source>Display name cannot be more than 50 characters long.</source> | 9612 | <source>Display name cannot be more than 50 characters long.</source> |
9503 | <target state="new">Display name cannot be more than 50 characters long.</target> | 9613 | <target state="new">Display name cannot be more than 50 characters long.</target> |
9504 | 9614 | <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> | |
9505 | 9615 | <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> | |
9506 | <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> | 9616 | </trans-unit> |
9507 | <trans-unit id="1000468652492651683"> | 9617 | <trans-unit id="1000468652492651683"> |
9508 | <source>Report reason is required.</source> | 9618 | <source>Report reason is required.</source> |
9509 | <target>Důvod nahlášení je vyžadován.</target> | 9619 | <target>Důvod nahlášení je vyžadován.</target> |
@@ -9587,33 +9697,33 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9587 | <trans-unit id="4444753420973870540" datatype="html"> | 9697 | <trans-unit id="4444753420973870540" datatype="html"> |
9588 | <source>Name is required.</source> | 9698 | <source>Name is required.</source> |
9589 | <target state="new">Name is required.</target> | 9699 | <target state="new">Name is required.</target> |
9590 | 9700 | <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> | |
9591 | <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> | 9701 | </trans-unit> |
9592 | <trans-unit id="4006797705713167676" datatype="html"> | 9702 | <trans-unit id="4006797705713167676" datatype="html"> |
9593 | <source>Name must be at least 1 character long.</source> | 9703 | <source>Name must be at least 1 character long.</source> |
9594 | <target state="new">Name must be at least 1 character long.</target> | 9704 | <target state="new">Name must be at least 1 character long.</target> |
9595 | 9705 | <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> | |
9596 | <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> | 9706 | </trans-unit> |
9597 | <trans-unit id="2233809696503670883" datatype="html"> | 9707 | <trans-unit id="2233809696503670883" datatype="html"> |
9598 | <source>Name cannot be more than 50 characters long.</source> | 9708 | <source>Name cannot be more than 50 characters long.</source> |
9599 | <target state="new">Name cannot be more than 50 characters long.</target> | 9709 | <target state="new">Name cannot be more than 50 characters long.</target> |
9600 | 9710 | <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> | |
9601 | <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> | 9711 | </trans-unit> |
9602 | <trans-unit id="7915656854942800659" datatype="html"> | 9712 | <trans-unit id="7915656854942800659" datatype="html"> |
9603 | <source>Name should be lowercase alphanumeric; dots and underscores are allowed.</source> | 9713 | <source>Name should be lowercase alphanumeric; dots and underscores are allowed.</source> |
9604 | <target state="new">Name should be lowercase alphanumeric; dots and underscores are allowed.</target> | 9714 | <target state="new">Name should be lowercase alphanumeric; dots and underscores are allowed.</target> |
9605 | 9715 | <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> | |
9606 | <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> | 9716 | </trans-unit> |
9607 | <trans-unit id="6880459830525364741"> | 9717 | <trans-unit id="6880459830525364741"> |
9608 | <source>Support text must be at least 3 characters long.</source> | 9718 | <source>Support text must be at least 3 characters long.</source> |
9609 | <target>Text pro podporu musí mít délku minimálně 3 znaky.</target> | 9719 | <target>Text pro podporu musí mít délku minimálně 3 znaky.</target> |
9610 | 9720 | <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> | |
9611 | <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> | 9721 | </trans-unit> |
9612 | <trans-unit id="6461548560008228165" datatype="html"> | 9722 | <trans-unit id="6461548560008228165" datatype="html"> |
9613 | <source>Support text cannot be more than 1000 characters long</source> | 9723 | <source>Support text cannot be more than 1000 characters long</source> |
9614 | <target state="new">Support text cannot be more than 1000 characters long</target> | 9724 | <target state="new">Support text cannot be more than 1000 characters long</target> |
9615 | 9725 | <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> | |
9616 | <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> | 9726 | </trans-unit> |
9617 | <trans-unit id="5637879201055173642" datatype="html"> | 9727 | <trans-unit id="5637879201055173642" datatype="html"> |
9618 | <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> | 9728 | <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> |
9619 | <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. | 9729 | <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. |
@@ -9779,14 +9889,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9779 | <source>PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</source> | 9889 | <source>PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</source> |
9780 | <target state="new">PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</target> | 9890 | <target state="new">PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</target> |
9781 | <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> | 9891 | <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> |
9782 | </trans-unit><trans-unit id="3393133458004181121" datatype="html"> | 9892 | </trans-unit> |
9783 | <source>All categories</source><target state="new">All categories</target> | 9893 | <trans-unit id="3393133458004181121" datatype="html"> |
9894 | <source>All categories</source> | ||
9895 | <target state="new">All categories</target> | ||
9784 | <context-group purpose="location"> | 9896 | <context-group purpose="location"> |
9785 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.ts</context> | 9897 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.ts</context> |
9786 | <context context-type="linenumber">24</context> | 9898 | <context context-type="linenumber">24</context> |
9787 | </context-group> | 9899 | </context-group> |
9788 | </trans-unit><trans-unit id="3999967345340145904" datatype="html"> | 9900 | </trans-unit> |
9789 | <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> | 9901 | <trans-unit id="3999967345340145904" datatype="html"> |
9902 | <source>You can't select more than <x id="PH" equiv-text="this.maxItems"/> items</source> | ||
9903 | <target state="new">You can't select more than <x id="PH" equiv-text="this.maxItems"/> items</target> | ||
9790 | <context-group purpose="location"> | 9904 | <context-group purpose="location"> |
9791 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox-all.component.ts</context> | 9905 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox-all.component.ts</context> |
9792 | <context context-type="linenumber">81</context> | 9906 | <context context-type="linenumber">81</context> |
@@ -9795,8 +9909,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9795 | <trans-unit id="6708273825233539746" datatype="html"> | 9909 | <trans-unit id="6708273825233539746" datatype="html"> |
9796 | <source>Add a new option</source> | 9910 | <source>Add a new option</source> |
9797 | <target state="new">Add a new option</target> | 9911 | <target state="new">Add a new option</target> |
9798 | 9912 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.ts</context><context context-type="linenumber">27</context></context-group> | |
9799 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.ts</context><context context-type="linenumber">27</context></context-group></trans-unit> | 9913 | </trans-unit> |
9800 | <trans-unit id="4076995379551303829" datatype="html"> | 9914 | <trans-unit id="4076995379551303829" datatype="html"> |
9801 | <source>Custom value...</source> | 9915 | <source>Custom value...</source> |
9802 | <target state="new">Custom value...</target> | 9916 | <target state="new">Custom value...</target> |
@@ -10075,9 +10189,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10075 | <trans-unit id="40119547597591062" datatype="html"> | 10189 | <trans-unit id="40119547597591062" datatype="html"> |
10076 | <source>All languages</source> | 10190 | <source>All languages</source> |
10077 | <target state="new">All languages</target> | 10191 | <target state="new">All languages</target> |
10078 | 10192 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">180</context></context-group> | |
10079 | 10193 | <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> | |
10080 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">180</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> | 10194 | </trans-unit> |
10081 | <trans-unit id="996392855508119363" datatype="html"> | 10195 | <trans-unit id="996392855508119363" datatype="html"> |
10082 | <source>Hidden</source> | 10196 | <source>Hidden</source> |
10083 | <target state="new">Hidden</target> | 10197 | <target state="new">Hidden</target> |
@@ -10091,8 +10205,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10091 | <trans-unit id="8929218224642530466" datatype="html"> | 10205 | <trans-unit id="8929218224642530466" datatype="html"> |
10092 | <source>Displayed</source> | 10206 | <source>Displayed</source> |
10093 | <target state="new">Displayed</target> | 10207 | <target state="new">Displayed</target> |
10094 | 10208 | <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> | |
10095 | <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">227</context></context-group></trans-unit> | 10209 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">227</context></context-group> |
10210 | </trans-unit> | ||
10096 | <trans-unit id="6291055174438137560" datatype="html"> | 10211 | <trans-unit id="6291055174438137560" datatype="html"> |
10097 | <source>~ 1 minute</source> | 10212 | <source>~ 1 minute</source> |
10098 | <target state="new">~ 1 minute</target> | 10213 | <target state="new">~ 1 minute</target> |
@@ -10129,18 +10244,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10129 | <target state="new"> | 10244 | <target state="new"> |
10130 | <x id="PH"/> (channel page) | 10245 | <x id="PH"/> (channel page) |
10131 | </target> | 10246 | </target> |
10132 | 10247 | <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">19</context></context-group> | |
10133 | 10248 | <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> | |
10134 | 10249 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">113</context></context-group> | |
10135 | <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">19</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">113</context></context-group></trans-unit> | 10250 | </trans-unit> |
10136 | <trans-unit id="1209500590333005801" datatype="html"> | 10251 | <trans-unit id="1209500590333005801" datatype="html"> |
10137 | <source><x id="PH"/> (account page) </source> | 10252 | <source><x id="PH"/> (account page) </source> |
10138 | <target state="new"> | 10253 | <target state="new"> |
10139 | <x id="PH"/> (account page) | 10254 | <x id="PH"/> (account page) |
10140 | </target> | 10255 | </target> |
10141 | 10256 | <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> | |
10142 | 10257 | <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> | |
10143 | <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">39</context></context-group></trans-unit> | 10258 | </trans-unit> |
10144 | <trans-unit id="2516633974298697807"> | 10259 | <trans-unit id="2516633974298697807"> |
10145 | <source>Emphasis</source> | 10260 | <source>Emphasis</source> |
10146 | <target>Styly písma</target> | 10261 | <target>Styly písma</target> |
@@ -10169,8 +10284,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10169 | <trans-unit id="6853170548960328665" datatype="html"> | 10284 | <trans-unit id="6853170548960328665" datatype="html"> |
10170 | <source>Close search</source> | 10285 | <source>Close search</source> |
10171 | <target state="new">Close search</target> | 10286 | <target state="new">Close search</target> |
10172 | 10287 | <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> | |
10173 | <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> | 10288 | </trans-unit> |
10174 | <trans-unit id="5708680277917691451"> | 10289 | <trans-unit id="5708680277917691451"> |
10175 | <source><x id="PH"/> users banned. </source> | 10290 | <source><x id="PH"/> users banned. </source> |
10176 | <target> | 10291 | <target> |
@@ -10201,21 +10316,21 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10201 | <trans-unit id="6301381219225831298"> | 10316 | <trans-unit id="6301381219225831298"> |
10202 | <source>User <x id="PH"/> deleted.</source> | 10317 | <source>User <x id="PH"/> deleted.</source> |
10203 | <target>Uživatel <x id="PH"/> odstraněn.</target> | 10318 | <target>Uživatel <x id="PH"/> odstraněn.</target> |
10204 | 10319 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">93</context></context-group> | |
10205 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">93</context></context-group></trans-unit> | 10320 | </trans-unit> |
10206 | <trans-unit id="3896582359861826661" datatype="html"> | 10321 | <trans-unit id="3896582359861826661" datatype="html"> |
10207 | <source>User <x id="PH"/> email set as verified</source> | 10322 | <source>User <x id="PH"/> email set as verified</source> |
10208 | <target state="new">User | 10323 | <target state="new">User |
10209 | <x id="PH"/> email set as verified | 10324 | <x id="PH"/> email set as verified |
10210 | </target> | 10325 | </target> |
10211 | 10326 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">105</context></context-group> | |
10212 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">105</context></context-group></trans-unit> | 10327 | </trans-unit> |
10213 | <trans-unit id="8150022485860412528" datatype="html"> | 10328 | <trans-unit id="8150022485860412528" datatype="html"> |
10214 | <source>Account <x id="PH"/> muted.</source> | 10329 | <source>Account <x id="PH"/> muted.</source> |
10215 | <target state="translated">Účet <x id="PH"/> ztišen.</target> | 10330 | <target state="translated">Účet <x id="PH"/> ztišen.</target> |
10216 | 10331 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">117</context></context-group> | |
10217 | 10332 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">240</context></context-group> | |
10218 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">117</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">240</context></context-group></trans-unit> | 10333 | </trans-unit> |
10219 | <trans-unit id="1598375456114200087" datatype="html"> | 10334 | <trans-unit id="1598375456114200087" datatype="html"> |
10220 | <source>Instance <x id="PH"/> muted. </source> | 10335 | <source>Instance <x id="PH"/> muted. </source> |
10221 | <target state="new">Instance | 10336 | <target state="new">Instance |
@@ -10229,19 +10344,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10229 | <trans-unit id="2558977494773636050" datatype="html"> | 10344 | <trans-unit id="2558977494773636050" datatype="html"> |
10230 | <source>Account <x id="PH"/> muted by the instance.</source> | 10345 | <source>Account <x id="PH"/> muted by the instance.</source> |
10231 | <target state="translated">Účet <x id="PH"/> ztišen instancí.</target> | 10346 | <target state="translated">Účet <x id="PH"/> ztišen instancí.</target> |
10232 | 10347 | <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> | |
10233 | 10348 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">173</context></context-group> | |
10234 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 10349 | </trans-unit> |
10235 | <trans-unit id="1595779426198793580" datatype="html"> | 10350 | <trans-unit id="1595779426198793580" datatype="html"> |
10236 | <source>Mute server</source> | 10351 | <source>Mute server</source> |
10237 | <target state="new">Mute server</target> | 10352 | <target state="new">Mute server</target> |
10238 | 10353 | <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> | |
10239 | <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> | 10354 | </trans-unit> |
10240 | <trans-unit id="8014491157078444256" datatype="html"> | 10355 | <trans-unit id="8014491157078444256" datatype="html"> |
10241 | <source>Server <x id="PH"/> muted by the instance.</source> | 10356 | <source>Server <x id="PH"/> muted by the instance.</source> |
10242 | <target state="translated">Server <x id="PH"/> ztišen instancí.</target> | 10357 | <target state="translated">Server <x id="PH"/> ztišen instancí.</target> |
10243 | 10358 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">458</context></context-group> | |
10244 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">458</context></context-group></trans-unit> | 10359 | </trans-unit> |
10245 | <trans-unit id="2044813052587776285" datatype="html"> | 10360 | <trans-unit id="2044813052587776285" datatype="html"> |
10246 | <source>Add a message to communicate with the reporter</source> | 10361 | <source>Add a message to communicate with the reporter</source> |
10247 | <target state="new">Add a message to communicate with the reporter</target> | 10362 | <target state="new">Add a message to communicate with the reporter</target> |
@@ -10257,162 +10372,162 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10257 | <target state="new">Account | 10372 | <target state="new">Account |
10258 | <x id="PH"/> unmuted by the instance. | 10373 | <x id="PH"/> unmuted by the instance. |
10259 | </target> | 10374 | </target> |
10260 | 10375 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">187</context></context-group> | |
10261 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">187</context></context-group></trans-unit> | 10376 | </trans-unit> |
10262 | <trans-unit id="4991892477258601737" datatype="html"> | 10377 | <trans-unit id="4991892477258601737" datatype="html"> |
10263 | <source>Instance <x id="PH"/> muted by the instance.</source> | 10378 | <source>Instance <x id="PH"/> muted by the instance.</source> |
10264 | <target state="new">Instance | 10379 | <target state="new">Instance |
10265 | <x id="PH"/> muted by the instance. | 10380 | <x id="PH"/> muted by the instance. |
10266 | </target> | 10381 | </target> |
10267 | 10382 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">201</context></context-group> | |
10268 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">201</context></context-group></trans-unit> | 10383 | </trans-unit> |
10269 | <trans-unit id="4379430340167561220" datatype="html"> | 10384 | <trans-unit id="4379430340167561220" datatype="html"> |
10270 | <source>Instance <x id="PH"/> unmuted by the instance.</source> | 10385 | <source>Instance <x id="PH"/> unmuted by the instance.</source> |
10271 | <target state="new">Instance | 10386 | <target state="new">Instance |
10272 | <x id="PH"/> unmuted by the instance. | 10387 | <x id="PH"/> unmuted by the instance. |
10273 | </target> | 10388 | </target> |
10274 | 10389 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">215</context></context-group> | |
10275 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">215</context></context-group></trans-unit> | 10390 | </trans-unit> |
10276 | <trans-unit id="8173437618471379044" datatype="html"> | 10391 | <trans-unit id="8173437618471379044" datatype="html"> |
10277 | <source>Are you sure you want to remove all the comments of this account?</source> | 10392 | <source>Are you sure you want to remove all the comments of this account?</source> |
10278 | <target state="new">Are you sure you want to remove all the comments of this account?</target> | 10393 | <target state="new">Are you sure you want to remove all the comments of this account?</target> |
10279 | 10394 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">226</context></context-group> | |
10280 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">226</context></context-group></trans-unit> | 10395 | </trans-unit> |
10281 | <trans-unit id="6315346579373254461" datatype="html"> | 10396 | <trans-unit id="6315346579373254461" datatype="html"> |
10282 | <source>Delete account comments</source> | 10397 | <source>Delete account comments</source> |
10283 | <target state="new">Delete account comments</target> | 10398 | <target state="new">Delete account comments</target> |
10284 | 10399 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">227</context></context-group> | |
10285 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">227</context></context-group></trans-unit> | 10400 | </trans-unit> |
10286 | <trans-unit id="8559170154828316298" datatype="html"> | 10401 | <trans-unit id="8559170154828316298" datatype="html"> |
10287 | <source>Will remove comments of this account (may take several minutes).</source> | 10402 | <source>Will remove comments of this account (may take several minutes).</source> |
10288 | <target state="new">Will remove comments of this account (may take several minutes).</target> | 10403 | <target state="new">Will remove comments of this account (may take several minutes).</target> |
10289 | 10404 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">233</context></context-group> | |
10290 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">233</context></context-group></trans-unit> | 10405 | </trans-unit> |
10291 | <trans-unit id="7187838764371214919" datatype="html"> | 10406 | <trans-unit id="7187838764371214919" datatype="html"> |
10292 | <source>Edit user</source> | 10407 | <source>Edit user</source> |
10293 | <target state="new">Edit user</target> | 10408 | <target state="new">Edit user</target> |
10294 | 10409 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">261</context></context-group> | |
10295 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">261</context></context-group></trans-unit> | 10410 | </trans-unit> |
10296 | <trans-unit id="4728427543536046034" datatype="html"> | 10411 | <trans-unit id="4728427543536046034" datatype="html"> |
10297 | <source>Change quota, role, and more.</source> | 10412 | <source>Change quota, role, and more.</source> |
10298 | <target state="new">Change quota, role, and more.</target> | 10413 | <target state="new">Change quota, role, and more.</target> |
10299 | 10414 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">262</context></context-group> | |
10300 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">262</context></context-group></trans-unit> | 10415 | </trans-unit> |
10301 | <trans-unit id="7913022656086109932" datatype="html"> | 10416 | <trans-unit id="7913022656086109932" datatype="html"> |
10302 | <source>Delete user</source> | 10417 | <source>Delete user</source> |
10303 | <target state="new">Delete user</target> | 10418 | <target state="new">Delete user</target> |
10304 | 10419 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">266</context></context-group> | |
10305 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">266</context></context-group></trans-unit> | 10420 | </trans-unit> |
10306 | <trans-unit id="7577876364431026966" datatype="html"> | 10421 | <trans-unit id="7577876364431026966" datatype="html"> |
10307 | <source>Unban user</source> | 10422 | <source>Unban user</source> |
10308 | <target state="new">Unban user</target> | 10423 | <target state="new">Unban user</target> |
10309 | 10424 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">277</context></context-group> | |
10310 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">277</context></context-group></trans-unit> | 10425 | </trans-unit> |
10311 | <trans-unit id="3508163549683020253" datatype="html"> | 10426 | <trans-unit id="3508163549683020253" datatype="html"> |
10312 | <source>Allow the user to login and create videos/comments again</source> | 10427 | <source>Allow the user to login and create videos/comments again</source> |
10313 | <target state="new">Allow the user to login and create videos/comments again</target> | 10428 | <target state="new">Allow the user to login and create videos/comments again</target> |
10314 | 10429 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">278</context></context-group> | |
10315 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">278</context></context-group></trans-unit> | 10430 | </trans-unit> |
10316 | <trans-unit id="1888272455383898478" datatype="html"> | 10431 | <trans-unit id="1888272455383898478" datatype="html"> |
10317 | <source>Mute this account</source> | 10432 | <source>Mute this account</source> |
10318 | <target state="new">Mute this account</target> | 10433 | <target state="new">Mute this account</target> |
10319 | 10434 | <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> | |
10320 | <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></trans-unit> | 10435 | </trans-unit> |
10321 | <trans-unit id="2365286519320230773" datatype="html"> | 10436 | <trans-unit id="2365286519320230773" datatype="html"> |
10322 | <source>Hide any content from that user from you.</source> | 10437 | <source>Hide any content from that user from you.</source> |
10323 | <target state="new">Hide any content from that user from you.</target> | 10438 | <target state="new">Hide any content from that user from you.</target> |
10324 | 10439 | <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> | |
10325 | <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> | 10440 | </trans-unit> |
10326 | <trans-unit id="4043508901590508211" datatype="html"> | 10441 | <trans-unit id="4043508901590508211" datatype="html"> |
10327 | <source>Unmute this account</source> | 10442 | <source>Unmute this account</source> |
10328 | <target state="new">Unmute this account</target> | 10443 | <target state="new">Unmute this account</target> |
10329 | 10444 | <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> | |
10330 | <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></trans-unit> | 10445 | </trans-unit> |
10331 | <trans-unit id="2843593344827160627" datatype="html"> | 10446 | <trans-unit id="2843593344827160627" datatype="html"> |
10332 | <source>Show back content from that user for you.</source> | 10447 | <source>Show back content from that user for you.</source> |
10333 | <target state="new">Show back content from that user for you.</target> | 10448 | <target state="new">Show back content from that user for you.</target> |
10334 | 10449 | <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> | |
10335 | <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> | 10450 | </trans-unit> |
10336 | <trans-unit id="6198109035280957164" datatype="html"> | 10451 | <trans-unit id="6198109035280957164" datatype="html"> |
10337 | <source>Mute the instance</source> | 10452 | <source>Mute the instance</source> |
10338 | <target state="new">Mute the instance</target> | 10453 | <target state="new">Mute the instance</target> |
10339 | 10454 | <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> | |
10340 | <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></trans-unit> | 10455 | </trans-unit> |
10341 | <trans-unit id="4537735378779630558" datatype="html"> | 10456 | <trans-unit id="4537735378779630558" datatype="html"> |
10342 | <source>Hide any content from that instance for you.</source> | 10457 | <source>Hide any content from that instance for you.</source> |
10343 | <target state="new">Hide any content from that instance for you.</target> | 10458 | <target state="new">Hide any content from that instance for you.</target> |
10344 | 10459 | <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> | |
10345 | <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> | 10460 | </trans-unit> |
10346 | <trans-unit id="6247487021683085858" datatype="html"> | 10461 | <trans-unit id="6247487021683085858" datatype="html"> |
10347 | <source>Unmute the instance</source> | 10462 | <source>Unmute the instance</source> |
10348 | <target state="new">Unmute the instance</target> | 10463 | <target state="new">Unmute the instance</target> |
10349 | 10464 | <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> | |
10350 | <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> | 10465 | </trans-unit> |
10351 | <trans-unit id="4024846984475742259" datatype="html"> | 10466 | <trans-unit id="4024846984475742259" datatype="html"> |
10352 | <source>Show back content from that instance for you.</source> | 10467 | <source>Show back content from that instance for you.</source> |
10353 | <target state="new">Show back content from that instance for you.</target> | 10468 | <target state="new">Show back content from that instance for you.</target> |
10354 | 10469 | <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> | |
10355 | <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> | 10470 | </trans-unit> |
10356 | <trans-unit id="3108200185023875257" datatype="html"> | 10471 | <trans-unit id="3108200185023875257" datatype="html"> |
10357 | <source>Remove comments from your videos</source> | 10472 | <source>Remove comments from your videos</source> |
10358 | <target state="new">Remove comments from your videos</target> | 10473 | <target state="new">Remove comments from your videos</target> |
10359 | 10474 | <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> | |
10360 | <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> | 10475 | </trans-unit> |
10361 | <trans-unit id="4810478487244286994" datatype="html"> | 10476 | <trans-unit id="4810478487244286994" datatype="html"> |
10362 | <source>Remove comments made by this account on your videos.</source> | 10477 | <source>Remove comments made by this account on your videos.</source> |
10363 | <target state="new">Remove comments made by this account on your videos.</target> | 10478 | <target state="new">Remove comments made by this account on your videos.</target> |
10364 | 10479 | <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> | |
10365 | <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> | 10480 | </trans-unit> |
10366 | <trans-unit id="81452583525574033" datatype="html"> | 10481 | <trans-unit id="81452583525574033" datatype="html"> |
10367 | <source>Mute this account by your instance</source> | 10482 | <source>Mute this account by your instance</source> |
10368 | <target state="new">Mute this account by your instance</target> | 10483 | <target state="new">Mute this account by your instance</target> |
10369 | 10484 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">331</context></context-group> | |
10370 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">331</context></context-group></trans-unit> | 10485 | </trans-unit> |
10371 | <trans-unit id="2077144178298031252" datatype="html"> | 10486 | <trans-unit id="2077144178298031252" datatype="html"> |
10372 | <source>Hide any content from that user from you, your instance and its users.</source> | 10487 | <source>Hide any content from that user from you, your instance and its users.</source> |
10373 | <target state="new">Hide any content from that user from you, your instance and its users.</target> | 10488 | <target state="new">Hide any content from that user from you, your instance and its users.</target> |
10374 | 10489 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">332</context></context-group> | |
10375 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">332</context></context-group></trans-unit> | 10490 | </trans-unit> |
10376 | <trans-unit id="884942914962310163" datatype="html"> | 10491 | <trans-unit id="884942914962310163" datatype="html"> |
10377 | <source>Unmute this account by your instance</source> | 10492 | <source>Unmute this account by your instance</source> |
10378 | <target state="new">Unmute this account by your instance</target> | 10493 | <target state="new">Unmute this account by your instance</target> |
10379 | 10494 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">337</context></context-group> | |
10380 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">337</context></context-group></trans-unit> | 10495 | </trans-unit> |
10381 | <trans-unit id="7675070596643104983" datatype="html"> | 10496 | <trans-unit id="7675070596643104983" datatype="html"> |
10382 | <source>Show this user's content to the users of this instance again.</source> | 10497 | <source>Show this user's content to the users of this instance again.</source> |
10383 | <target state="new">Show this user's content to the users of this instance again.</target> | 10498 | <target state="new">Show this user's content to the users of this instance again.</target> |
10384 | 10499 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">338</context></context-group> | |
10385 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">338</context></context-group></trans-unit> | 10500 | </trans-unit> |
10386 | <trans-unit id="3191211873505538654" datatype="html"> | 10501 | <trans-unit id="3191211873505538654" datatype="html"> |
10387 | <source>Mute the instance by your instance</source> | 10502 | <source>Mute the instance by your instance</source> |
10388 | <target state="new">Mute the instance by your instance</target> | 10503 | <target state="new">Mute the instance by your instance</target> |
10389 | 10504 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">349</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">349</context></context-group></trans-unit> | 10505 | </trans-unit> |
10391 | <trans-unit id="525915681688649453" datatype="html"> | 10506 | <trans-unit id="525915681688649453" datatype="html"> |
10392 | <source>Hide any content from that instance from you, your instance and its users.</source> | 10507 | <source>Hide any content from that instance from you, your instance and its users.</source> |
10393 | <target state="new">Hide any content from that instance from you, your instance and its users.</target> | 10508 | <target state="new">Hide any content from that instance from you, your instance and its users.</target> |
10394 | 10509 | <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> | |
10395 | <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> | 10510 | </trans-unit> |
10396 | <trans-unit id="5325628963747139770" datatype="html"> | 10511 | <trans-unit id="5325628963747139770" datatype="html"> |
10397 | <source>Unmute the instance by your instance</source> | 10512 | <source>Unmute the instance by your instance</source> |
10398 | <target state="new">Unmute the instance by your instance</target> | 10513 | <target state="new">Unmute the instance by your instance</target> |
10399 | 10514 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">355</context></context-group> | |
10400 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">355</context></context-group></trans-unit> | 10515 | </trans-unit> |
10401 | <trans-unit id="758471033841077314" datatype="html"> | 10516 | <trans-unit id="758471033841077314" datatype="html"> |
10402 | <source>Show back content from that instance for you, your instance and its users.</source> | 10517 | <source>Show back content from that instance for you, your instance and its users.</source> |
10403 | <target state="new">Show back content from that instance for you, your instance and its users.</target> | 10518 | <target state="new">Show back content from that instance for you, your instance and its users.</target> |
10404 | 10519 | <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> | |
10405 | <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> | 10520 | </trans-unit> |
10406 | <trans-unit id="3785095284194008197" datatype="html"> | 10521 | <trans-unit id="3785095284194008197" datatype="html"> |
10407 | <source>Remove comments from your instance</source> | 10522 | <source>Remove comments from your instance</source> |
10408 | <target state="new">Remove comments from your instance</target> | 10523 | <target state="new">Remove comments from your instance</target> |
10409 | 10524 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">366</context></context-group> | |
10410 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">366</context></context-group></trans-unit> | 10525 | </trans-unit> |
10411 | <trans-unit id="4809327075591089709" datatype="html"> | 10526 | <trans-unit id="4809327075591089709" datatype="html"> |
10412 | <source>Remove comments made by this account from your instance.</source> | 10527 | <source>Remove comments made by this account from your instance.</source> |
10413 | <target state="new">Remove comments made by this account from your instance.</target> | 10528 | <target state="new">Remove comments made by this account from your instance.</target> |
10414 | 10529 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">367</context></context-group> | |
10415 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">367</context></context-group></trans-unit> | 10530 | </trans-unit> |
10416 | <trans-unit id="6746743143272021955" datatype="html"> | 10531 | <trans-unit id="6746743143272021955" datatype="html"> |
10417 | <source>Violent or repulsive</source> | 10532 | <source>Violent or repulsive</source> |
10418 | <target state="new">Violent or repulsive</target> | 10533 | <target state="new">Violent or repulsive</target> |
@@ -10441,38 +10556,38 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10441 | <trans-unit id="6374940465448453212" datatype="html"> | 10556 | <trans-unit id="6374940465448453212" datatype="html"> |
10442 | <source>Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</source> | 10557 | <source>Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</source> |
10443 | <target state="new">Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</target> | 10558 | <target state="new">Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</target> |
10444 | 10559 | <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> | |
10445 | <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> | 10560 | </trans-unit> |
10446 | <trans-unit id="7401289443263903223" datatype="html"> | 10561 | <trans-unit id="7401289443263903223" datatype="html"> |
10447 | <source>Privacy breach or doxxing</source> | 10562 | <source>Privacy breach or doxxing</source> |
10448 | <target state="new">Privacy breach or doxxing</target> | 10563 | <target state="new">Privacy breach or doxxing</target> |
10449 | 10564 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">155</context></context-group> | |
10450 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">155</context></context-group></trans-unit> | 10565 | </trans-unit> |
10451 | <trans-unit id="8363008638081993167" datatype="html"> | 10566 | <trans-unit id="8363008638081993167" datatype="html"> |
10452 | <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> | 10567 | <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> |
10453 | <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> | 10568 | <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> |
10454 | 10569 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">157</context></context-group> | |
10455 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">157</context></context-group></trans-unit> | 10570 | </trans-unit> |
10456 | <trans-unit id="380450014369168564" datatype="html"> | 10571 | <trans-unit id="380450014369168564" datatype="html"> |
10457 | <source>Infringes your copyright wrt. the regional laws with which the server must comply.</source> | 10572 | <source>Infringes your copyright wrt. the regional laws with which the server must comply.</source> |
10458 | <target state="new">Infringes your copyright wrt. the regional laws with which the server must comply.</target> | 10573 | <target state="new">Infringes your copyright wrt. the regional laws with which the server must comply.</target> |
10459 | 10574 | <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> | |
10460 | <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> | 10575 | </trans-unit> |
10461 | <trans-unit id="1378933246324202613" datatype="html"> | 10576 | <trans-unit id="1378933246324202613" datatype="html"> |
10462 | <source>Breaks server rules</source> | 10577 | <source>Breaks server rules</source> |
10463 | <target state="new">Breaks server rules</target> | 10578 | <target state="new">Breaks server rules</target> |
10464 | 10579 | <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> | |
10465 | <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> | 10580 | </trans-unit> |
10466 | <trans-unit id="7930601470861156366" datatype="html"> | 10581 | <trans-unit id="7930601470861156366" datatype="html"> |
10467 | <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> | 10582 | <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> |
10468 | <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> | 10583 | <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> |
10469 | 10584 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">168</context></context-group> | |
10470 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">168</context></context-group></trans-unit> | 10585 | </trans-unit> |
10471 | <trans-unit id="8700771664729810984" datatype="html"> | 10586 | <trans-unit id="8700771664729810984" datatype="html"> |
10472 | <source>The above can only be seen in thumbnails.</source> | 10587 | <source>The above can only be seen in thumbnails.</source> |
10473 | <target state="new">The above can only be seen in thumbnails.</target> | 10588 | <target state="new">The above can only be seen in thumbnails.</target> |
10474 | 10589 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">177</context></context-group> | |
10475 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">177</context></context-group></trans-unit> | 10590 | </trans-unit> |
10476 | <trans-unit id="2602773901491715295" datatype="html"> | 10591 | <trans-unit id="2602773901491715295" datatype="html"> |
10477 | <source>Captions</source> | 10592 | <source>Captions</source> |
10478 | <target state="new">Captions</target> | 10593 | <target state="new">Captions</target> |
@@ -10482,23 +10597,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10482 | <trans-unit id="5779804235244672536" datatype="html"> | 10597 | <trans-unit id="5779804235244672536" datatype="html"> |
10483 | <source>The above can only be seen in captions (please describe which).</source> | 10598 | <source>The above can only be seen in captions (please describe which).</source> |
10484 | <target state="new">The above can only be seen in captions (please describe which).</target> | 10599 | <target state="new">The above can only be seen in captions (please describe which).</target> |
10485 | 10600 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">182</context></context-group> | |
10486 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> | 10601 | </trans-unit> |
10487 | <trans-unit id="968295009933361070"> | 10602 | <trans-unit id="968295009933361070"> |
10488 | <source>Too many attempts, please try again after <x id="PH"/> minutes.</source> | 10603 | <source>Too many attempts, please try again after <x id="PH"/> minutes.</source> |
10489 | <target>Příliš mnoho pokusů, zkuste to prosím znovu za <x id="PH"/> minut.</target> | 10604 | <target>Příliš mnoho pokusů, zkuste to prosím znovu za <x id="PH"/> minut.</target> |
10490 | 10605 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">70</context></context-group> | |
10491 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">70</context></context-group></trans-unit> | 10606 | </trans-unit> |
10492 | <trans-unit id="4965472196059235310"> | 10607 | <trans-unit id="4965472196059235310"> |
10493 | <source>Too many attempts, please try again later.</source> | 10608 | <source>Too many attempts, please try again later.</source> |
10494 | <target>Příliš mnoho pokusů, zkuste to prosím později.</target> | 10609 | <target>Příliš mnoho pokusů, zkuste to prosím později.</target> |
10495 | 10610 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">72</context></context-group> | |
10496 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 10611 | </trans-unit> |
10497 | <trans-unit id="1693549688987384699"> | 10612 | <trans-unit id="1693549688987384699"> |
10498 | <source>Server error. Please retry later.</source> | 10613 | <source>Server error. Please retry later.</source> |
10499 | <target>Chyba serveru. Zkuste to prosím později.</target> | 10614 | <target>Chyba serveru. Zkuste to prosím později.</target> |
10500 | 10615 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">75</context></context-group> | |
10501 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">75</context></context-group></trans-unit> | 10616 | </trans-unit> |
10502 | <trans-unit id="5927402622550505067" datatype="html"> | 10617 | <trans-unit id="5927402622550505067" datatype="html"> |
10503 | <source>Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</source> | 10618 | <source>Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</source> |
10504 | <target state="new">Subscribed to all current channels of | 10619 | <target state="new">Subscribed to all current channels of |
@@ -10556,9 +10671,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10556 | <trans-unit id="4968151111061046122" datatype="html"> | 10671 | <trans-unit id="4968151111061046122" datatype="html"> |
10557 | <source>Moderator</source> | 10672 | <source>Moderator</source> |
10558 | <target state="new">Moderator</target> | 10673 | <target state="new">Moderator</target> |
10559 | 10674 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group> | |
10560 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group></trans-unit><trans-unit id="2279527393438260622" datatype="html"> | 10675 | </trans-unit> |
10561 | <source>Search videos, playlists, channels…</source><target state="new">Search videos, playlists, channels…</target> | 10676 | <trans-unit id="2279527393438260622" datatype="html"> |
10677 | <source>Search videos, playlists, channels…</source> | ||
10678 | <target state="new">Search videos, playlists, channels…</target> | ||
10562 | <context-group purpose="location"> | 10679 | <context-group purpose="location"> |
10563 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> | 10680 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> |
10564 | <context context-type="linenumber">3</context> | 10681 | <context context-type="linenumber">3</context> |
@@ -10569,27 +10686,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10569 | <target state="new">Video removed from | 10686 | <target state="new">Video removed from |
10570 | <x id="PH"/> | 10687 | <x id="PH"/> |
10571 | </target> | 10688 | </target> |
10572 | 10689 | <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">306</context></context-group> | |
10573 | 10690 | <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">93</context></context-group> | |
10574 | <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">306</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">93</context></context-group></trans-unit> | 10691 | </trans-unit> |
10575 | <trans-unit id="1056145626640340519" datatype="html"> | 10692 | <trans-unit id="1056145626640340519" datatype="html"> |
10576 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> | 10693 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> |
10577 | <target state="translated">Video přidáno do <x id="PH"/> v časových známkách <x id="PH_1"/></target> | 10694 | <target state="translated">Video přidáno do <x id="PH"/> v časových známkách <x id="PH_1"/></target> |
10578 | 10695 | <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">374</context></context-group> | |
10579 | <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">374</context></context-group></trans-unit> | 10696 | </trans-unit> |
10580 | <trans-unit id="7754186870520534716" datatype="html"> | 10697 | <trans-unit id="7754186870520534716" datatype="html"> |
10581 | <source>Video added in <x id="PH"/> </source> | 10698 | <source>Video added in <x id="PH"/> </source> |
10582 | <target state="new">Video added in | 10699 | <target state="new">Video added in |
10583 | <x id="PH"/> | 10700 | <x id="PH"/> |
10584 | </target> | 10701 | </target> |
10585 | 10702 | <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">375</context></context-group> | |
10586 | <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">375</context></context-group></trans-unit> | 10703 | </trans-unit> |
10587 | <trans-unit id="985751964589921228" datatype="html"> | 10704 | <trans-unit id="985751964589921228" datatype="html"> |
10588 | <source>Timestamps updated</source> | 10705 | <source>Timestamps updated</source> |
10589 | <target state="new">Timestamps updated</target> | 10706 | <target state="new">Timestamps updated</target> |
10590 | 10707 | <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">274</context></context-group> | |
10591 | 10708 | <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">112</context></context-group> | |
10592 | <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">274</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">112</context></context-group></trans-unit> | 10709 | </trans-unit> |
10593 | <trans-unit id="6421445850411984665" datatype="html"> | 10710 | <trans-unit id="6421445850411984665" datatype="html"> |
10594 | <source>Starts at</source> | 10711 | <source>Starts at</source> |
10595 | <target state="new">Starts at </target> | 10712 | <target state="new">Starts at </target> |
@@ -10609,61 +10726,61 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10609 | <trans-unit id="2909684945706361544" datatype="html"> | 10726 | <trans-unit id="2909684945706361544" datatype="html"> |
10610 | <source>Delete video</source> | 10727 | <source>Delete video</source> |
10611 | <target state="new">Delete video</target> | 10728 | <target state="new">Delete video</target> |
10612 | 10729 | <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> | |
10613 | <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> | 10730 | </trans-unit> |
10614 | <trans-unit id="2210418817778733727" datatype="html"> | 10731 | <trans-unit id="2210418817778733727" datatype="html"> |
10615 | <source>Actions for the comment</source> | 10732 | <source>Actions for the comment</source> |
10616 | <target state="new">Actions for the comment</target> | 10733 | <target state="new">Actions for the comment</target> |
10617 | 10734 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">412</context></context-group> | |
10618 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">412</context></context-group></trans-unit> | 10735 | </trans-unit> |
10619 | <trans-unit id="7978668497183230348" datatype="html"> | 10736 | <trans-unit id="7978668497183230348" datatype="html"> |
10620 | <source>Delete comment</source> | 10737 | <source>Delete comment</source> |
10621 | <target state="new">Delete comment</target> | 10738 | <target state="new">Delete comment</target> |
10622 | 10739 | <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> | |
10623 | <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> | 10740 | </trans-unit> |
10624 | <trans-unit id="6747218355168080191" datatype="html"> | 10741 | <trans-unit id="6747218355168080191" datatype="html"> |
10625 | <source>Do you really want to delete this comment?</source> | 10742 | <source>Do you really want to delete this comment?</source> |
10626 | <target state="new">Do you really want to delete this comment?</target> | 10743 | <target state="new">Do you really want to delete this comment?</target> |
10627 | 10744 | <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> | |
10628 | 10745 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">422</context></context-group> | |
10629 | <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">422</context></context-group></trans-unit> | 10746 | </trans-unit> |
10630 | <trans-unit id="7837272126865175984" datatype="html"> | 10747 | <trans-unit id="7837272126865175984" datatype="html"> |
10631 | <source>Comment deleted.</source> | 10748 | <source>Comment deleted.</source> |
10632 | <target state="new">Comment deleted.</target> | 10749 | <target state="new">Comment deleted.</target> |
10633 | 10750 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">430</context></context-group> | |
10634 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">430</context></context-group></trans-unit> | 10751 | </trans-unit> |
10635 | <trans-unit id="346270517625845962" datatype="html"> | 10752 | <trans-unit id="346270517625845962" datatype="html"> |
10636 | <source>Encoder</source> | 10753 | <source>Encoder</source> |
10637 | <target state="new">Encoder</target> | 10754 | <target state="new">Encoder</target> |
10638 | 10755 | <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> | |
10639 | <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> | 10756 | </trans-unit> |
10640 | <trans-unit id="2331557444464201331" datatype="html"> | 10757 | <trans-unit id="2331557444464201331" datatype="html"> |
10641 | <source>Format name</source> | 10758 | <source>Format name</source> |
10642 | <target state="new">Format name</target> | 10759 | <target state="new">Format name</target> |
10643 | 10760 | <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> | |
10644 | <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> | 10761 | </trans-unit> |
10645 | <trans-unit id="45739481977493163" datatype="html"> | 10762 | <trans-unit id="45739481977493163" datatype="html"> |
10646 | <source>Size</source> | 10763 | <source>Size</source> |
10647 | <target state="new">Size</target> | 10764 | <target state="new">Size</target> |
10648 | 10765 | <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> | |
10649 | <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> | 10766 | </trans-unit> |
10650 | <trans-unit id="7742520815129539114" datatype="html"> | 10767 | <trans-unit id="7742520815129539114" datatype="html"> |
10651 | <source>Bitrate</source> | 10768 | <source>Bitrate</source> |
10652 | <target state="new">Bitrate</target> | 10769 | <target state="new">Bitrate</target> |
10653 | 10770 | <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> | |
10654 | 10771 | <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> | |
10655 | <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> | 10772 | </trans-unit> |
10656 | <trans-unit id="4094960161662677662" datatype="html"> | 10773 | <trans-unit id="4094960161662677662" datatype="html"> |
10657 | <source>Codec</source> | 10774 | <source>Codec</source> |
10658 | <target state="new">Codec</target> | 10775 | <target state="new">Codec</target> |
10659 | 10776 | <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> | |
10660 | <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> | 10777 | </trans-unit> |
10661 | <trans-unit id="2115592966120408375"> | 10778 | <trans-unit id="2115592966120408375"> |
10662 | <source>Copied</source> | 10779 | <source>Copied</source> |
10663 | <target>Zkopírováno</target> | 10780 | <target>Zkopírováno</target> |
10664 | 10781 | <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> | |
10665 | 10782 | <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> | |
10666 | <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> | 10783 | </trans-unit> |
10667 | <trans-unit id="4323470180912194028" datatype="html"> | 10784 | <trans-unit id="4323470180912194028" datatype="html"> |
10668 | <source>Copy</source> | 10785 | <source>Copy</source> |
10669 | <target state="new">Copy</target> | 10786 | <target state="new">Copy</target> |
@@ -10673,31 +10790,31 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10673 | <trans-unit id="1472171759957681533"> | 10790 | <trans-unit id="1472171759957681533"> |
10674 | <source>Video reported.</source> | 10791 | <source>Video reported.</source> |
10675 | <target>Video nahlášeno.</target> | 10792 | <target>Video nahlášeno.</target> |
10676 | 10793 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.ts</context><context context-type="linenumber">113</context></context-group> | |
10677 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.ts</context><context context-type="linenumber">113</context></context-group></trans-unit> | 10794 | </trans-unit> |
10678 | <trans-unit id="3622946684246476652"> | 10795 | <trans-unit id="3622946684246476652"> |
10679 | <source>Do you really want to delete this video?</source> | 10796 | <source>Do you really want to delete this video?</source> |
10680 | <target>Opravdu chcete odstranit toto video?</target> | 10797 | <target>Opravdu chcete odstranit toto video?</target> |
10681 | 10798 | <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> | |
10682 | 10799 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">387</context></context-group> | |
10683 | 10800 | <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> | |
10684 | <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/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">387</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">203</context></context-group></trans-unit> | 10801 | </trans-unit> |
10685 | <trans-unit id="3941342949736653028" datatype="html"> | 10802 | <trans-unit id="3941342949736653028" datatype="html"> |
10686 | <source>Video deleted.</source> | 10803 | <source>Video deleted.</source> |
10687 | <target state="new">Video deleted.</target> | 10804 | <target state="new">Video deleted.</target> |
10688 | 10805 | <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">98</context></context-group> | |
10689 | 10806 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">395</context></context-group> | |
10690 | <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">98</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">395</context></context-group></trans-unit> | 10807 | </trans-unit> |
10691 | <trans-unit id="5072091387445907742" datatype="html"> | 10808 | <trans-unit id="5072091387445907742" datatype="html"> |
10692 | <source>Actions for the reporter</source> | 10809 | <source>Actions for the reporter</source> |
10693 | <target state="new">Actions for the reporter</target> | 10810 | <target state="new">Actions for the reporter</target> |
10694 | 10811 | <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> | |
10695 | <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> | 10812 | </trans-unit> |
10696 | <trans-unit id="6599069899275412095" datatype="html"> | 10813 | <trans-unit id="6599069899275412095" datatype="html"> |
10697 | <source>Mute reporter</source> | 10814 | <source>Mute reporter</source> |
10698 | <target state="new">Mute reporter</target> | 10815 | <target state="new">Mute reporter</target> |
10699 | 10816 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">328</context></context-group> | |
10700 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">328</context></context-group></trans-unit> | 10817 | </trans-unit> |
10701 | <trans-unit id="2990849907502572301" datatype="html"> | 10818 | <trans-unit id="2990849907502572301" datatype="html"> |
10702 | <source>This video will be duplicated by your instance.</source> | 10819 | <source>This video will be duplicated by your instance.</source> |
10703 | <target state="new">This video will be duplicated by your instance.</target> | 10820 | <target state="new">This video will be duplicated by your instance.</target> |
@@ -10711,9 +10828,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10711 | <trans-unit id="7672331870004528654" datatype="html"> | 10828 | <trans-unit id="7672331870004528654" datatype="html"> |
10712 | <source>Display live information</source> | 10829 | <source>Display live information</source> |
10713 | <target state="new">Display live information</target> | 10830 | <target state="new">Display live information</target> |
10714 | 10831 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">174</context></context-group> | |
10715 | 10832 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">278</context></context-group> | |
10716 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">174</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">278</context></context-group></trans-unit> | 10833 | </trans-unit> |
10717 | <trans-unit id="4021752662928002901" datatype="html"> | 10834 | <trans-unit id="4021752662928002901" datatype="html"> |
10718 | <source>Update</source> | 10835 | <source>Update</source> |
10719 | <target state="new">Update</target> | 10836 | <target state="new">Update</target> |
@@ -10731,20 +10848,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10731 | <trans-unit id="1950057220179636309" datatype="html"> | 10848 | <trans-unit id="1950057220179636309" datatype="html"> |
10732 | <source>Save to playlist</source> | 10849 | <source>Save to playlist</source> |
10733 | <target state="new">Save to playlist</target> | 10850 | <target state="new">Save to playlist</target> |
10734 | 10851 | <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> | |
10735 | 10852 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">264</context></context-group> | |
10736 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">264</context></context-group></trans-unit> | 10853 | </trans-unit> |
10737 | <trans-unit id="8272123190776748811" datatype="html"> | 10854 | <trans-unit id="8272123190776748811" datatype="html"> |
10738 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> | 10855 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> |
10739 | <target state="new">You need to be <a href="/login">logged in</a> to rate this video.</target> | 10856 | <target state="new">You need to be <a href="/login">logged in</a> to rate this video.</target> |
10740 | 10857 | <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> | |
10741 | <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> | 10858 | </trans-unit> |
10742 | <trans-unit id="4503408361537553733" datatype="html"> | 10859 | <trans-unit id="4503408361537553733" datatype="html"> |
10743 | <source>Mirror</source> | 10860 | <source>Mirror</source> |
10744 | <target state="new">Mirror</target> | 10861 | <target state="new">Mirror</target> |
10745 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">302</context></context-group> | 10862 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">302</context></context-group> |
10746 | </trans-unit><trans-unit id="2631340539474479416" datatype="html"> | 10863 | </trans-unit> |
10747 | <source>Subtitles</source><target state="new">Subtitles</target> | 10864 | <trans-unit id="2631340539474479416" datatype="html"> |
10865 | <source>Subtitles</source> | ||
10866 | <target state="new">Subtitles</target> | ||
10748 | <context-group purpose="location"> | 10867 | <context-group purpose="location"> |
10749 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | 10868 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> |
10750 | <context context-type="linenumber">9</context> | 10869 | <context context-type="linenumber">9</context> |
@@ -10759,24 +10878,24 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10759 | <trans-unit id="4814285799071780083" datatype="html"> | 10878 | <trans-unit id="4814285799071780083" datatype="html"> |
10760 | <source>Remove</source> | 10879 | <source>Remove</source> |
10761 | <target state="new">Remove</target> | 10880 | <target state="new">Remove</target> |
10762 | 10881 | <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> | |
10763 | <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> | 10882 | </trans-unit> |
10764 | <trans-unit id="6871668720687277843" datatype="html"> | 10883 | <trans-unit id="6871668720687277843" datatype="html"> |
10765 | <source>Remove & re-draft</source> | 10884 | <source>Remove & re-draft</source> |
10766 | <target state="new">Remove & re-draft</target> | 10885 | <target state="new">Remove & re-draft</target> |
10767 | 10886 | <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> | |
10768 | <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> | 10887 | </trans-unit> |
10769 | <trans-unit id="992317512448454409" datatype="html"> | 10888 | <trans-unit id="992317512448454409" datatype="html"> |
10770 | <source>{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</source> | 10889 | <source>{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</source> |
10771 | <target state="new">{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</target> | 10890 | <target state="new">{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</target> |
10772 | 10891 | <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> | |
10773 | <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> | 10892 | </trans-unit> |
10774 | <trans-unit id="4903651219400691248" datatype="html"> | 10893 | <trans-unit id="4903651219400691248" datatype="html"> |
10775 | <source>Mute account</source> | 10894 | <source>Mute account</source> |
10776 | <target state="new">Mute account</target> | 10895 | <target state="new">Mute account</target> |
10777 | 10896 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">304</context></context-group> | |
10778 | 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">322</context></context-group> | |
10779 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">304</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">322</context></context-group></trans-unit> | 10898 | </trans-unit> |
10780 | <trans-unit id="4021487547497211597" datatype="html"> | 10899 | <trans-unit id="4021487547497211597" datatype="html"> |
10781 | <source>Open video actions</source> | 10900 | <source>Open video actions</source> |
10782 | <target state="new">Open video actions</target> | 10901 | <target state="new">Open video actions</target> |
@@ -10792,8 +10911,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10792 | <trans-unit id="3719503424625455635" datatype="html"> | 10911 | <trans-unit id="3719503424625455635" datatype="html"> |
10793 | <source>Mute server account</source> | 10912 | <source>Mute server account</source> |
10794 | <target state="new">Mute server account</target> | 10913 | <target state="new">Mute server account</target> |
10795 | 10914 | <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> | |
10796 | <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> | 10915 | </trans-unit> |
10797 | <trans-unit id="7008439939460403347"> | 10916 | <trans-unit id="7008439939460403347"> |
10798 | <source>Report</source> | 10917 | <source>Report</source> |
10799 | <target>Nahlásit</target> | 10918 | <target>Nahlásit</target> |
@@ -10844,29 +10963,31 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10844 | <trans-unit id="4058575476871566236"> | 10963 | <trans-unit id="4058575476871566236"> |
10845 | <source>Published</source> | 10964 | <source>Published</source> |
10846 | <target>Publikováno</target> | 10965 | <target>Publikováno</target> |
10847 | 10966 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">158</context></context-group> | |
10848 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">158</context></context-group></trans-unit> | 10967 | </trans-unit> |
10849 | <trans-unit id="1747928867514972971" datatype="html"> | 10968 | <trans-unit id="1747928867514972971" datatype="html"> |
10850 | <source>Publication scheduled on</source> | 10969 | <source>Publication scheduled on</source> |
10851 | <target state="new">Publication scheduled on </target> | 10970 | <target state="new">Publication scheduled on </target> |
10852 | 10971 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">163</context></context-group> | |
10853 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 10972 | </trans-unit> |
10854 | <trans-unit id="4887724548587271148"> | 10973 | <trans-unit id="4887724548587271148"> |
10855 | <source>Waiting transcoding</source> | 10974 | <source>Waiting transcoding</source> |
10856 | <target>Čekající překódování</target> | 10975 | <target>Čekající překódování</target> |
10857 | 10976 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">167</context></context-group> | |
10858 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">167</context></context-group></trans-unit> | 10977 | </trans-unit> |
10859 | <trans-unit id="4517785179607945981"> | 10978 | <trans-unit id="4517785179607945981"> |
10860 | <source>To transcode</source> | 10979 | <source>To transcode</source> |
10861 | <target>K překódování</target> | 10980 | <target>K překódování</target> |
10862 | 10981 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">171</context></context-group> | |
10863 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit> | 10982 | </trans-unit> |
10864 | <trans-unit id="3299576663551440736"> | 10983 | <trans-unit id="3299576663551440736"> |
10865 | <source>To import</source> | 10984 | <source>To import</source> |
10866 | <target>K importování</target> | 10985 | <target>K importování</target> |
10867 | 10986 | <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> | |
10868 | <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="8492933894084361602" datatype="html"> | 10987 | </trans-unit> |
10869 | <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> | 10988 | <trans-unit id="8492933894084361602" datatype="html"> |
10989 | <source>Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</source> | ||
10990 | <target state="new">Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</target> | ||
10870 | <context-group purpose="location"> | 10991 | <context-group purpose="location"> |
10871 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context> | 10992 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context> |
10872 | <context context-type="linenumber">8</context> | 10993 | <context context-type="linenumber">8</context> |
@@ -10898,241 +11019,241 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10898 | <trans-unit id="2439066254855913806" datatype="html"> | 11019 | <trans-unit id="2439066254855913806" datatype="html"> |
10899 | <source>Only I can see this video</source> | 11020 | <source>Only I can see this video</source> |
10900 | <target state="new">Only I can see this video</target> | 11021 | <target state="new">Only I can see this video</target> |
10901 | 11022 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">325</context></context-group> | |
10902 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">325</context></context-group></trans-unit> | 11023 | </trans-unit> |
10903 | <trans-unit id="6767380569816110388" datatype="html"> | 11024 | <trans-unit id="6767380569816110388" datatype="html"> |
10904 | <source>Only shareable via a private link</source> | 11025 | <source>Only shareable via a private link</source> |
10905 | <target state="new">Only shareable via a private link</target> | 11026 | <target state="new">Only shareable via a private link</target> |
10906 | 11027 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">326</context></context-group> | |
10907 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">326</context></context-group></trans-unit> | 11028 | </trans-unit> |
10908 | <trans-unit id="6828965264297239528"> | 11029 | <trans-unit id="6828965264297239528"> |
10909 | <source>Anyone can see this video</source> | 11030 | <source>Anyone can see this video</source> |
10910 | <target>Kdokoliv může vidět toto video</target> | 11031 | <target>Kdokoliv může vidět toto video</target> |
10911 | 11032 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">327</context></context-group> | |
10912 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">327</context></context-group></trans-unit> | 11033 | </trans-unit> |
10913 | <trans-unit id="1425933035739773115" datatype="html"> | 11034 | <trans-unit id="1425933035739773115" datatype="html"> |
10914 | <source>Only users of this instance can see this video</source> | 11035 | <source>Only users of this instance can see this video</source> |
10915 | <target state="new">Only users of this instance can see this video</target> | 11036 | <target state="new">Only users of this instance can see this video</target> |
10916 | 11037 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">328</context></context-group> | |
10917 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">328</context></context-group></trans-unit> | 11038 | </trans-unit> |
10918 | <trans-unit id="8312101634344200207" datatype="html"> | 11039 | <trans-unit id="8312101634344200207" datatype="html"> |
10919 | <source><x id="PH" equiv-text="this.views"/> viewers</source> | 11040 | <source><x id="PH" equiv-text="this.views"/> viewers</source> |
10920 | <target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | 11041 | <target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> |
10921 | 11042 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">216</context></context-group> | |
10922 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">216</context></context-group></trans-unit> | 11043 | </trans-unit> |
10923 | <trans-unit id="7756087706411154095" datatype="html"> | 11044 | <trans-unit id="7756087706411154095" datatype="html"> |
10924 | <source><x id="PH" equiv-text="this.views"/> views</source> | 11045 | <source><x id="PH" equiv-text="this.views"/> views</source> |
10925 | <target state="new"><x id="PH" equiv-text="this.views"/> views</target> | 11046 | <target state="new"><x id="PH" equiv-text="this.views"/> views</target> |
10926 | 11047 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">219</context></context-group> | |
10927 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">219</context></context-group></trans-unit> | 11048 | </trans-unit> |
10928 | <trans-unit id="ngb.alert.close" datatype="html"> | 11049 | <trans-unit id="ngb.alert.close" datatype="html"> |
10929 | <source>Close</source> | 11050 | <source>Close</source> |
10930 | <target state="new">Close</target> | 11051 | <target state="new">Close</target> |
10931 | 11052 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">58</context></context-group> | |
10932 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 11053 | </trans-unit> |
10933 | <trans-unit id="ngb.carousel.slide-number" datatype="html"> | 11054 | <trans-unit id="ngb.carousel.slide-number" datatype="html"> |
10934 | <source>Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </source> | 11055 | <source>Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </source> |
10935 | <target state="new"> Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </target> | 11056 | <target state="new"> Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </target> |
10936 | <note priority="1" from="description">Currently selected slide number read by screen reader</note> | 11057 | <note priority="1" from="description">Currently selected slide number read by screen reader</note> |
10937 | 11058 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">114</context></context-group> | |
10938 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">114</context></context-group></trans-unit> | 11059 | </trans-unit> |
10939 | <trans-unit id="ngb.carousel.previous" datatype="html"> | 11060 | <trans-unit id="ngb.carousel.previous" datatype="html"> |
10940 | <source>Previous</source> | 11061 | <source>Previous</source> |
10941 | <target state="new">Previous</target> | 11062 | <target state="new">Previous</target> |
10942 | 11063 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">132</context></context-group> | |
10943 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">132</context></context-group></trans-unit> | 11064 | </trans-unit> |
10944 | <trans-unit id="ngb.carousel.next" datatype="html"> | 11065 | <trans-unit id="ngb.carousel.next" datatype="html"> |
10945 | <source>Next</source> | 11066 | <source>Next</source> |
10946 | <target state="new">Next</target> | 11067 | <target state="new">Next</target> |
10947 | 11068 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">147</context></context-group> | |
10948 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">147</context></context-group></trans-unit> | 11069 | </trans-unit> |
10949 | <trans-unit id="ngb.datepicker.previous-month" datatype="html"> | 11070 | <trans-unit id="ngb.datepicker.previous-month" datatype="html"> |
10950 | <source>Previous month</source> | 11071 | <source>Previous month</source> |
10951 | <target state="new">Previous month</target> | 11072 | <target state="new">Previous month</target> |
10952 | 11073 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">24</context></context-group> | |
10953 | 11074 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">35</context></context-group> | |
10954 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">35</context></context-group></trans-unit> | 11075 | </trans-unit> |
10955 | <trans-unit id="ngb.datepicker.next-month" datatype="html"> | 11076 | <trans-unit id="ngb.datepicker.next-month" datatype="html"> |
10956 | <source>Next month</source> | 11077 | <source>Next month</source> |
10957 | <target state="new">Next month</target> | 11078 | <target state="new">Next month</target> |
10958 | 11079 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">47</context></context-group> | |
10959 | 11080 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">60</context></context-group> | |
10960 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> | 11081 | </trans-unit> |
10961 | <trans-unit id="ngb.datepicker.select-month" datatype="html"> | 11082 | <trans-unit id="ngb.datepicker.select-month" datatype="html"> |
10962 | <source>Select month</source> | 11083 | <source>Select month</source> |
10963 | <target state="new">Select month</target> | 11084 | <target state="new">Select month</target> |
10964 | 11085 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">44</context></context-group> | |
10965 | 11086 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">49</context></context-group> | |
10966 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">49</context></context-group></trans-unit> | 11087 | </trans-unit> |
10967 | <trans-unit id="ngb.datepicker.select-year" datatype="html"> | 11088 | <trans-unit id="ngb.datepicker.select-year" datatype="html"> |
10968 | <source>Select year</source> | 11089 | <source>Select year</source> |
10969 | <target state="new">Select year</target> | 11090 | <target state="new">Select year</target> |
10970 | 11091 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">59</context></context-group> | |
10971 | 11092 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">74</context></context-group> | |
10972 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">59</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">74</context></context-group></trans-unit> | 11093 | </trans-unit> |
10973 | <trans-unit id="ngb.pagination.first" datatype="html"> | 11094 | <trans-unit id="ngb.pagination.first" datatype="html"> |
10974 | <source>««</source> | 11095 | <source>««</source> |
10975 | <target state="new">««</target> | 11096 | <target state="new">««</target> |
10976 | 11097 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">182</context></context-group> | |
10977 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> | 11098 | </trans-unit> |
10978 | <trans-unit id="ngb.pagination.previous" datatype="html"> | 11099 | <trans-unit id="ngb.pagination.previous" datatype="html"> |
10979 | <source>«</source> | 11100 | <source>«</source> |
10980 | <target state="new">«</target> | 11101 | <target state="new">«</target> |
10981 | 11102 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">186</context></context-group> | |
10982 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 11103 | </trans-unit> |
10983 | <trans-unit id="ngb.pagination.next" datatype="html"> | 11104 | <trans-unit id="ngb.pagination.next" datatype="html"> |
10984 | <source>»</source> | 11105 | <source>»</source> |
10985 | <target state="new">»</target> | 11106 | <target state="new">»</target> |
10986 | 11107 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">194</context></context-group> | |
10987 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">194</context></context-group></trans-unit> | 11108 | </trans-unit> |
10988 | <trans-unit id="ngb.pagination.last" datatype="html"> | 11109 | <trans-unit id="ngb.pagination.last" datatype="html"> |
10989 | <source>»»</source> | 11110 | <source>»»</source> |
10990 | <target state="new">»»</target> | 11111 | <target state="new">»»</target> |
10991 | 11112 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">201</context></context-group> | |
10992 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">201</context></context-group></trans-unit> | 11113 | </trans-unit> |
10993 | <trans-unit id="ngb.pagination.first-aria" datatype="html"> | 11114 | <trans-unit id="ngb.pagination.first-aria" datatype="html"> |
10994 | <source>First</source> | 11115 | <source>First</source> |
10995 | <target state="new">First</target> | 11116 | <target state="new">First</target> |
10996 | 11117 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">208</context></context-group> | |
10997 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">208</context></context-group></trans-unit> | 11118 | </trans-unit> |
10998 | <trans-unit id="ngb.pagination.previous-aria" datatype="html"> | 11119 | <trans-unit id="ngb.pagination.previous-aria" datatype="html"> |
10999 | <source>Previous</source> | 11120 | <source>Previous</source> |
11000 | <target state="new">Previous</target> | 11121 | <target state="new">Previous</target> |
11001 | 11122 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">215</context></context-group> | |
11002 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">215</context></context-group></trans-unit> | 11123 | </trans-unit> |
11003 | <trans-unit id="ngb.pagination.next-aria" datatype="html"> | 11124 | <trans-unit id="ngb.pagination.next-aria" datatype="html"> |
11004 | <source>Next</source> | 11125 | <source>Next</source> |
11005 | <target state="new">Next</target> | 11126 | <target state="new">Next</target> |
11006 | 11127 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">226</context></context-group> | |
11007 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">226</context></context-group></trans-unit> | 11128 | </trans-unit> |
11008 | <trans-unit id="ngb.pagination.last-aria" datatype="html"> | 11129 | <trans-unit id="ngb.pagination.last-aria" datatype="html"> |
11009 | <source>Last</source> | 11130 | <source>Last</source> |
11010 | <target state="new">Last</target> | 11131 | <target state="new">Last</target> |
11011 | 11132 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">232</context></context-group> | |
11012 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">232</context></context-group></trans-unit> | 11133 | </trans-unit> |
11013 | <trans-unit id="ngb.progressbar.value" datatype="html"> | 11134 | <trans-unit id="ngb.progressbar.value" datatype="html"> |
11014 | <source><x id="INTERPOLATION"/></source> | 11135 | <source><x id="INTERPOLATION"/></source> |
11015 | <target state="new"><x id="INTERPOLATION"/></target> | 11136 | <target state="new"><x id="INTERPOLATION"/></target> |
11016 | 11137 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/progressbar/progressbar.ts</context><context context-type="linenumber">32</context></context-group> | |
11017 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/progressbar/progressbar.ts</context><context context-type="linenumber">32</context></context-group></trans-unit> | 11138 | </trans-unit> |
11018 | <trans-unit id="ngb.timepicker.HH" datatype="html"> | 11139 | <trans-unit id="ngb.timepicker.HH" datatype="html"> |
11019 | <source>HH</source> | 11140 | <source>HH</source> |
11020 | <target state="new">HH</target> | 11141 | <target state="new">HH</target> |
11021 | 11142 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">40</context></context-group> | |
11022 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">40</context></context-group></trans-unit> | 11143 | </trans-unit> |
11023 | <trans-unit id="ngb.timepicker.hours" datatype="html"> | 11144 | <trans-unit id="ngb.timepicker.hours" datatype="html"> |
11024 | <source>Hours</source> | 11145 | <source>Hours</source> |
11025 | <target state="new">Hours</target> | 11146 | <target state="new">Hours</target> |
11026 | 11147 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">46</context></context-group> | |
11027 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 11148 | </trans-unit> |
11028 | <trans-unit id="ngb.timepicker.MM" datatype="html"> | 11149 | <trans-unit id="ngb.timepicker.MM" datatype="html"> |
11029 | <source>MM</source> | 11150 | <source>MM</source> |
11030 | <target state="new">MM</target> | 11151 | <target state="new">MM</target> |
11031 | 11152 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">51</context></context-group> | |
11032 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> | 11153 | </trans-unit> |
11033 | <trans-unit id="ngb.timepicker.minutes" datatype="html"> | 11154 | <trans-unit id="ngb.timepicker.minutes" datatype="html"> |
11034 | <source>Minutes</source> | 11155 | <source>Minutes</source> |
11035 | <target state="new">Minutes</target> | 11156 | <target state="new">Minutes</target> |
11036 | 11157 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">58</context></context-group> | |
11037 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 11158 | </trans-unit> |
11038 | <trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | 11159 | <trans-unit id="ngb.timepicker.increment-hours" datatype="html"> |
11039 | <source>Increment hours</source> | 11160 | <source>Increment hours</source> |
11040 | <target state="new">Increment hours</target> | 11161 | <target state="new">Increment hours</target> |
11041 | 11162 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">63</context></context-group> | |
11042 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">63</context></context-group></trans-unit> | 11163 | </trans-unit> |
11043 | <trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | 11164 | <trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> |
11044 | <source>Decrement hours</source> | 11165 | <source>Decrement hours</source> |
11045 | <target state="new">Decrement hours</target> | 11166 | <target state="new">Decrement hours</target> |
11046 | 11167 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">69</context></context-group> | |
11047 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">69</context></context-group></trans-unit> | 11168 | </trans-unit> |
11048 | <trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | 11169 | <trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> |
11049 | <source>Increment minutes</source> | 11170 | <source>Increment minutes</source> |
11050 | <target state="new">Increment minutes</target> | 11171 | <target state="new">Increment minutes</target> |
11051 | 11172 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">76</context></context-group> | |
11052 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 11173 | </trans-unit> |
11053 | <trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | 11174 | <trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> |
11054 | <source>Decrement minutes</source> | 11175 | <source>Decrement minutes</source> |
11055 | <target state="new">Decrement minutes</target> | 11176 | <target state="new">Decrement minutes</target> |
11056 | 11177 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">82</context></context-group> | |
11057 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 11178 | </trans-unit> |
11058 | <trans-unit id="ngb.timepicker.SS" datatype="html"> | 11179 | <trans-unit id="ngb.timepicker.SS" datatype="html"> |
11059 | <source>SS</source> | 11180 | <source>SS</source> |
11060 | <target state="new">SS</target> | 11181 | <target state="new">SS</target> |
11061 | 11182 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">87</context></context-group> | |
11062 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">87</context></context-group></trans-unit> | 11183 | </trans-unit> |
11063 | <trans-unit id="ngb.timepicker.seconds" datatype="html"> | 11184 | <trans-unit id="ngb.timepicker.seconds" datatype="html"> |
11064 | <source>Seconds</source> | 11185 | <source>Seconds</source> |
11065 | <target state="new">Seconds</target> | 11186 | <target state="new">Seconds</target> |
11066 | 11187 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">92</context></context-group> | |
11067 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">92</context></context-group></trans-unit> | 11188 | </trans-unit> |
11068 | <trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | 11189 | <trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> |
11069 | <source>Increment seconds</source> | 11190 | <source>Increment seconds</source> |
11070 | <target state="new">Increment seconds</target> | 11191 | <target state="new">Increment seconds</target> |
11071 | 11192 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">100</context></context-group> | |
11072 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">100</context></context-group></trans-unit> | 11193 | </trans-unit> |
11073 | <trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | 11194 | <trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> |
11074 | <source>Decrement seconds</source> | 11195 | <source>Decrement seconds</source> |
11075 | <target state="new">Decrement seconds</target> | 11196 | <target state="new">Decrement seconds</target> |
11076 | 11197 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">106</context></context-group> | |
11077 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">106</context></context-group></trans-unit> | 11198 | </trans-unit> |
11078 | <trans-unit id="ngb.timepicker.PM" datatype="html"> | 11199 | <trans-unit id="ngb.timepicker.PM" datatype="html"> |
11079 | <source><x id="INTERPOLATION"/></source> | 11200 | <source><x id="INTERPOLATION"/></source> |
11080 | <target state="new"><x id="INTERPOLATION"/></target> | 11201 | <target state="new"><x id="INTERPOLATION"/></target> |
11081 | 11202 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">123</context></context-group> | |
11082 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">123</context></context-group></trans-unit> | 11203 | </trans-unit> |
11083 | <trans-unit id="ngb.timepicker.AM" datatype="html"> | 11204 | <trans-unit id="ngb.timepicker.AM" datatype="html"> |
11084 | <source><x id="INTERPOLATION"/></source> | 11205 | <source><x id="INTERPOLATION"/></source> |
11085 | <target state="new"><x id="INTERPOLATION"/></target> | 11206 | <target state="new"><x id="INTERPOLATION"/></target> |
11086 | 11207 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">115</context></context-group> | |
11087 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">115</context></context-group></trans-unit> | 11208 | </trans-unit> |
11088 | <trans-unit id="ngb.toast.close-aria" datatype="html"> | 11209 | <trans-unit id="ngb.toast.close-aria" datatype="html"> |
11089 | <source>Close</source> | 11210 | <source>Close</source> |
11090 | <target state="new">Close</target> | 11211 | <target state="new">Close</target> |
11091 | 11212 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/toast/toast.ts</context><context context-type="linenumber">78</context></context-group> | |
11092 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/toast/toast.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 11213 | </trans-unit> |
11093 | <trans-unit id="5210096066382592800" datatype="html"> | 11214 | <trans-unit id="5210096066382592800" datatype="html"> |
11094 | <source>Video to import updated.</source> | 11215 | <source>Video to import updated.</source> |
11095 | <target state="new">Video to import updated.</target> | 11216 | <target state="new">Video to import updated.</target> |
11096 | 11217 | <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">142</context></context-group> | |
11097 | 11218 | <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">143</context></context-group> | |
11098 | <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">142</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">143</context></context-group></trans-unit> | 11219 | </trans-unit> |
11099 | <trans-unit id="3284171506518522275"> | 11220 | <trans-unit id="3284171506518522275"> |
11100 | <source>Your video was uploaded to your account and is private.</source> | 11221 | <source>Your video was uploaded to your account and is private.</source> |
11101 | <target>Vaše video bylo nahráno na váš účet a je soukromé.</target> | 11222 | <target>Vaše video bylo nahráno na váš účet a je soukromé.</target> |
11102 | 11223 | ||
11103 | <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">118</context></context-group></trans-unit> | 11224 | <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">125</context></context-group></trans-unit> |
11104 | <trans-unit id="5699822024600815733"> | 11225 | <trans-unit id="5699822024600815733"> |
11105 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 11226 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
11106 | <target>Ovšem přidružená data (štítky, popis...) budou ztraceny, opravdu chcete opustit tuto stránku?</target> | 11227 | <target>Ovšem přidružená data (štítky, popis...) budou ztraceny, opravdu chcete opustit tuto stránku?</target> |
11107 | 11228 | ||
11108 | <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">119</context></context-group></trans-unit> | 11229 | <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> |
11109 | <trans-unit id="1219739004043110649"> | 11230 | <trans-unit id="1219739004043110649"> |
11110 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 11231 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
11111 | <target>Video ještě nebylo nahráno, opravdu chcete opustit tuto stránku?</target> | 11232 | <target>Video ještě nebylo nahráno, opravdu chcete opustit tuto stránku?</target> |
11112 | 11233 | ||
11113 | <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">121</context></context-group></trans-unit> | 11234 | <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">128</context></context-group></trans-unit> |
11114 | <trans-unit id="6932865105766151309" datatype="html"> | 11235 | <trans-unit id="6932865105766151309" datatype="html"> |
11115 | <source>Upload</source> | 11236 | <source>Upload</source> |
11116 | <target state="new">Upload</target> | 11237 | <target state="new">Upload</target> |
11117 | 11238 | ||
11118 | <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">227</context></context-group></trans-unit> | 11239 | <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">234</context></context-group></trans-unit> |
11119 | <trans-unit id="8278735427925094503" datatype="html"> | 11240 | <trans-unit id="8278735427925094503" datatype="html"> |
11120 | <source>Upload <x id="PH"/> </source> | 11241 | <source>Upload <x id="PH"/> </source> |
11121 | <target state="new">Upload | 11242 | <target state="new">Upload |
11122 | <x id="PH"/> | 11243 | <x id="PH"/> |
11123 | </target> | 11244 | </target> |
11124 | 11245 | ||
11125 | <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">229</context></context-group></trans-unit> | 11246 | <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">236</context></context-group></trans-unit> |
11126 | <trans-unit id="5981816353437801748"> | 11247 | <trans-unit id="5981816353437801748"> |
11127 | <source>Video published.</source> | 11248 | <source>Video published.</source> |
11128 | <target>Video publikováno</target> | 11249 | <target>Video publikováno</target> |
11129 | 11250 | ||
11130 | <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">251</context></context-group></trans-unit> | 11251 | <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">258</context></context-group></trans-unit> |
11131 | <trans-unit id="764164089183618119"> | 11252 | <trans-unit id="764164089183618119"> |
11132 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 11253 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
11133 | <target>Máte neuložené změny! Pokud odejdete, budou vaše změny ztraceny.</target> | 11254 | <target>Máte neuložené změny! Pokud odejdete, budou vaše změny ztraceny.</target> |
11134 | 11255 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">94</context></context-group> | |
11135 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit> | 11256 | </trans-unit> |
11136 | <trans-unit id="8306050839443016954"> | 11257 | <trans-unit id="8306050839443016954"> |
11137 | <source>Video updated.</source> | 11258 | <source>Video updated.</source> |
11138 | <target>Video aktualizováno.</target> | 11259 | <target>Video aktualizováno.</target> |
@@ -11146,43 +11267,43 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11146 | <trans-unit id="3691787517663044217" datatype="html"> | 11267 | <trans-unit id="3691787517663044217" datatype="html"> |
11147 | <source>The deletion will be sent to remote instances so they can reflect the change.</source> | 11268 | <source>The deletion will be sent to remote instances so they can reflect the change.</source> |
11148 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 11269 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
11149 | 11270 | <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> | |
11150 | <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> | 11271 | </trans-unit> |
11151 | <trans-unit id="7321800851971795962" datatype="html"> | 11272 | <trans-unit id="7321800851971795962" datatype="html"> |
11152 | <source>It is a remote comment, so the deletion will only be effective on your instance.</source> | 11273 | <source>It is a remote comment, so the deletion will only be effective on your instance.</source> |
11153 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 11274 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> |
11154 | 11275 | <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> | |
11155 | <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> | 11276 | </trans-unit> |
11156 | <trans-unit id="5964038603724691720" datatype="html"> | 11277 | <trans-unit id="5964038603724691720" datatype="html"> |
11157 | <source>Delete and re-draft</source> | 11278 | <source>Delete and re-draft</source> |
11158 | <target state="new">Delete and re-draft</target> | 11279 | <target state="new">Delete and re-draft</target> |
11159 | 11280 | <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> | |
11160 | <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> | 11281 | </trans-unit> |
11161 | <trans-unit id="7163633882758007711" datatype="html"> | 11282 | <trans-unit id="7163633882758007711" datatype="html"> |
11162 | <source>Do you really want to delete and re-draft this comment?</source> | 11283 | <source>Do you really want to delete and re-draft this comment?</source> |
11163 | <target state="new">Do you really want to delete and re-draft this comment?</target> | 11284 | <target state="new">Do you really want to delete and re-draft this comment?</target> |
11164 | 11285 | <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> | |
11165 | <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> | 11286 | </trans-unit> |
11166 | <trans-unit id="6775540171466219199" datatype="html"> | 11287 | <trans-unit id="6775540171466219199" datatype="html"> |
11167 | <source>Stop autoplaying next video</source> | 11288 | <source>Stop autoplaying next video</source> |
11168 | <target state="new">Stop autoplaying next video</target> | 11289 | <target state="new">Stop autoplaying next video</target> |
11169 | 11290 | <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">221</context></context-group> | |
11170 | <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">221</context></context-group></trans-unit> | 11291 | </trans-unit> |
11171 | <trans-unit id="5149234672404299151" datatype="html"> | 11292 | <trans-unit id="5149234672404299151" datatype="html"> |
11172 | <source>Autoplay next video</source> | 11293 | <source>Autoplay next video</source> |
11173 | <target state="new">Autoplay next video</target> | 11294 | <target state="new">Autoplay next video</target> |
11174 | 11295 | <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">222</context></context-group> | |
11175 | <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">222</context></context-group></trans-unit> | 11296 | </trans-unit> |
11176 | <trans-unit id="5870421136141540382" datatype="html"> | 11297 | <trans-unit id="5870421136141540382" datatype="html"> |
11177 | <source>Stop looping playlist videos</source> | 11298 | <source>Stop looping playlist videos</source> |
11178 | <target state="new">Stop looping playlist videos</target> | 11299 | <target state="new">Stop looping playlist videos</target> |
11179 | 11300 | <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">227</context></context-group> | |
11180 | <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">227</context></context-group></trans-unit> | 11301 | </trans-unit> |
11181 | <trans-unit id="1599585307037758139" datatype="html"> | 11302 | <trans-unit id="1599585307037758139" datatype="html"> |
11182 | <source>Loop playlist videos</source> | 11303 | <source>Loop playlist videos</source> |
11183 | <target state="new">Loop playlist videos</target> | 11304 | <target state="new">Loop playlist videos</target> |
11184 | 11305 | <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">228</context></context-group> | |
11185 | <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">228</context></context-group></trans-unit> | 11306 | </trans-unit> |
11186 | <trans-unit id="3704292036525161260" datatype="html"> | 11307 | <trans-unit id="3704292036525161260" datatype="html"> |
11187 | <source>Placeholder image</source> | 11308 | <source>Placeholder image</source> |
11188 | <target state="new">Placeholder image</target> | 11309 | <target state="new">Placeholder image</target> |
@@ -11194,28 +11315,28 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11194 | <trans-unit id="961774488937452220" datatype="html"> | 11315 | <trans-unit id="961774488937452220" datatype="html"> |
11195 | <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> | 11316 | <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> |
11196 | <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> | 11317 | <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> |
11197 | 11318 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">296</context></context-group> | |
11198 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">296</context></context-group></trans-unit> | 11319 | </trans-unit> |
11199 | <trans-unit id="5761611056224181752" datatype="html"> | 11320 | <trans-unit id="5761611056224181752" datatype="html"> |
11200 | <source>Redirection</source> | 11321 | <source>Redirection</source> |
11201 | <target state="new">Redirection</target> | 11322 | <target state="new">Redirection</target> |
11202 | 11323 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">297</context></context-group> | |
11203 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">297</context></context-group></trans-unit> | 11324 | </trans-unit> |
11204 | <trans-unit id="8858527736400081688"> | 11325 | <trans-unit id="8858527736400081688"> |
11205 | <source>This video contains mature or explicit content. Are you sure you want to watch it?</source> | 11326 | <source>This video contains mature or explicit content. Are you sure you want to watch it?</source> |
11206 | <target>Toto video obsahuje citlivý materiál. Opravdu jej chcete přehrát?</target> | 11327 | <target>Toto video obsahuje citlivý materiál. Opravdu jej chcete přehrát?</target> |
11207 | 11328 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">343</context></context-group> | |
11208 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">343</context></context-group></trans-unit> | 11329 | </trans-unit> |
11209 | <trans-unit id="3937119019020041049"> | 11330 | <trans-unit id="3937119019020041049"> |
11210 | <source>Mature or explicit content</source> | 11331 | <source>Mature or explicit content</source> |
11211 | <target>Obsahuje citlivý materiál</target> | 11332 | <target>Obsahuje citlivý materiál</target> |
11212 | 11333 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">344</context></context-group> | |
11213 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 11334 | </trans-unit> |
11214 | <trans-unit id="1755474755114288376" datatype="html"> | 11335 | <trans-unit id="1755474755114288376" datatype="html"> |
11215 | <source>Up Next</source> | 11336 | <source>Up Next</source> |
11216 | <target state="new">Up Next</target> | 11337 | <target state="new">Up Next</target> |
11217 | 11338 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">415</context></context-group> | |
11218 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">415</context></context-group></trans-unit> | 11339 | </trans-unit> |
11219 | <trans-unit id="2159130950882492111" datatype="html"> | 11340 | <trans-unit id="2159130950882492111" datatype="html"> |
11220 | <source>Cancel</source> | 11341 | <source>Cancel</source> |
11221 | <target state="new">Cancel</target> | 11342 | <target state="new">Cancel</target> |
@@ -11224,91 +11345,89 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11224 | <trans-unit id="3354816756665089864" datatype="html"> | 11345 | <trans-unit id="3354816756665089864" datatype="html"> |
11225 | <source>Autoplay is suspended</source> | 11346 | <source>Autoplay is suspended</source> |
11226 | <target state="new">Autoplay is suspended</target> | 11347 | <target state="new">Autoplay is suspended</target> |
11227 | 11348 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">417</context></context-group> | |
11228 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">417</context></context-group></trans-unit> | 11349 | </trans-unit> |
11229 | <trans-unit id="7895294730547405228" datatype="html"> | 11350 | <trans-unit id="7895294730547405228" datatype="html"> |
11230 | <source>Enter/exit fullscreen (requires player focus)</source> | 11351 | <source>Enter/exit fullscreen (requires player focus)</source> |
11231 | <target state="new">Enter/exit fullscreen (requires player focus)</target> | 11352 | <target state="new">Enter/exit fullscreen (requires player focus)</target> |
11232 | 11353 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">688</context></context-group> | |
11233 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">688</context></context-group></trans-unit> | 11354 | </trans-unit> |
11234 | <trans-unit id="7618388257165864759" datatype="html"> | 11355 | <trans-unit id="7618388257165864759" datatype="html"> |
11235 | <source>Play/Pause the video (requires player focus)</source> | 11356 | <source>Play/Pause the video (requires player focus)</source> |
11236 | <target state="new">Play/Pause the video (requires player focus)</target> | 11357 | <target state="new">Play/Pause the video (requires player focus)</target> |
11237 | 11358 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">689</context></context-group> | |
11238 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">689</context></context-group></trans-unit> | 11359 | </trans-unit> |
11239 | <trans-unit id="7761890399634216630" datatype="html"> | 11360 | <trans-unit id="7761890399634216630" datatype="html"> |
11240 | <source>Mute/unmute the video (requires player focus)</source> | 11361 | <source>Mute/unmute the video (requires player focus)</source> |
11241 | <target state="new">Mute/unmute the video (requires player focus)</target> | 11362 | <target state="new">Mute/unmute the video (requires player focus)</target> |
11242 | 11363 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">690</context></context-group> | |
11243 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">690</context></context-group></trans-unit> | 11364 | </trans-unit> |
11244 | <trans-unit id="5996585232248234904" datatype="html"> | 11365 | <trans-unit id="5996585232248234904" datatype="html"> |
11245 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</source> | 11366 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</source> |
11246 | <target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</target> | 11367 | <target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</target> |
11247 | 11368 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">692</context></context-group> | |
11248 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">692</context></context-group></trans-unit> | 11369 | </trans-unit> |
11249 | <trans-unit id="3748765405903319998" datatype="html"> | 11370 | <trans-unit id="3748765405903319998" datatype="html"> |
11250 | <source>Increase the volume (requires player focus)</source> | 11371 | <source>Increase the volume (requires player focus)</source> |
11251 | <target state="new">Increase the volume (requires player focus)</target> | 11372 | <target state="new">Increase the volume (requires player focus)</target> |
11252 | 11373 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">694</context></context-group> | |
11253 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">694</context></context-group></trans-unit> | 11374 | </trans-unit> |
11254 | <trans-unit id="5810704036407159982" datatype="html"> | 11375 | <trans-unit id="5810704036407159982" datatype="html"> |
11255 | <source>Decrease the volume (requires player focus)</source> | 11376 | <source>Decrease the volume (requires player focus)</source> |
11256 | <target state="new">Decrease the volume (requires player focus)</target> | 11377 | <target state="new">Decrease the volume (requires player focus)</target> |
11257 | 11378 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">695</context></context-group> | |
11258 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">695</context></context-group></trans-unit> | 11379 | </trans-unit> |
11259 | <trans-unit id="2622048822548065691" datatype="html"> | 11380 | <trans-unit id="2622048822548065691" datatype="html"> |
11260 | <source>Seek the video forward (requires player focus)</source> | 11381 | <source>Seek the video forward (requires player focus)</source> |
11261 | <target state="new">Seek the video forward (requires player focus)</target> | 11382 | <target state="new">Seek the video forward (requires player focus)</target> |
11262 | 11383 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">697</context></context-group> | |
11263 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">697</context></context-group></trans-unit> | 11384 | </trans-unit> |
11264 | <trans-unit id="6540078205109221153" datatype="html"> | 11385 | <trans-unit id="6540078205109221153" datatype="html"> |
11265 | <source>Seek the video backward (requires player focus)</source> | 11386 | <source>Seek the video backward (requires player focus)</source> |
11266 | <target state="new">Seek the video backward (requires player focus)</target> | 11387 | <target state="new">Seek the video backward (requires player focus)</target> |
11267 | 11388 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">698</context></context-group> | |
11268 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">698</context></context-group></trans-unit> | 11389 | </trans-unit> |
11269 | <trans-unit id="1956491957766210808" datatype="html"> | 11390 | <trans-unit id="1956491957766210808" datatype="html"> |
11270 | <source>Increase playback rate (requires player focus)</source> | 11391 | <source>Increase playback rate (requires player focus)</source> |
11271 | <target state="new">Increase playback rate (requires player focus)</target> | 11392 | <target state="new">Increase playback rate (requires player focus)</target> |
11272 | 11393 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">700</context></context-group> | |
11273 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">700</context></context-group></trans-unit> | 11394 | </trans-unit> |
11274 | <trans-unit id="5495529997674803186" datatype="html"> | 11395 | <trans-unit id="5495529997674803186" datatype="html"> |
11275 | <source>Decrease playback rate (requires player focus)</source> | 11396 | <source>Decrease playback rate (requires player focus)</source> |
11276 | <target state="new">Decrease playback rate (requires player focus)</target> | 11397 | <target state="new">Decrease playback rate (requires player focus)</target> |
11277 | 11398 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">701</context></context-group> | |
11278 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">701</context></context-group></trans-unit> | 11399 | </trans-unit> |
11279 | <trans-unit id="3178343147230721210" datatype="html"> | 11400 | <trans-unit id="3178343147230721210" datatype="html"> |
11280 | <source>Navigate in the video frame by frame (requires player focus)</source> | 11401 | <source>Navigate in the video frame by frame (requires player focus)</source> |
11281 | <target state="new">Navigate in the video frame by frame (requires player focus)</target> | 11402 | <target state="new">Navigate in the video frame by frame (requires player focus)</target> |
11282 | 11403 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">703</context></context-group> | |
11283 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">703</context></context-group></trans-unit> | 11404 | </trans-unit> |
11284 | <trans-unit id="8025996572234182184"> | 11405 | <trans-unit id="8025996572234182184"> |
11285 | <source>Like the video</source> | 11406 | <source>Like the video</source> |
11286 | <target>To se mi líbí</target> | 11407 | <target>To se mi líbí</target> |
11287 | 11408 | <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> | |
11288 | <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> | 11409 | </trans-unit> |
11289 | <trans-unit id="7692127636377222448"> | 11410 | <trans-unit id="7692127636377222448"> |
11290 | <source>Dislike the video</source> | 11411 | <source>Dislike the video</source> |
11291 | <target>To se mi nelíbí</target> | 11412 | <target>To se mi nelíbí</target> |
11292 | 11413 | <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> | |
11293 | <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> | 11414 | </trans-unit> |
11294 | <trans-unit id="1729036051846673606" datatype="html"> | 11415 | <trans-unit id="1729036051846673606" datatype="html"> |
11295 | <source>When active, the next video is automatically played after the current one.</source> | 11416 | <source>When active, the next video is automatically played after the current one.</source> |
11296 | <target state="new">When active, the next video is automatically played after the current one.</target> | 11417 | <target state="new">When active, the next video is automatically played after the current one.</target> |
11297 | 11418 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts</context><context context-type="linenumber">61</context></context-group> | |
11298 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> | 11419 | </trans-unit> |
11299 | <trans-unit id="2431286785954354122" datatype="html"> | 11420 | <trans-unit id="2431286785954354122" datatype="html"> |
11300 | <source>Recently added</source> | 11421 | <source>Recently added</source> |
11301 | <target state="new">Recently added</target> | 11422 | <target state="new">Recently added</target> |
11302 | 11423 | <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> | |
11303 | 11424 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">137</context></context-group> | |
11304 | <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> | 11425 | </trans-unit> |
11305 | <trans-unit id="12646164819555880"> | 11426 | <trans-unit id="12646164819555880"> |
11306 | <source>Videos from your subscriptions</source> | 11427 | <source>Videos from your subscriptions</source> |
11307 | <target>Videa od vašich odběrů</target> | 11428 | <target>Videa od vašich odběrů</target> |
11308 | 11429 | <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> | |
11309 | <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> | 11430 | </trans-unit> |
11310 | |||
11311 | |||
11312 | <trans-unit id="1812379335568847528" datatype="html"> | 11431 | <trans-unit id="1812379335568847528" datatype="html"> |
11313 | <source>Subscriptions</source> | 11432 | <source>Subscriptions</source> |
11314 | <target state="new">Subscriptions</target> | 11433 | <target state="new">Subscriptions</target> |
@@ -11332,12 +11451,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11332 | <trans-unit id="8681933925782924101" datatype="html"> | 11451 | <trans-unit id="8681933925782924101" datatype="html"> |
11333 | <source>Local videos</source> | 11452 | <source>Local videos</source> |
11334 | <target state="new">Local videos</target> | 11453 | <target state="new">Local videos</target> |
11335 | 11454 | <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> | |
11336 | 11455 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">142</context></context-group> | |
11337 | 11456 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">143</context></context-group> | |
11338 | 11457 | </trans-unit> | |
11339 | <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="3037358578603095196" datatype="html"> | 11458 | <trans-unit id="3037358578603095196" datatype="html"> |
11340 | <source>Only videos uploaded on this instance are displayed</source><target state="new">Only videos uploaded on this instance are displayed</target> | 11459 | <source>Only videos uploaded on this instance are displayed</source> |
11460 | <target state="new">Only videos uploaded on this instance are displayed</target> | ||
11341 | <context-group purpose="location"> | 11461 | <context-group purpose="location"> |
11342 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> | 11462 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> |
11343 | <context context-type="linenumber">190</context> | 11463 | <context context-type="linenumber">190</context> |
@@ -11346,21 +11466,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11346 | <trans-unit id="4668975178372693951" datatype="html"> | 11466 | <trans-unit id="4668975178372693951" datatype="html"> |
11347 | <source>Discover videos</source> | 11467 | <source>Discover videos</source> |
11348 | <target state="new">Discover videos</target> | 11468 | <target state="new">Discover videos</target> |
11349 | 11469 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">19</context></context-group> | |
11350 | 11470 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">124</context></context-group> | |
11351 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">19</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> | 11471 | </trans-unit> |
11352 | <trans-unit id="8067135025051844577" datatype="html"> | 11472 | <trans-unit id="8067135025051844577" datatype="html"> |
11353 | <source>Trending videos</source> | 11473 | <source>Trending videos</source> |
11354 | <target state="new">Trending videos</target> | 11474 | <target state="new">Trending videos</target> |
11355 | 11475 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">130</context></context-group> | |
11356 | 11476 | </trans-unit> | |
11357 | <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> | ||
11358 | <trans-unit id="664221386829541948" datatype="html"> | 11477 | <trans-unit id="664221386829541948" datatype="html"> |
11359 | <source>Recently added videos</source> | 11478 | <source>Recently added videos</source> |
11360 | <target state="new">Recently added videos</target> | 11479 | <target state="new">Recently added videos</target> |
11361 | 11480 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">136</context></context-group> | |
11362 | 11481 | </trans-unit> | |
11363 | <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> | ||
11364 | <trans-unit id="8212906256415538361" datatype="html"> | 11482 | <trans-unit id="8212906256415538361" datatype="html"> |
11365 | <source>Upload a video</source> | 11483 | <source>Upload a video</source> |
11366 | <target state="new">Upload a video</target> | 11484 | <target state="new">Upload a video</target> |
diff --git a/client/src/locale/angular.da-DK.xlf b/client/src/locale/angular.da-DK.xlf index 842a5aa42..e3a87a7cc 100644 --- a/client/src/locale/angular.da-DK.xlf +++ b/client/src/locale/angular.da-DK.xlf | |||
@@ -291,7 +291,7 @@ | |||
291 | <target state="new">video</target> | 291 | <target state="new">video</target> |
292 | 292 | ||
293 | 293 | ||
294 | <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">294</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> | 294 | <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">301</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> |
295 | <trans-unit id="6438815964972582865" datatype="html"> | 295 | <trans-unit id="6438815964972582865" datatype="html"> |
296 | <source>The following link contains a private token and should not be shared with anyone.</source> | 296 | <source>The following link contains a private token and should not be shared with anyone.</source> |
297 | <target state="new"> The following link contains a private token and should not be shared with anyone. </target> | 297 | <target state="new"> The following link contains a private token and should not be shared with anyone. </target> |
@@ -362,12 +362,12 @@ | |||
362 | <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> | 362 | <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> |
363 | <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> | 363 | <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> |
364 | 364 | ||
365 | <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">330</context></context-group></trans-unit> | 365 | <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">337</context></context-group></trans-unit> |
366 | <trans-unit id="7873395933409147217" datatype="html"> | 366 | <trans-unit id="7873395933409147217" datatype="html"> |
367 | <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> | 367 | <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> |
368 | <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> | 368 | <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> |
369 | 369 | ||
370 | <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">349</context></context-group></trans-unit> | 370 | <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">356</context></context-group></trans-unit> |
371 | <trans-unit id="5235042777215655908" datatype="html"> | 371 | <trans-unit id="5235042777215655908" datatype="html"> |
372 | <source>subtitles</source> | 372 | <source>subtitles</source> |
373 | <target state="translated">undertekster</target> | 373 | <target state="translated">undertekster</target> |
@@ -378,7 +378,7 @@ | |||
378 | <target state="translated">Annuller</target> | 378 | <target state="translated">Annuller</target> |
379 | 379 | ||
380 | 380 | ||
381 | <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">48</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> | 381 | <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">48</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">23</context></context-group></trans-unit> |
382 | <trans-unit id="3099741642167775297" datatype="html"> | 382 | <trans-unit id="3099741642167775297" datatype="html"> |
383 | <source>Download</source> | 383 | <source>Download</source> |
384 | <target state="new">Download</target> | 384 | <target state="new">Download</target> |
@@ -2636,7 +2636,7 @@ The link will expire within 1 hour.</target> | |||
2636 | <source>Upload on hold</source> | 2636 | <source>Upload on hold</source> |
2637 | <target state="new">Upload on hold</target> | 2637 | <target state="new">Upload on hold</target> |
2638 | 2638 | ||
2639 | <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">167</context></context-group></trans-unit> | 2639 | <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">174</context></context-group></trans-unit> |
2640 | <trans-unit id="285180972645018518" datatype="html"> | 2640 | <trans-unit id="285180972645018518" datatype="html"> |
2641 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2641 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2642 | <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> | 2642 | <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> |
@@ -11168,34 +11168,34 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11168 | <source>Your video was uploaded to your account and is private.</source> | 11168 | <source>Your video was uploaded to your account and is private.</source> |
11169 | <target>Din video blev uploadet til din konto og er privat.</target> | 11169 | <target>Din video blev uploadet til din konto og er privat.</target> |
11170 | 11170 | ||
11171 | <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">118</context></context-group></trans-unit> | 11171 | <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">125</context></context-group></trans-unit> |
11172 | <trans-unit id="5699822024600815733" datatype="html"> | 11172 | <trans-unit id="5699822024600815733" datatype="html"> |
11173 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 11173 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
11174 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> | 11174 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> |
11175 | 11175 | ||
11176 | <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">119</context></context-group></trans-unit> | 11176 | <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> |
11177 | <trans-unit id="1219739004043110649"> | 11177 | <trans-unit id="1219739004043110649"> |
11178 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 11178 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
11179 | <target>Din video er ikke uploadet endnu, er du sikker på, at du vil forlade denne side?</target> | 11179 | <target>Din video er ikke uploadet endnu, er du sikker på, at du vil forlade denne side?</target> |
11180 | 11180 | ||
11181 | <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">121</context></context-group></trans-unit> | 11181 | <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">128</context></context-group></trans-unit> |
11182 | <trans-unit id="6932865105766151309" datatype="html"> | 11182 | <trans-unit id="6932865105766151309" datatype="html"> |
11183 | <source>Upload</source> | 11183 | <source>Upload</source> |
11184 | <target state="new">Upload</target> | 11184 | <target state="new">Upload</target> |
11185 | 11185 | ||
11186 | <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">227</context></context-group></trans-unit> | 11186 | <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">234</context></context-group></trans-unit> |
11187 | <trans-unit id="8278735427925094503" datatype="html"> | 11187 | <trans-unit id="8278735427925094503" datatype="html"> |
11188 | <source>Upload <x id="PH"/> </source> | 11188 | <source>Upload <x id="PH"/> </source> |
11189 | <target state="new">Upload | 11189 | <target state="new">Upload |
11190 | <x id="PH"/> | 11190 | <x id="PH"/> |
11191 | </target> | 11191 | </target> |
11192 | 11192 | ||
11193 | <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">229</context></context-group></trans-unit> | 11193 | <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">236</context></context-group></trans-unit> |
11194 | <trans-unit id="5981816353437801748"> | 11194 | <trans-unit id="5981816353437801748"> |
11195 | <source>Video published.</source> | 11195 | <source>Video published.</source> |
11196 | <target>Video offentliggjort.</target> | 11196 | <target>Video offentliggjort.</target> |
11197 | 11197 | ||
11198 | <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">251</context></context-group></trans-unit> | 11198 | <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">258</context></context-group></trans-unit> |
11199 | <trans-unit id="764164089183618119" datatype="html"> | 11199 | <trans-unit id="764164089183618119" datatype="html"> |
11200 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 11200 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
11201 | <target state="new">You have unsaved changes! If you leave, your changes will be lost.</target> | 11201 | <target state="new">You have unsaved changes! If you leave, your changes will be lost.</target> |
diff --git a/client/src/locale/angular.de-DE.xlf b/client/src/locale/angular.de-DE.xlf index ba6704981..34ae38635 100644 --- a/client/src/locale/angular.de-DE.xlf +++ b/client/src/locale/angular.de-DE.xlf | |||
@@ -255,9 +255,9 @@ | |||
255 | <trans-unit id="1006562256968398209" datatype="html"> | 255 | <trans-unit id="1006562256968398209" datatype="html"> |
256 | <source>video</source> | 256 | <source>video</source> |
257 | <target state="translated">Video</target> | 257 | <target state="translated">Video</target> |
258 | <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">294</context></context-group> | 258 | |
259 | <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> | 259 | |
260 | </trans-unit> | 260 | <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">301</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> |
261 | <trans-unit id="6438815964972582865" datatype="html"> | 261 | <trans-unit id="6438815964972582865" datatype="html"> |
262 | <source>The following link contains a private token and should not be shared with anyone.</source> | 262 | <source>The following link contains a private token and should not be shared with anyone.</source> |
263 | <target state="translated">Der folgende Link enthält ein privates Token und sollte nicht an Dritte weitergegeben werden.</target> | 263 | <target state="translated">Der folgende Link enthält ein privates Token und sollte nicht an Dritte weitergegeben werden.</target> |
@@ -329,13 +329,13 @@ | |||
329 | <trans-unit id="6995024616159044376" datatype="html"> | 329 | <trans-unit id="6995024616159044376" datatype="html"> |
330 | <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> | 330 | <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> |
331 | <target state="translated">Ihr Videokontingent ist mit diesem Video überschritten (Videogröße: <x id="PH" equiv-text="videoSizeBytes"/>, verwendet: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, Kontingent: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> | 331 | <target state="translated">Ihr Videokontingent ist mit diesem Video überschritten (Videogröße: <x id="PH" equiv-text="videoSizeBytes"/>, verwendet: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, Kontingent: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> |
332 | <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">330</context></context-group> | 332 | |
333 | </trans-unit> | 333 | <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">337</context></context-group></trans-unit> |
334 | <trans-unit id="7873395933409147217" datatype="html"> | 334 | <trans-unit id="7873395933409147217" datatype="html"> |
335 | <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> | 335 | <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> |
336 | <target state="translated">Ihr tägliches Videokontingent wurde mit diesem Video überschritten (Videogröße: <x id="PH" equiv-text="videoSizeBytes"/>, verwendet: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, Kontingent: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> | 336 | <target state="translated">Ihr tägliches Videokontingent wurde mit diesem Video überschritten (Videogröße: <x id="PH" equiv-text="videoSizeBytes"/>, verwendet: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, Kontingent: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> |
337 | <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">349</context></context-group> | 337 | |
338 | </trans-unit> | 338 | <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">356</context></context-group></trans-unit> |
339 | <trans-unit id="5235042777215655908" datatype="html"> | 339 | <trans-unit id="5235042777215655908" datatype="html"> |
340 | <source>subtitles</source> | 340 | <source>subtitles</source> |
341 | <target state="translated">Untertitel</target> | 341 | <target state="translated">Untertitel</target> |
@@ -346,9 +346,9 @@ | |||
346 | <target> | 346 | <target> |
347 | Abbrechen | 347 | Abbrechen |
348 | </target> | 348 | </target> |
349 | <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">48</context></context-group> | 349 | |
350 | <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> | 350 | |
351 | </trans-unit> | 351 | <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">48</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">23</context></context-group></trans-unit> |
352 | <trans-unit id="3099741642167775297"> | 352 | <trans-unit id="3099741642167775297"> |
353 | <source>Download</source> | 353 | <source>Download</source> |
354 | <target>Herunterladen</target> | 354 | <target>Herunterladen</target> |
@@ -914,10 +914,10 @@ | |||
914 | <trans-unit id="2392488717875840729" datatype="html"> | 914 | <trans-unit id="2392488717875840729" datatype="html"> |
915 | <source>User</source> | 915 | <source>User</source> |
916 | <target state="translated">Benutzer</target> | 916 | <target state="translated">Benutzer</target> |
917 | 917 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group> | |
918 | 918 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">27</context></context-group> | |
919 | 919 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group> | |
920 | <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">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group></trans-unit> | 920 | </trans-unit> |
921 | <trans-unit id="4209525355702493436"> | 921 | <trans-unit id="4209525355702493436"> |
922 | <source>Ban</source> | 922 | <source>Ban</source> |
923 | <target>Sperren</target> | 923 | <target>Sperren</target> |
@@ -2034,14 +2034,14 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
2034 | <trans-unit id="6179532215548637839" datatype="html"> | 2034 | <trans-unit id="6179532215548637839" datatype="html"> |
2035 | <source>extensions</source> | 2035 | <source>extensions</source> |
2036 | <target state="translated">Erweiterungen</target> | 2036 | <target state="translated">Erweiterungen</target> |
2037 | 2037 | <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> | |
2038 | <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> | 2038 | </trans-unit> |
2039 | <trans-unit id="8054921481196967348" datatype="html"> | 2039 | <trans-unit id="8054921481196967348" datatype="html"> |
2040 | <source>This image is too large.</source> | 2040 | <source>This image is too large.</source> |
2041 | <target state="translated">Dieses Bild ist zu groß.</target> | 2041 | <target state="translated">Dieses Bild ist zu groß.</target> |
2042 | 2042 | <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> | |
2043 | 2043 | <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> | |
2044 | <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> | 2044 | </trans-unit> |
2045 | <trans-unit id="6259523075362402245" datatype="html"> | 2045 | <trans-unit id="6259523075362402245" datatype="html"> |
2046 | <source>Upload a new banner</source> | 2046 | <source>Upload a new banner</source> |
2047 | <target state="translated">Neues Banner hochladen</target> | 2047 | <target state="translated">Neues Banner hochladen</target> |
@@ -2066,13 +2066,13 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
2066 | <trans-unit id="3220184757632006830" datatype="html"> | 2066 | <trans-unit id="3220184757632006830" datatype="html"> |
2067 | <source>Account avatar</source> | 2067 | <source>Account avatar</source> |
2068 | <target state="translated">Konto-Avatar</target> | 2068 | <target state="translated">Konto-Avatar</target> |
2069 | 2069 | <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> | |
2070 | <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> | 2070 | </trans-unit> |
2071 | <trans-unit id="1138964882426023395" datatype="html"> | 2071 | <trans-unit id="1138964882426023395" datatype="html"> |
2072 | <source>Channel avatar</source> | 2072 | <source>Channel avatar</source> |
2073 | <target state="translated">Kanal-Avatar</target> | 2073 | <target state="translated">Kanal-Avatar</target> |
2074 | 2074 | <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> | |
2075 | <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> | 2075 | </trans-unit> |
2076 | <trans-unit id="1358902062258458923" datatype="html"> | 2076 | <trans-unit id="1358902062258458923" datatype="html"> |
2077 | <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> | 2077 | <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> |
2078 | <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-compatible<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> das auch <x id="START_LINK_1" equiv-text="<a href="https://docs. joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>angepasste PeerTube HTML-Tags<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> unterstützt</target> | 2078 | <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-compatible<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> das auch <x id="START_LINK_1" equiv-text="<a href="https://docs. joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>angepasste PeerTube HTML-Tags<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> unterstützt</target> |
@@ -2521,8 +2521,8 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
2521 | <trans-unit id="6161604372916832458" datatype="html"> | 2521 | <trans-unit id="6161604372916832458" datatype="html"> |
2522 | <source>Upload on hold</source> | 2522 | <source>Upload on hold</source> |
2523 | <target state="translated">Upload angehalten</target> | 2523 | <target state="translated">Upload angehalten</target> |
2524 | <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">167</context></context-group> | 2524 | |
2525 | </trans-unit> | 2525 | <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">174</context></context-group></trans-unit> |
2526 | <trans-unit id="285180972645018518" datatype="html"> | 2526 | <trans-unit id="285180972645018518" datatype="html"> |
2527 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2527 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2528 | <target state="translated">Entschuldigung, Ihr Account kann keine Videos hochladen. Wenn Sie Videos hochladen möchten, muss ein Administrator Ihr Videokontingent freischalten.</target> | 2528 | <target state="translated">Entschuldigung, Ihr Account kann keine Videos hochladen. Wenn Sie Videos hochladen möchten, muss ein Administrator Ihr Videokontingent freischalten.</target> |
@@ -3313,9 +3313,8 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
3313 | <trans-unit id="9160510009013134726" datatype="html"> | 3313 | <trans-unit id="9160510009013134726" datatype="html"> |
3314 | <source>Unfollow</source> | 3314 | <source>Unfollow</source> |
3315 | <target state="translated">Nichtmehr folgen</target> | 3315 | <target state="translated">Nichtmehr folgen</target> |
3316 | 3316 | <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> | |
3317 | 3317 | </trans-unit> | |
3318 | <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> | ||
3319 | <trans-unit id="8246779176913476983" datatype="html"> | 3318 | <trans-unit id="8246779176913476983" datatype="html"> |
3320 | <source>Open instance in a new tab</source> | 3319 | <source>Open instance in a new tab</source> |
3321 | <target state="translated">Öffne die Instanz in einem neuen Tab</target> | 3320 | <target state="translated">Öffne die Instanz in einem neuen Tab</target> |
@@ -4060,7 +4059,7 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
4060 | </trans-unit> | 4059 | </trans-unit> |
4061 | <trans-unit id="8630916846096019339" datatype="html"> | 4060 | <trans-unit id="8630916846096019339" datatype="html"> |
4062 | <source>Users can resolve distant content</source> | 4061 | <source>Users can resolve distant content</source> |
4063 | <target state="translated">Nutzer können entfernten Inhalt lösen</target> | 4062 | <target state="translated">Nutzer können Inhalte von abonnierten Instanzen suchen</target> |
4064 | <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> | 4063 | <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> |
4065 | </trans-unit> | 4064 | </trans-unit> |
4066 | <trans-unit id="5410940035535748578" datatype="html"> | 4065 | <trans-unit id="5410940035535748578" datatype="html"> |
@@ -4848,8 +4847,8 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
4848 | <trans-unit id="2149300564474427551"> | 4847 | <trans-unit id="2149300564474427551"> |
4849 | <source>Administrator</source> | 4848 | <source>Administrator</source> |
4850 | <target>Administrator</target> | 4849 | <target>Administrator</target> |
4851 | 4850 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group> | |
4852 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group></trans-unit> | 4851 | </trans-unit> |
4853 | <trans-unit id="3171683206914962995"> | 4852 | <trans-unit id="3171683206914962995"> |
4854 | <source>Admin email</source> | 4853 | <source>Admin email</source> |
4855 | <target>Admin E-Mail</target> | 4854 | <target>Admin E-Mail</target> |
@@ -5413,8 +5412,6 @@ color: red; | |||
5413 | <context context-type="linenumber">66</context> | 5412 | <context context-type="linenumber">66</context> |
5414 | </context-group> | 5413 | </context-group> |
5415 | </trans-unit> | 5414 | </trans-unit> |
5416 | |||
5417 | |||
5418 | <trans-unit id="5723033003381016192" datatype="html"> | 5415 | <trans-unit id="5723033003381016192" datatype="html"> |
5419 | <source>Scope:</source> | 5416 | <source>Scope:</source> |
5420 | <target state="translated">Umfang:</target> | 5417 | <target state="translated">Umfang:</target> |
@@ -5423,7 +5420,6 @@ color: red; | |||
5423 | <context context-type="linenumber">81</context> | 5420 | <context context-type="linenumber">81</context> |
5424 | </context-group> | 5421 | </context-group> |
5425 | </trans-unit> | 5422 | </trans-unit> |
5426 | |||
5427 | <trans-unit id="8481241275509347668" datatype="html"> | 5423 | <trans-unit id="8481241275509347668" datatype="html"> |
5428 | <source>Local videos (this instance)</source> | 5424 | <source>Local videos (this instance)</source> |
5429 | <target state="translated">Lokale Videos (Diese Instanz)</target> | 5425 | <target state="translated">Lokale Videos (Diese Instanz)</target> |
@@ -5432,7 +5428,6 @@ color: red; | |||
5432 | <context context-type="linenumber">85</context> | 5428 | <context context-type="linenumber">85</context> |
5433 | </context-group> | 5429 | </context-group> |
5434 | </trans-unit> | 5430 | </trans-unit> |
5435 | |||
5436 | <trans-unit id="8383401711408398806" datatype="html"> | 5431 | <trans-unit id="8383401711408398806" datatype="html"> |
5437 | <source>Federated videos (this instance + followed instances)</source> | 5432 | <source>Federated videos (this instance + followed instances)</source> |
5438 | <target state="translated">Föderierte Videos (diese Instanz + gefolgte Instanzen)</target> | 5433 | <target state="translated">Föderierte Videos (diese Instanz + gefolgte Instanzen)</target> |
@@ -5457,7 +5452,6 @@ color: red; | |||
5457 | <context context-type="linenumber">99</context> | 5452 | <context context-type="linenumber">99</context> |
5458 | </context-group> | 5453 | </context-group> |
5459 | </trans-unit> | 5454 | </trans-unit> |
5460 | |||
5461 | <trans-unit id="1370537846415473089" datatype="html"> | 5455 | <trans-unit id="1370537846415473089" datatype="html"> |
5462 | <source>Categories:</source> | 5456 | <source>Categories:</source> |
5463 | <target state="translated">Kategorien:</target> | 5457 | <target state="translated">Kategorien:</target> |
@@ -6694,8 +6688,8 @@ Erstelle mein Konto</target> | |||
6694 | <trans-unit id="784681343382270982" datatype="html"> | 6688 | <trans-unit id="784681343382270982" datatype="html"> |
6695 | <source>Remove this filter</source> | 6689 | <source>Remove this filter</source> |
6696 | <target state="translated">Diesen Filter entfernen</target> | 6690 | <target state="translated">Diesen Filter entfernen</target> |
6697 | 6691 | <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> | |
6698 | <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> | 6692 | </trans-unit> |
6699 | <trans-unit id="5254305728396198887" datatype="html"> | 6693 | <trans-unit id="5254305728396198887" datatype="html"> |
6700 | <source>Sensitive content</source> | 6694 | <source>Sensitive content</source> |
6701 | <target state="translated">Sensibler Inhalt</target> | 6695 | <target state="translated">Sensibler Inhalt</target> |
@@ -8385,9 +8379,9 @@ Erstelle mein Konto</target> | |||
8385 | <trans-unit id="7916647920967632052" datatype="html"> | 8379 | <trans-unit id="7916647920967632052" datatype="html"> |
8386 | <source>max size</source> | 8380 | <source>max size</source> |
8387 | <target state="translated">maximale Größe</target> | 8381 | <target state="translated">maximale Größe</target> |
8388 | 8382 | <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> | |
8389 | 8383 | <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> | |
8390 | <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> | 8384 | </trans-unit> |
8391 | <trans-unit id="6489275254908395777" datatype="html"> | 8385 | <trans-unit id="6489275254908395777" datatype="html"> |
8392 | <source>Maximize editor</source> | 8386 | <source>Maximize editor</source> |
8393 | <target state="translated">Editor maximieren</target> | 8387 | <target state="translated">Editor maximieren</target> |
@@ -9825,16 +9819,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9825 | <trans-unit id="6952960992592445535" datatype="html"> | 9819 | <trans-unit id="6952960992592445535" datatype="html"> |
9826 | <source><x id="PH"/> (channel page) </source> | 9820 | <source><x id="PH"/> (channel page) </source> |
9827 | <target state="translated"><x id="PH"/> (Kanalseite) </target> | 9821 | <target state="translated"><x id="PH"/> (Kanalseite) </target> |
9828 | 9822 | <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">19</context></context-group> | |
9829 | 9823 | <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> | |
9830 | 9824 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">113</context></context-group> | |
9831 | <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">19</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">113</context></context-group></trans-unit> | 9825 | </trans-unit> |
9832 | <trans-unit id="1209500590333005801" datatype="html"> | 9826 | <trans-unit id="1209500590333005801" datatype="html"> |
9833 | <source><x id="PH"/> (account page) </source> | 9827 | <source><x id="PH"/> (account page) </source> |
9834 | <target state="translated"><x id="PH"/> (Kontoseite) </target> | 9828 | <target state="translated"><x id="PH"/> (Kontoseite) </target> |
9835 | 9829 | <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> | |
9836 | 9830 | <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> | |
9837 | <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">39</context></context-group></trans-unit> | 9831 | </trans-unit> |
9838 | <trans-unit id="2516633974298697807"> | 9832 | <trans-unit id="2516633974298697807"> |
9839 | <source>Emphasis</source> | 9833 | <source>Emphasis</source> |
9840 | <target>Hervorhebungen</target> | 9834 | <target>Hervorhebungen</target> |
@@ -10238,8 +10232,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10238 | <trans-unit id="4968151111061046122"> | 10232 | <trans-unit id="4968151111061046122"> |
10239 | <source>Moderator</source> | 10233 | <source>Moderator</source> |
10240 | <target>Moderator</target> | 10234 | <target>Moderator</target> |
10241 | 10235 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group> | |
10242 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group></trans-unit> | 10236 | </trans-unit> |
10243 | <trans-unit id="2279527393438260622" datatype="html"> | 10237 | <trans-unit id="2279527393438260622" datatype="html"> |
10244 | <source>Search videos, playlists, channels…</source> | 10238 | <source>Search videos, playlists, channels…</source> |
10245 | <target state="translated">Suchen Sie nach Videos, Playlists, Kanälen…</target> | 10239 | <target state="translated">Suchen Sie nach Videos, Playlists, Kanälen…</target> |
@@ -10785,35 +10779,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10785 | <trans-unit id="3284171506518522275"> | 10779 | <trans-unit id="3284171506518522275"> |
10786 | <source>Your video was uploaded to your account and is private.</source> | 10780 | <source>Your video was uploaded to your account and is private.</source> |
10787 | <target>Das Video wurde in dein Konto hochgeladen und ist privat.</target> | 10781 | <target>Das Video wurde in dein Konto hochgeladen und ist privat.</target> |
10788 | <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">118</context></context-group> | 10782 | |
10789 | </trans-unit> | 10783 | <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">125</context></context-group></trans-unit> |
10790 | <trans-unit id="5699822024600815733"> | 10784 | <trans-unit id="5699822024600815733"> |
10791 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10785 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10792 | <target>Weitere Infos (Tags, Beschreibung, ...) werden verworfen, wenn du diese Seite verlässt. Bist du dir sicher?</target> | 10786 | <target>Weitere Infos (Tags, Beschreibung, ...) werden verworfen, wenn du diese Seite verlässt. Bist du dir sicher?</target> |
10793 | <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">119</context></context-group> | 10787 | |
10794 | </trans-unit> | 10788 | <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> |
10795 | <trans-unit id="1219739004043110649"> | 10789 | <trans-unit id="1219739004043110649"> |
10796 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10790 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10797 | <target>Dein Video ist noch nicht hochgeladen. Willst du diese Seite wirklich verlassen?</target> | 10791 | <target>Dein Video ist noch nicht hochgeladen. Willst du diese Seite wirklich verlassen?</target> |
10798 | <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">121</context></context-group> | 10792 | |
10799 | </trans-unit> | 10793 | <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">128</context></context-group></trans-unit> |
10800 | <trans-unit id="6932865105766151309" datatype="html"> | 10794 | <trans-unit id="6932865105766151309" datatype="html"> |
10801 | <source>Upload</source> | 10795 | <source>Upload</source> |
10802 | <target state="translated">Hochladen</target> | 10796 | <target state="translated">Hochladen</target> |
10803 | <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">227</context></context-group> | 10797 | |
10804 | </trans-unit> | 10798 | <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">234</context></context-group></trans-unit> |
10805 | <trans-unit id="8278735427925094503"> | 10799 | <trans-unit id="8278735427925094503"> |
10806 | <source>Upload <x id="PH"/> </source> | 10800 | <source>Upload <x id="PH"/> </source> |
10807 | <target> | 10801 | <target> |
10808 | <x id="PH"/> hochladen | 10802 | <x id="PH"/> hochladen |
10809 | </target> | 10803 | </target> |
10810 | <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">229</context></context-group> | 10804 | |
10811 | </trans-unit> | 10805 | <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">236</context></context-group></trans-unit> |
10812 | <trans-unit id="5981816353437801748"> | 10806 | <trans-unit id="5981816353437801748"> |
10813 | <source>Video published.</source> | 10807 | <source>Video published.</source> |
10814 | <target>Video veröffentlicht.</target> | 10808 | <target>Video veröffentlicht.</target> |
10815 | <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">251</context></context-group> | 10809 | |
10816 | </trans-unit> | 10810 | <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">258</context></context-group></trans-unit> |
10817 | <trans-unit id="764164089183618119"> | 10811 | <trans-unit id="764164089183618119"> |
10818 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 10812 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
10819 | <target>Es gibt ungespeicherte Änderungen! Wenn du die Seite verlässt, gehen die Änderungen verloren.</target> | 10813 | <target>Es gibt ungespeicherte Änderungen! Wenn du die Seite verlässt, gehen die Änderungen verloren.</target> |
diff --git a/client/src/locale/angular.el-GR.xlf b/client/src/locale/angular.el-GR.xlf index 1abd35160..e13ad9a30 100644 --- a/client/src/locale/angular.el-GR.xlf +++ b/client/src/locale/angular.el-GR.xlf | |||
@@ -243,7 +243,7 @@ | |||
243 | <source>video</source> | 243 | <source>video</source> |
244 | <target state="translated">βίντεο</target> | 244 | <target state="translated">βίντεο</target> |
245 | 245 | ||
246 | <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">294</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> | 246 | <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">301</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> |
247 | <trans-unit id="6438815964972582865" datatype="html"> | 247 | <trans-unit id="6438815964972582865" datatype="html"> |
248 | <source>The following link contains a private token and should not be shared with anyone.</source> | 248 | <source>The following link contains a private token and should not be shared with anyone.</source> |
249 | <target state="translated">Ο σύνδεσμος που ακολουθεί περιέχει απόρρητη συμβολοσειρά και δεν θα πρέπει να τον μοιραστείτε με τρίτους.</target> | 249 | <target state="translated">Ο σύνδεσμος που ακολουθεί περιέχει απόρρητη συμβολοσειρά και δεν θα πρέπει να τον μοιραστείτε με τρίτους.</target> |
@@ -312,10 +312,10 @@ | |||
312 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> | 312 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> |
313 | <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> | 313 | <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> |
314 | 314 | ||
315 | <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">330</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> | 315 | <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">337</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> |
316 | <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> | 316 | <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> |
317 | 317 | ||
318 | <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">349</context></context-group></trans-unit> | 318 | <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">356</context></context-group></trans-unit> |
319 | <trans-unit id="5235042777215655908" datatype="html"> | 319 | <trans-unit id="5235042777215655908" datatype="html"> |
320 | <source>subtitles</source> | 320 | <source>subtitles</source> |
321 | <target state="translated">υπότιτλοι</target> | 321 | <target state="translated">υπότιτλοι</target> |
@@ -327,7 +327,7 @@ | |||
327 | Ακύρωση | 327 | Ακύρωση |
328 | </target> | 328 | </target> |
329 | 329 | ||
330 | <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">48</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> | 330 | <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">48</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">23</context></context-group></trans-unit> |
331 | <trans-unit id="3099741642167775297"> | 331 | <trans-unit id="3099741642167775297"> |
332 | <source>Download</source> | 332 | <source>Download</source> |
333 | <target>Λήψη</target> | 333 | <target>Λήψη</target> |
@@ -2461,7 +2461,7 @@ The link will expire within 1 hour.</target> | |||
2461 | <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"> | 2461 | <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"> |
2462 | <source>Upload on hold</source><target state="new">Upload on hold</target> | 2462 | <source>Upload on hold</source><target state="new">Upload on hold</target> |
2463 | 2463 | ||
2464 | <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">167</context></context-group></trans-unit> | 2464 | <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">174</context></context-group></trans-unit> |
2465 | <trans-unit id="285180972645018518" datatype="html"> | 2465 | <trans-unit id="285180972645018518" datatype="html"> |
2466 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2466 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2467 | <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> | 2467 | <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> |
@@ -10925,35 +10925,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10925 | <source>Your video was uploaded to your account and is private.</source> | 10925 | <source>Your video was uploaded to your account and is private.</source> |
10926 | <target>Το βίντεο ανέβηκε στον λογαριασμό σας και είναι ιδιωτικό.</target> | 10926 | <target>Το βίντεο ανέβηκε στον λογαριασμό σας και είναι ιδιωτικό.</target> |
10927 | 10927 | ||
10928 | <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">118</context></context-group></trans-unit> | 10928 | <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">125</context></context-group></trans-unit> |
10929 | <trans-unit id="5699822024600815733"> | 10929 | <trans-unit id="5699822024600815733"> |
10930 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10930 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10931 | <target>Όμως οι σχετικές πληροφορίες (ετικέτες, περιγραφή...) θα χαθούν, σίγουρα θέλετε να φύγετε από τη σελίδα;</target> | 10931 | <target>Όμως οι σχετικές πληροφορίες (ετικέτες, περιγραφή...) θα χαθούν, σίγουρα θέλετε να φύγετε από τη σελίδα;</target> |
10932 | 10932 | ||
10933 | <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">119</context></context-group></trans-unit> | 10933 | <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> |
10934 | <trans-unit id="1219739004043110649"> | 10934 | <trans-unit id="1219739004043110649"> |
10935 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10935 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10936 | <target>Το βίντεο δεν έχει ανέβει ακόμα, θέλετε σίγουρα να φύγετε από τη σελίδα;</target> | 10936 | <target>Το βίντεο δεν έχει ανέβει ακόμα, θέλετε σίγουρα να φύγετε από τη σελίδα;</target> |
10937 | 10937 | ||
10938 | <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">121</context></context-group></trans-unit> | 10938 | <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">128</context></context-group></trans-unit> |
10939 | <trans-unit id="6932865105766151309" datatype="html"> | 10939 | <trans-unit id="6932865105766151309" datatype="html"> |
10940 | <source>Upload</source> | 10940 | <source>Upload</source> |
10941 | <target state="translated">Αποστολή</target> | 10941 | <target state="translated">Αποστολή</target> |
10942 | 10942 | ||
10943 | <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">227</context></context-group></trans-unit> | 10943 | <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">234</context></context-group></trans-unit> |
10944 | <trans-unit id="8278735427925094503"> | 10944 | <trans-unit id="8278735427925094503"> |
10945 | <source>Upload <x id="PH"/> </source> | 10945 | <source>Upload <x id="PH"/> </source> |
10946 | <target>Ανεβάστε | 10946 | <target>Ανεβάστε |
10947 | <x id="PH"/> | 10947 | <x id="PH"/> |
10948 | </target> | 10948 | </target> |
10949 | 10949 | ||
10950 | <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">229</context></context-group></trans-unit> | 10950 | <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">236</context></context-group></trans-unit> |
10951 | 10951 | ||
10952 | <trans-unit id="5981816353437801748"> | 10952 | <trans-unit id="5981816353437801748"> |
10953 | <source>Video published.</source> | 10953 | <source>Video published.</source> |
10954 | <target>Το βίνεο δημοσιεύτηκε.</target> | 10954 | <target>Το βίνεο δημοσιεύτηκε.</target> |
10955 | 10955 | ||
10956 | <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">251</context></context-group></trans-unit> | 10956 | <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">258</context></context-group></trans-unit> |
10957 | 10957 | ||
10958 | 10958 | ||
10959 | <trans-unit id="764164089183618119"> | 10959 | <trans-unit id="764164089183618119"> |
diff --git a/client/src/locale/angular.en-GB.xlf b/client/src/locale/angular.en-GB.xlf index c3ea5a451..5f429d335 100644 --- a/client/src/locale/angular.en-GB.xlf +++ b/client/src/locale/angular.en-GB.xlf | |||
@@ -387,7 +387,7 @@ | |||
387 | <source>video</source> | 387 | <source>video</source> |
388 | <target state="new">video</target> | 388 | <target state="new">video</target> |
389 | 389 | ||
390 | <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">294</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="6438815964972582865" datatype="html"> | 390 | <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">301</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="6438815964972582865" datatype="html"> |
391 | <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> | 391 | <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> |
392 | 392 | ||
393 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> | 393 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> |
@@ -449,10 +449,10 @@ | |||
449 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> | 449 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> |
450 | <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> | 450 | <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> |
451 | 451 | ||
452 | <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">330</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> | 452 | <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">337</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> |
453 | <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> | 453 | <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> |
454 | 454 | ||
455 | <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">349</context></context-group></trans-unit><trans-unit id="5235042777215655908" datatype="html"> | 455 | <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">356</context></context-group></trans-unit><trans-unit id="5235042777215655908" datatype="html"> |
456 | <source>subtitles</source><target state="new">subtitles</target> | 456 | <source>subtitles</source><target state="new">subtitles</target> |
457 | 457 | ||
458 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> | 458 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> |
@@ -462,7 +462,7 @@ | |||
462 | Cancel | 462 | Cancel |
463 | </target> | 463 | </target> |
464 | 464 | ||
465 | <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">48</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> | 465 | <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">48</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">23</context></context-group></trans-unit> |
466 | <trans-unit id="3099741642167775297"> | 466 | <trans-unit id="3099741642167775297"> |
467 | <source>Download</source> | 467 | <source>Download</source> |
468 | <target>Download</target> | 468 | <target>Download</target> |
@@ -2444,7 +2444,7 @@ The link will expire within 1 hour.</target> | |||
2444 | <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"> | 2444 | <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"> |
2445 | <source>Upload on hold</source><target state="new">Upload on hold</target> | 2445 | <source>Upload on hold</source><target state="new">Upload on hold</target> |
2446 | 2446 | ||
2447 | <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">167</context></context-group></trans-unit> | 2447 | <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">174</context></context-group></trans-unit> |
2448 | <trans-unit id="285180972645018518" datatype="html"> | 2448 | <trans-unit id="285180972645018518" datatype="html"> |
2449 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2449 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2450 | <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> | 2450 | <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> |
@@ -10275,20 +10275,20 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10275 | <source>Your video was uploaded to your account and is private.</source> | 10275 | <source>Your video was uploaded to your account and is private.</source> |
10276 | <target>Your video was uploaded to your account and is private.</target> | 10276 | <target>Your video was uploaded to your account and is private.</target> |
10277 | 10277 | ||
10278 | <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">118</context></context-group></trans-unit> | 10278 | <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">125</context></context-group></trans-unit> |
10279 | <trans-unit id="5699822024600815733"> | 10279 | <trans-unit id="5699822024600815733"> |
10280 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10280 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10281 | <target>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> | 10281 | <target>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> |
10282 | 10282 | ||
10283 | <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">119</context></context-group></trans-unit> | 10283 | <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> |
10284 | <trans-unit id="1219739004043110649"> | 10284 | <trans-unit id="1219739004043110649"> |
10285 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10285 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10286 | <target>Your video is not uploaded yet, are you sure you want to leave this page?</target> | 10286 | <target>Your video is not uploaded yet, are you sure you want to leave this page?</target> |
10287 | 10287 | ||
10288 | <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">121</context></context-group></trans-unit><trans-unit id="6932865105766151309" datatype="html"> | 10288 | <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">128</context></context-group></trans-unit><trans-unit id="6932865105766151309" datatype="html"> |
10289 | <source>Upload</source><target state="new">Upload</target> | 10289 | <source>Upload</source><target state="new">Upload</target> |
10290 | 10290 | ||
10291 | <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">227</context></context-group></trans-unit> | 10291 | <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">234</context></context-group></trans-unit> |
10292 | <trans-unit id="8278735427925094503" datatype="html"> | 10292 | <trans-unit id="8278735427925094503" datatype="html"> |
10293 | <source>Upload | 10293 | <source>Upload |
10294 | <x id="PH"/> | 10294 | <x id="PH"/> |
@@ -10297,13 +10297,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10297 | <x id="PH"/> | 10297 | <x id="PH"/> |
10298 | </target> | 10298 | </target> |
10299 | 10299 | ||
10300 | <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">229</context></context-group></trans-unit> | 10300 | <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">236</context></context-group></trans-unit> |
10301 | 10301 | ||
10302 | <trans-unit id="5981816353437801748"> | 10302 | <trans-unit id="5981816353437801748"> |
10303 | <source>Video published.</source> | 10303 | <source>Video published.</source> |
10304 | <target>Video published.</target> | 10304 | <target>Video published.</target> |
10305 | 10305 | ||
10306 | <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">251</context></context-group></trans-unit> | 10306 | <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">258</context></context-group></trans-unit> |
10307 | 10307 | ||
10308 | 10308 | ||
10309 | <trans-unit id="764164089183618119"> | 10309 | <trans-unit id="764164089183618119"> |
diff --git a/client/src/locale/angular.en-US.xlf b/client/src/locale/angular.en-US.xlf index 5bd976c74..cc51230d8 100644 --- a/client/src/locale/angular.en-US.xlf +++ b/client/src/locale/angular.en-US.xlf | |||
@@ -273,7 +273,7 @@ | |||
273 | <source>video</source> | 273 | <source>video</source> |
274 | <target state="final">video</target> | 274 | <target state="final">video</target> |
275 | 275 | ||
276 | <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">294</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="6438815964972582865" datatype="html"> | 276 | <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">301</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="6438815964972582865" datatype="html"> |
277 | <source> The following link contains a private token and should not be shared with anyone. </source><target state="final"> The following link contains a private token and should not be shared with anyone. </target> | 277 | <source> The following link contains a private token and should not be shared with anyone. </source><target state="final"> The following link contains a private token and should not be shared with anyone. </target> |
278 | 278 | ||
279 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> | 279 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> |
@@ -335,10 +335,10 @@ | |||
335 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> | 335 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> |
336 | <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="final">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> | 336 | <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="final">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> |
337 | 337 | ||
338 | <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">330</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> | 338 | <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">337</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> |
339 | <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="final">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> | 339 | <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="final">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> |
340 | 340 | ||
341 | <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">349</context></context-group></trans-unit><trans-unit id="5235042777215655908" datatype="html"> | 341 | <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">356</context></context-group></trans-unit><trans-unit id="5235042777215655908" datatype="html"> |
342 | <source>subtitles</source><target state="final">subtitles</target> | 342 | <source>subtitles</source><target state="final">subtitles</target> |
343 | 343 | ||
344 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> | 344 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> |
@@ -348,7 +348,7 @@ | |||
348 | Cancel | 348 | Cancel |
349 | </target> | 349 | </target> |
350 | 350 | ||
351 | <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">48</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> | 351 | <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">48</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">23</context></context-group></trans-unit> |
352 | <trans-unit id="3099741642167775297"> | 352 | <trans-unit id="3099741642167775297"> |
353 | <source>Download</source> | 353 | <source>Download</source> |
354 | <target>Download</target> | 354 | <target>Download</target> |
@@ -2240,7 +2240,7 @@ The link will expire within 1 hour.</target> | |||
2240 | <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"> | 2240 | <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"> |
2241 | <source>Upload on hold</source><target state="final">Upload on hold</target> | 2241 | <source>Upload on hold</source><target state="final">Upload on hold</target> |
2242 | 2242 | ||
2243 | <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">167</context></context-group></trans-unit> | 2243 | <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">174</context></context-group></trans-unit> |
2244 | <trans-unit id="285180972645018518" datatype="html"> | 2244 | <trans-unit id="285180972645018518" datatype="html"> |
2245 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2245 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2246 | <target state="final">Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</target> | 2246 | <target state="final">Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</target> |
@@ -9805,20 +9805,20 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9805 | <source>Your video was uploaded to your account and is private.</source> | 9805 | <source>Your video was uploaded to your account and is private.</source> |
9806 | <target state="final">Your video was uploaded to your account and is private.</target> | 9806 | <target state="final">Your video was uploaded to your account and is private.</target> |
9807 | 9807 | ||
9808 | <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">118</context></context-group></trans-unit> | 9808 | <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">125</context></context-group></trans-unit> |
9809 | <trans-unit id="5699822024600815733" datatype="html"> | 9809 | <trans-unit id="5699822024600815733" datatype="html"> |
9810 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 9810 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
9811 | <target state="final">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> | 9811 | <target state="final">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> |
9812 | 9812 | ||
9813 | <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">119</context></context-group></trans-unit> | 9813 | <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> |
9814 | <trans-unit id="1219739004043110649" datatype="html"> | 9814 | <trans-unit id="1219739004043110649" datatype="html"> |
9815 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 9815 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
9816 | <target state="final">Your video is not uploaded yet, are you sure you want to leave this page?</target> | 9816 | <target state="final">Your video is not uploaded yet, are you sure you want to leave this page?</target> |
9817 | 9817 | ||
9818 | <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">121</context></context-group></trans-unit><trans-unit id="6932865105766151309" datatype="html"> | 9818 | <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">128</context></context-group></trans-unit><trans-unit id="6932865105766151309" datatype="html"> |
9819 | <source>Upload</source><target state="final">Upload</target> | 9819 | <source>Upload</source><target state="final">Upload</target> |
9820 | 9820 | ||
9821 | <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">227</context></context-group></trans-unit> | 9821 | <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">234</context></context-group></trans-unit> |
9822 | <trans-unit id="8278735427925094503" datatype="html"> | 9822 | <trans-unit id="8278735427925094503" datatype="html"> |
9823 | <source>Upload | 9823 | <source>Upload |
9824 | <x id="PH"/> | 9824 | <x id="PH"/> |
@@ -9827,13 +9827,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9827 | <x id="PH"/> | 9827 | <x id="PH"/> |
9828 | </target> | 9828 | </target> |
9829 | 9829 | ||
9830 | <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">229</context></context-group></trans-unit> | 9830 | <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">236</context></context-group></trans-unit> |
9831 | 9831 | ||
9832 | <trans-unit id="5981816353437801748" datatype="html"> | 9832 | <trans-unit id="5981816353437801748" datatype="html"> |
9833 | <source>Video published.</source> | 9833 | <source>Video published.</source> |
9834 | <target state="final">Video published.</target> | 9834 | <target state="final">Video published.</target> |
9835 | 9835 | ||
9836 | <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">251</context></context-group></trans-unit> | 9836 | <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">258</context></context-group></trans-unit> |
9837 | 9837 | ||
9838 | 9838 | ||
9839 | <trans-unit id="764164089183618119" datatype="html"> | 9839 | <trans-unit id="764164089183618119" datatype="html"> |
diff --git a/client/src/locale/angular.eo.xlf b/client/src/locale/angular.eo.xlf index 2734a2dad..f0a8c0c0c 100644 --- a/client/src/locale/angular.eo.xlf +++ b/client/src/locale/angular.eo.xlf | |||
@@ -240,7 +240,7 @@ | |||
240 | <source>video</source> | 240 | <source>video</source> |
241 | <target state="translated">filmo</target> | 241 | <target state="translated">filmo</target> |
242 | 242 | ||
243 | <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">294</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="6438815964972582865" datatype="html"> | 243 | <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">301</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="6438815964972582865" datatype="html"> |
244 | <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> | 244 | <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> |
245 | 245 | ||
246 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> | 246 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> |
@@ -304,10 +304,10 @@ | |||
304 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> | 304 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> |
305 | <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> | 305 | <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> |
306 | 306 | ||
307 | <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">330</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> | 307 | <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">337</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> |
308 | <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> | 308 | <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> |
309 | 309 | ||
310 | <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">349</context></context-group></trans-unit> | 310 | <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">356</context></context-group></trans-unit> |
311 | 311 | ||
312 | <trans-unit id="5235042777215655908" datatype="html"> | 312 | <trans-unit id="5235042777215655908" datatype="html"> |
313 | <source>subtitles</source> | 313 | <source>subtitles</source> |
@@ -320,7 +320,7 @@ | |||
320 | Nuligi | 320 | Nuligi |
321 | </target> | 321 | </target> |
322 | 322 | ||
323 | <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">48</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> | 323 | <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">48</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">23</context></context-group></trans-unit> |
324 | <trans-unit id="3099741642167775297"> | 324 | <trans-unit id="3099741642167775297"> |
325 | <source>Download</source> | 325 | <source>Download</source> |
326 | <target>Elŝuto</target> | 326 | <target>Elŝuto</target> |
@@ -2324,7 +2324,7 @@ The link will expire within 1 hour.</source> | |||
2324 | <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"> | 2324 | <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"> |
2325 | <source>Upload on hold</source><target state="new">Upload on hold</target> | 2325 | <source>Upload on hold</source><target state="new">Upload on hold</target> |
2326 | 2326 | ||
2327 | <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">167</context></context-group></trans-unit> | 2327 | <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">174</context></context-group></trans-unit> |
2328 | <trans-unit id="285180972645018518" datatype="html"> | 2328 | <trans-unit id="285180972645018518" datatype="html"> |
2329 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2329 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2330 | <target state="translated">Pardonu, la alŝuta funkcio estas malŝaltita por via konto. Se vi volas aldoni filmojn, administranto devas malŝlosi vian datumlimon.</target> | 2330 | <target state="translated">Pardonu, la alŝuta funkcio estas malŝaltita por via konto. Se vi volas aldoni filmojn, administranto devas malŝlosi vian datumlimon.</target> |
@@ -10363,35 +10363,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10363 | <source>Your video was uploaded to your account and is private.</source> | 10363 | <source>Your video was uploaded to your account and is private.</source> |
10364 | <target>Via filmo alŝutiĝis al via konto kaj estas privata.</target> | 10364 | <target>Via filmo alŝutiĝis al via konto kaj estas privata.</target> |
10365 | 10365 | ||
10366 | <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">118</context></context-group></trans-unit> | 10366 | <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">125</context></context-group></trans-unit> |
10367 | <trans-unit id="5699822024600815733"> | 10367 | <trans-unit id="5699822024600815733"> |
10368 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10368 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10369 | <target>Sed rilataj informoj (etikedoj, priskribo…) perdiĝos; ĉu vi certe volas folasi ĉi tiun paĝon?</target> | 10369 | <target>Sed rilataj informoj (etikedoj, priskribo…) perdiĝos; ĉu vi certe volas folasi ĉi tiun paĝon?</target> |
10370 | 10370 | ||
10371 | <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">119</context></context-group></trans-unit> | 10371 | <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> |
10372 | <trans-unit id="1219739004043110649"> | 10372 | <trans-unit id="1219739004043110649"> |
10373 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10373 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10374 | <target>Via filmo ankoraŭ ne alŝutiĝis; ĉu vi certe volas forlasi ĉi tiun paĝon?</target> | 10374 | <target>Via filmo ankoraŭ ne alŝutiĝis; ĉu vi certe volas forlasi ĉi tiun paĝon?</target> |
10375 | 10375 | ||
10376 | <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">121</context></context-group></trans-unit> | 10376 | <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">128</context></context-group></trans-unit> |
10377 | <trans-unit id="6932865105766151309" datatype="html"> | 10377 | <trans-unit id="6932865105766151309" datatype="html"> |
10378 | <source>Upload</source> | 10378 | <source>Upload</source> |
10379 | <target state="translated">Alŝuti</target> | 10379 | <target state="translated">Alŝuti</target> |
10380 | 10380 | ||
10381 | <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">227</context></context-group></trans-unit> | 10381 | <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">234</context></context-group></trans-unit> |
10382 | <trans-unit id="8278735427925094503"> | 10382 | <trans-unit id="8278735427925094503"> |
10383 | <source>Upload <x id="PH"/> </source> | 10383 | <source>Upload <x id="PH"/> </source> |
10384 | <target>Alŝuti | 10384 | <target>Alŝuti |
10385 | <x id="PH"/> | 10385 | <x id="PH"/> |
10386 | </target> | 10386 | </target> |
10387 | 10387 | ||
10388 | <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">229</context></context-group></trans-unit> | 10388 | <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">236</context></context-group></trans-unit> |
10389 | 10389 | ||
10390 | <trans-unit id="5981816353437801748"> | 10390 | <trans-unit id="5981816353437801748"> |
10391 | <source>Video published.</source> | 10391 | <source>Video published.</source> |
10392 | <target>Filmo publikigita.</target> | 10392 | <target>Filmo publikigita.</target> |
10393 | 10393 | ||
10394 | <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">251</context></context-group></trans-unit> | 10394 | <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">258</context></context-group></trans-unit> |
10395 | 10395 | ||
10396 | 10396 | ||
10397 | <trans-unit id="764164089183618119"> | 10397 | <trans-unit id="764164089183618119"> |
diff --git a/client/src/locale/angular.es-ES.xlf b/client/src/locale/angular.es-ES.xlf index a9a5591eb..cefb9c539 100644 --- a/client/src/locale/angular.es-ES.xlf +++ b/client/src/locale/angular.es-ES.xlf | |||
@@ -255,9 +255,9 @@ | |||
255 | <trans-unit id="1006562256968398209" datatype="html"> | 255 | <trans-unit id="1006562256968398209" datatype="html"> |
256 | <source>video</source> | 256 | <source>video</source> |
257 | <target state="translated">video</target> | 257 | <target state="translated">video</target> |
258 | <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">294</context></context-group> | 258 | |
259 | <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> | 259 | |
260 | </trans-unit> | 260 | <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">301</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> |
261 | <trans-unit id="6438815964972582865" datatype="html"> | 261 | <trans-unit id="6438815964972582865" datatype="html"> |
262 | <source>The following link contains a private token and should not be shared with anyone.</source> | 262 | <source>The following link contains a private token and should not be shared with anyone.</source> |
263 | <target state="translated">El siguiente enlace contiene un token privado y no debe compartirse con nadie.</target> | 263 | <target state="translated">El siguiente enlace contiene un token privado y no debe compartirse con nadie.</target> |
@@ -329,13 +329,13 @@ | |||
329 | <trans-unit id="6995024616159044376" datatype="html"> | 329 | <trans-unit id="6995024616159044376" datatype="html"> |
330 | <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> | 330 | <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> |
331 | <target state="translated">Su cuota de video se excede con este video (tamaño del video:<x id="PH" equiv-text="videoSizeBytes"/>, usado: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> | 331 | <target state="translated">Su cuota de video se excede con este video (tamaño del video:<x id="PH" equiv-text="videoSizeBytes"/>, usado: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> |
332 | <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">330</context></context-group> | 332 | |
333 | </trans-unit> | 333 | <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">337</context></context-group></trans-unit> |
334 | <trans-unit id="7873395933409147217" datatype="html"> | 334 | <trans-unit id="7873395933409147217" datatype="html"> |
335 | <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> | 335 | <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> |
336 | <target state="translated">Su cuota diaria de video se excede con este video (tamaño del video:<x id="PH" equiv-text="videoSizeBytes"/>, usado: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, quota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> | 336 | <target state="translated">Su cuota diaria de video se excede con este video (tamaño del video:<x id="PH" equiv-text="videoSizeBytes"/>, usado: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, quota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> |
337 | <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">349</context></context-group> | 337 | |
338 | </trans-unit> | 338 | <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">356</context></context-group></trans-unit> |
339 | <trans-unit id="5235042777215655908" datatype="html"> | 339 | <trans-unit id="5235042777215655908" datatype="html"> |
340 | <source>subtitles</source> | 340 | <source>subtitles</source> |
341 | <target state="translated">subtítulos</target> | 341 | <target state="translated">subtítulos</target> |
@@ -346,9 +346,9 @@ | |||
346 | <target> | 346 | <target> |
347 | Cancelar | 347 | Cancelar |
348 | </target> | 348 | </target> |
349 | <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">48</context></context-group> | 349 | |
350 | <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> | 350 | |
351 | </trans-unit> | 351 | <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">48</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">23</context></context-group></trans-unit> |
352 | <trans-unit id="3099741642167775297"> | 352 | <trans-unit id="3099741642167775297"> |
353 | <source>Download</source> | 353 | <source>Download</source> |
354 | <target>Descargar</target> | 354 | <target>Descargar</target> |
@@ -914,10 +914,10 @@ | |||
914 | <trans-unit id="2392488717875840729" datatype="html"> | 914 | <trans-unit id="2392488717875840729" datatype="html"> |
915 | <source>User</source> | 915 | <source>User</source> |
916 | <target state="translated">Usuario</target> | 916 | <target state="translated">Usuario</target> |
917 | 917 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group> | |
918 | 918 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">27</context></context-group> | |
919 | 919 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group> | |
920 | <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">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group></trans-unit> | 920 | </trans-unit> |
921 | <trans-unit id="4209525355702493436"> | 921 | <trans-unit id="4209525355702493436"> |
922 | <source>Ban</source> | 922 | <source>Ban</source> |
923 | <target>Expulsar</target> | 923 | <target>Expulsar</target> |
@@ -2032,14 +2032,14 @@ The link will expire within 1 hour.</source> | |||
2032 | <trans-unit id="6179532215548637839" datatype="html"> | 2032 | <trans-unit id="6179532215548637839" datatype="html"> |
2033 | <source>extensions</source> | 2033 | <source>extensions</source> |
2034 | <target state="translated">extensiones</target> | 2034 | <target state="translated">extensiones</target> |
2035 | 2035 | <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> | |
2036 | <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> | 2036 | </trans-unit> |
2037 | <trans-unit id="8054921481196967348" datatype="html"> | 2037 | <trans-unit id="8054921481196967348" datatype="html"> |
2038 | <source>This image is too large.</source> | 2038 | <source>This image is too large.</source> |
2039 | <target state="translated">Esta imagen es demasiado grande.</target> | 2039 | <target state="translated">Esta imagen es demasiado grande.</target> |
2040 | 2040 | <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> | |
2041 | 2041 | <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> | |
2042 | <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> | 2042 | </trans-unit> |
2043 | <trans-unit id="6259523075362402245" datatype="html"> | 2043 | <trans-unit id="6259523075362402245" datatype="html"> |
2044 | <source>Upload a new banner</source> | 2044 | <source>Upload a new banner</source> |
2045 | <target state="translated">Subir un nuevo banner</target> | 2045 | <target state="translated">Subir un nuevo banner</target> |
@@ -2064,13 +2064,13 @@ The link will expire within 1 hour.</source> | |||
2064 | <trans-unit id="3220184757632006830" datatype="html"> | 2064 | <trans-unit id="3220184757632006830" datatype="html"> |
2065 | <source>Account avatar</source> | 2065 | <source>Account avatar</source> |
2066 | <target state="translated">Avatar de la cuenta</target> | 2066 | <target state="translated">Avatar de la cuenta</target> |
2067 | 2067 | <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> | |
2068 | <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> | 2068 | </trans-unit> |
2069 | <trans-unit id="1138964882426023395" datatype="html"> | 2069 | <trans-unit id="1138964882426023395" datatype="html"> |
2070 | <source>Channel avatar</source> | 2070 | <source>Channel avatar</source> |
2071 | <target state="translated">Avatar de canal</target> | 2071 | <target state="translated">Avatar de canal</target> |
2072 | 2072 | <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> | |
2073 | <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> | 2073 | </trans-unit> |
2074 | <trans-unit id="1358902062258458923" datatype="html"> | 2074 | <trans-unit id="1358902062258458923" datatype="html"> |
2075 | <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> | 2075 | <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> |
2076 | <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>"/>que también soporta <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> | 2076 | <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>"/>que también soporta <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> |
@@ -2519,8 +2519,8 @@ The link will expire within 1 hour.</source> | |||
2519 | <trans-unit id="6161604372916832458" datatype="html"> | 2519 | <trans-unit id="6161604372916832458" datatype="html"> |
2520 | <source>Upload on hold</source> | 2520 | <source>Upload on hold</source> |
2521 | <target state="translated">Subir en espera</target> | 2521 | <target state="translated">Subir en espera</target> |
2522 | <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">167</context></context-group> | 2522 | |
2523 | </trans-unit> | 2523 | <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">174</context></context-group></trans-unit> |
2524 | <trans-unit id="285180972645018518" datatype="html"> | 2524 | <trans-unit id="285180972645018518" datatype="html"> |
2525 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2525 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2526 | <target state="translated">Lo sentimos, la función de carga está deshabilitada para su cuenta. Si desea agregar videos, un administrador debe desbloquear su cuota.</target> | 2526 | <target state="translated">Lo sentimos, la función de carga está deshabilitada para su cuenta. Si desea agregar videos, un administrador debe desbloquear su cuota.</target> |
@@ -3304,9 +3304,8 @@ The link will expire within 1 hour.</source> | |||
3304 | <trans-unit id="9160510009013134726" datatype="html"> | 3304 | <trans-unit id="9160510009013134726" datatype="html"> |
3305 | <source>Unfollow</source> | 3305 | <source>Unfollow</source> |
3306 | <target state="translated">Dejar de seguir</target> | 3306 | <target state="translated">Dejar de seguir</target> |
3307 | 3307 | <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> | |
3308 | 3308 | </trans-unit> | |
3309 | <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> | ||
3310 | <trans-unit id="8246779176913476983" datatype="html"> | 3309 | <trans-unit id="8246779176913476983" datatype="html"> |
3311 | <source>Open instance in a new tab</source> | 3310 | <source>Open instance in a new tab</source> |
3312 | <target state="translated">Abrir instancia en una pestaña nueva</target> | 3311 | <target state="translated">Abrir instancia en una pestaña nueva</target> |
@@ -4833,8 +4832,8 @@ The link will expire within 1 hour.</source> | |||
4833 | <trans-unit id="2149300564474427551"> | 4832 | <trans-unit id="2149300564474427551"> |
4834 | <source>Administrator</source> | 4833 | <source>Administrator</source> |
4835 | <target>Administrador</target> | 4834 | <target>Administrador</target> |
4836 | 4835 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group> | |
4837 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group></trans-unit> | 4836 | </trans-unit> |
4838 | <trans-unit id="3171683206914962995"> | 4837 | <trans-unit id="3171683206914962995"> |
4839 | <source>Admin email</source> | 4838 | <source>Admin email</source> |
4840 | <target>Correo del administrador</target> | 4839 | <target>Correo del administrador</target> |
@@ -5376,7 +5375,7 @@ color: red; | |||
5376 | </trans-unit> | 5375 | </trans-unit> |
5377 | <trans-unit id="4322133526902910662" datatype="html"> | 5376 | <trans-unit id="4322133526902910662" datatype="html"> |
5378 | <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> | 5377 | <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> |
5379 | <target state="translated">Ordenar por <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Me guusta"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5378 | <target state="translated">Ordenar por <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Me gusta"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
5380 | <context-group purpose="location"> | 5379 | <context-group purpose="location"> |
5381 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5380 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5382 | <context context-type="linenumber">51</context> | 5381 | <context context-type="linenumber">51</context> |
@@ -5398,8 +5397,6 @@ color: red; | |||
5398 | <context context-type="linenumber">66</context> | 5397 | <context context-type="linenumber">66</context> |
5399 | </context-group> | 5398 | </context-group> |
5400 | </trans-unit> | 5399 | </trans-unit> |
5401 | |||
5402 | |||
5403 | <trans-unit id="5723033003381016192" datatype="html"> | 5400 | <trans-unit id="5723033003381016192" datatype="html"> |
5404 | <source>Scope:</source> | 5401 | <source>Scope:</source> |
5405 | <target state="translated">Alcance:</target> | 5402 | <target state="translated">Alcance:</target> |
@@ -5408,7 +5405,6 @@ color: red; | |||
5408 | <context context-type="linenumber">81</context> | 5405 | <context context-type="linenumber">81</context> |
5409 | </context-group> | 5406 | </context-group> |
5410 | </trans-unit> | 5407 | </trans-unit> |
5411 | |||
5412 | <trans-unit id="8481241275509347668" datatype="html"> | 5408 | <trans-unit id="8481241275509347668" datatype="html"> |
5413 | <source>Local videos (this instance)</source> | 5409 | <source>Local videos (this instance)</source> |
5414 | <target state="translated">Videos locales (esta instancia)</target> | 5410 | <target state="translated">Videos locales (esta instancia)</target> |
@@ -5417,7 +5413,6 @@ color: red; | |||
5417 | <context context-type="linenumber">85</context> | 5413 | <context context-type="linenumber">85</context> |
5418 | </context-group> | 5414 | </context-group> |
5419 | </trans-unit> | 5415 | </trans-unit> |
5420 | |||
5421 | <trans-unit id="8383401711408398806" datatype="html"> | 5416 | <trans-unit id="8383401711408398806" datatype="html"> |
5422 | <source>Federated videos (this instance + followed instances)</source> | 5417 | <source>Federated videos (this instance + followed instances)</source> |
5423 | <target state="translated">Vídeos federados (esta instancia + instancias seguidas)</target> | 5418 | <target state="translated">Vídeos federados (esta instancia + instancias seguidas)</target> |
@@ -5442,7 +5437,6 @@ color: red; | |||
5442 | <context context-type="linenumber">99</context> | 5437 | <context context-type="linenumber">99</context> |
5443 | </context-group> | 5438 | </context-group> |
5444 | </trans-unit> | 5439 | </trans-unit> |
5445 | |||
5446 | <trans-unit id="1370537846415473089" datatype="html"> | 5440 | <trans-unit id="1370537846415473089" datatype="html"> |
5447 | <source>Categories:</source> | 5441 | <source>Categories:</source> |
5448 | <target state="translated">Categorías:</target> | 5442 | <target state="translated">Categorías:</target> |
@@ -6682,8 +6676,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6682 | <trans-unit id="784681343382270982" datatype="html"> | 6676 | <trans-unit id="784681343382270982" datatype="html"> |
6683 | <source>Remove this filter</source> | 6677 | <source>Remove this filter</source> |
6684 | <target state="translated">Quitar este filtro</target> | 6678 | <target state="translated">Quitar este filtro</target> |
6685 | 6679 | <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> | |
6686 | <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> | 6680 | </trans-unit> |
6687 | <trans-unit id="5254305728396198887" datatype="html"> | 6681 | <trans-unit id="5254305728396198887" datatype="html"> |
6688 | <source>Sensitive content</source> | 6682 | <source>Sensitive content</source> |
6689 | <target state="translated">Contenido sensible</target> | 6683 | <target state="translated">Contenido sensible</target> |
@@ -8387,9 +8381,9 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8387 | <trans-unit id="7916647920967632052" datatype="html"> | 8381 | <trans-unit id="7916647920967632052" datatype="html"> |
8388 | <source>max size</source> | 8382 | <source>max size</source> |
8389 | <target state="translated">tamaño máximo</target> | 8383 | <target state="translated">tamaño máximo</target> |
8390 | 8384 | <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> | |
8391 | 8385 | <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> | |
8392 | <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> | 8386 | </trans-unit> |
8393 | <trans-unit id="6489275254908395777" datatype="html"> | 8387 | <trans-unit id="6489275254908395777" datatype="html"> |
8394 | <source>Maximize editor</source> | 8388 | <source>Maximize editor</source> |
8395 | <target state="translated">Maximizar editor</target> | 8389 | <target state="translated">Maximizar editor</target> |
@@ -9831,18 +9825,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9831 | <target state="translated"> | 9825 | <target state="translated"> |
9832 | <x id="PH"/> (página del canal) | 9826 | <x id="PH"/> (página del canal) |
9833 | </target> | 9827 | </target> |
9834 | 9828 | <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">19</context></context-group> | |
9835 | 9829 | <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> | |
9836 | 9830 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">113</context></context-group> | |
9837 | <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">19</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">113</context></context-group></trans-unit> | 9831 | </trans-unit> |
9838 | <trans-unit id="1209500590333005801" datatype="html"> | 9832 | <trans-unit id="1209500590333005801" datatype="html"> |
9839 | <source><x id="PH"/> (account page) </source> | 9833 | <source><x id="PH"/> (account page) </source> |
9840 | <target state="translated"> | 9834 | <target state="translated"> |
9841 | <x id="PH"/> (página de cuenta) | 9835 | <x id="PH"/> (página de cuenta) |
9842 | </target> | 9836 | </target> |
9843 | 9837 | <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> | |
9844 | 9838 | <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> | |
9845 | <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">39</context></context-group></trans-unit> | 9839 | </trans-unit> |
9846 | <trans-unit id="2516633974298697807"> | 9840 | <trans-unit id="2516633974298697807"> |
9847 | <source>Emphasis</source> | 9841 | <source>Emphasis</source> |
9848 | <target>Énfasis</target> | 9842 | <target>Énfasis</target> |
@@ -10246,8 +10240,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10246 | <trans-unit id="4968151111061046122"> | 10240 | <trans-unit id="4968151111061046122"> |
10247 | <source>Moderator</source> | 10241 | <source>Moderator</source> |
10248 | <target>Moderador</target> | 10242 | <target>Moderador</target> |
10249 | 10243 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group> | |
10250 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group></trans-unit> | 10244 | </trans-unit> |
10251 | <trans-unit id="2279527393438260622" datatype="html"> | 10245 | <trans-unit id="2279527393438260622" datatype="html"> |
10252 | <source>Search videos, playlists, channels…</source> | 10246 | <source>Search videos, playlists, channels…</source> |
10253 | <target state="translated">Busca videos, listas de reproducción, canales…</target> | 10247 | <target state="translated">Busca videos, listas de reproducción, canales…</target> |
@@ -10783,35 +10777,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10783 | <trans-unit id="3284171506518522275"> | 10777 | <trans-unit id="3284171506518522275"> |
10784 | <source>Your video was uploaded to your account and is private.</source> | 10778 | <source>Your video was uploaded to your account and is private.</source> |
10785 | <target>Tu vídeo ha sido subida a tu cuenta y es privado.</target> | 10779 | <target>Tu vídeo ha sido subida a tu cuenta y es privado.</target> |
10786 | <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">118</context></context-group> | 10780 | |
10787 | </trans-unit> | 10781 | <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">125</context></context-group></trans-unit> |
10788 | <trans-unit id="5699822024600815733"> | 10782 | <trans-unit id="5699822024600815733"> |
10789 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10783 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10790 | <target>Pero los datos asociados (etiquetas, descripción...) se perderán, ¿seguro que quieres abandonar esta página?</target> | 10784 | <target>Pero los datos asociados (etiquetas, descripción...) se perderán, ¿seguro que quieres abandonar esta página?</target> |
10791 | <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">119</context></context-group> | 10785 | |
10792 | </trans-unit> | 10786 | <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> |
10793 | <trans-unit id="1219739004043110649"> | 10787 | <trans-unit id="1219739004043110649"> |
10794 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10788 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10795 | <target>Tu vídeo aún no se ha subido, ¿seguro que quieres abandonar esta página?</target> | 10789 | <target>Tu vídeo aún no se ha subido, ¿seguro que quieres abandonar esta página?</target> |
10796 | <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">121</context></context-group> | 10790 | |
10797 | </trans-unit> | 10791 | <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">128</context></context-group></trans-unit> |
10798 | <trans-unit id="6932865105766151309" datatype="html"> | 10792 | <trans-unit id="6932865105766151309" datatype="html"> |
10799 | <source>Upload</source> | 10793 | <source>Upload</source> |
10800 | <target state="translated">Subir</target> | 10794 | <target state="translated">Subir</target> |
10801 | <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">227</context></context-group> | 10795 | |
10802 | </trans-unit> | 10796 | <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">234</context></context-group></trans-unit> |
10803 | <trans-unit id="8278735427925094503" datatype="html"> | 10797 | <trans-unit id="8278735427925094503" datatype="html"> |
10804 | <source>Upload <x id="PH"/> </source> | 10798 | <source>Upload <x id="PH"/> </source> |
10805 | <target state="translated">Cargue | 10799 | <target state="translated">Cargue |
10806 | <x id="PH"/> | 10800 | <x id="PH"/> |
10807 | </target> | 10801 | </target> |
10808 | <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">229</context></context-group> | 10802 | |
10809 | </trans-unit> | 10803 | <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">236</context></context-group></trans-unit> |
10810 | <trans-unit id="5981816353437801748"> | 10804 | <trans-unit id="5981816353437801748"> |
10811 | <source>Video published.</source> | 10805 | <source>Video published.</source> |
10812 | <target>Vídeo publicado.</target> | 10806 | <target>Vídeo publicado.</target> |
10813 | <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">251</context></context-group> | 10807 | |
10814 | </trans-unit> | 10808 | <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">258</context></context-group></trans-unit> |
10815 | <trans-unit id="764164089183618119" datatype="html"> | 10809 | <trans-unit id="764164089183618119" datatype="html"> |
10816 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 10810 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
10817 | <target state="translated">¡Usted tiene cambios no guardados! Si te vas, tus cambios se perderán.</target> | 10811 | <target state="translated">¡Usted tiene cambios no guardados! Si te vas, tus cambios se perderán.</target> |
diff --git a/client/src/locale/angular.eu-ES.xlf b/client/src/locale/angular.eu-ES.xlf index ef8133f4f..f8b017eb8 100644 --- a/client/src/locale/angular.eu-ES.xlf +++ b/client/src/locale/angular.eu-ES.xlf | |||
@@ -286,7 +286,7 @@ | |||
286 | <source>video</source> | 286 | <source>video</source> |
287 | <target state="translated">bideoa</target> | 287 | <target state="translated">bideoa</target> |
288 | 288 | ||
289 | <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">294</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="6438815964972582865" datatype="html"> | 289 | <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">301</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="6438815964972582865" datatype="html"> |
290 | <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> | 290 | <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> |
291 | 291 | ||
292 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> | 292 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> |
@@ -348,10 +348,10 @@ | |||
348 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> | 348 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> |
349 | <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> | 349 | <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> |
350 | 350 | ||
351 | <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">330</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> | 351 | <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">337</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> |
352 | <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> | 352 | <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> |
353 | 353 | ||
354 | <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">349</context></context-group></trans-unit> | 354 | <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">356</context></context-group></trans-unit> |
355 | 355 | ||
356 | <trans-unit id="5235042777215655908" datatype="html"> | 356 | <trans-unit id="5235042777215655908" datatype="html"> |
357 | <source>subtitles</source> | 357 | <source>subtitles</source> |
@@ -364,7 +364,7 @@ | |||
364 | Utzi | 364 | Utzi |
365 | </target> | 365 | </target> |
366 | 366 | ||
367 | <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">48</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> | 367 | <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">48</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">23</context></context-group></trans-unit> |
368 | <trans-unit id="3099741642167775297"> | 368 | <trans-unit id="3099741642167775297"> |
369 | <source>Download</source> | 369 | <source>Download</source> |
370 | <target>Deskargatu</target> | 370 | <target>Deskargatu</target> |
@@ -2403,7 +2403,7 @@ The link will expire within 1 hour.</source> | |||
2403 | <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"> | 2403 | <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"> |
2404 | <source>Upload on hold</source><target state="new">Upload on hold</target> | 2404 | <source>Upload on hold</source><target state="new">Upload on hold</target> |
2405 | 2405 | ||
2406 | <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">167</context></context-group></trans-unit> | 2406 | <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">174</context></context-group></trans-unit> |
2407 | <trans-unit id="285180972645018518" datatype="html"> | 2407 | <trans-unit id="285180972645018518" datatype="html"> |
2408 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2408 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2409 | <target state="translated">Igotzeko-funtzioa desgaituta dago zure konturako. Bideoak gehitu nahi badituzu, administratzaile batek zure kuota desblokeatu behar du.</target> | 2409 | <target state="translated">Igotzeko-funtzioa desgaituta dago zure konturako. Bideoak gehitu nahi badituzu, administratzaile batek zure kuota desblokeatu behar du.</target> |
@@ -10739,35 +10739,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10739 | <source>Your video was uploaded to your account and is private.</source> | 10739 | <source>Your video was uploaded to your account and is private.</source> |
10740 | <target>Zure bideoa zure kontura igo da eta pribatua da.</target> | 10740 | <target>Zure bideoa zure kontura igo da eta pribatua da.</target> |
10741 | 10741 | ||
10742 | <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">118</context></context-group></trans-unit> | 10742 | <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">125</context></context-group></trans-unit> |
10743 | <trans-unit id="5699822024600815733"> | 10743 | <trans-unit id="5699822024600815733"> |
10744 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10744 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10745 | <target>Baina dagozkion datuak (etiketak, deskripzioa...) galduko dira, ziur orri hau utzi nahi duzula?</target> | 10745 | <target>Baina dagozkion datuak (etiketak, deskripzioa...) galduko dira, ziur orri hau utzi nahi duzula?</target> |
10746 | 10746 | ||
10747 | <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">119</context></context-group></trans-unit> | 10747 | <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> |
10748 | <trans-unit id="1219739004043110649"> | 10748 | <trans-unit id="1219739004043110649"> |
10749 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10749 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10750 | <target>Zur bideoa ez da igo oraindik, ziur orri hau utzi nahi duzula?</target> | 10750 | <target>Zur bideoa ez da igo oraindik, ziur orri hau utzi nahi duzula?</target> |
10751 | 10751 | ||
10752 | <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">121</context></context-group></trans-unit> | 10752 | <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">128</context></context-group></trans-unit> |
10753 | <trans-unit id="6932865105766151309" datatype="html"> | 10753 | <trans-unit id="6932865105766151309" datatype="html"> |
10754 | <source>Upload</source> | 10754 | <source>Upload</source> |
10755 | <target state="new">Upload</target> | 10755 | <target state="new">Upload</target> |
10756 | 10756 | ||
10757 | <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">227</context></context-group></trans-unit> | 10757 | <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">234</context></context-group></trans-unit> |
10758 | <trans-unit id="8278735427925094503" datatype="html"> | 10758 | <trans-unit id="8278735427925094503" datatype="html"> |
10759 | <source>Upload <x id="PH"/> </source> | 10759 | <source>Upload <x id="PH"/> </source> |
10760 | <target state="new">Upload | 10760 | <target state="new">Upload |
10761 | <x id="PH"/> | 10761 | <x id="PH"/> |
10762 | </target> | 10762 | </target> |
10763 | 10763 | ||
10764 | <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">229</context></context-group></trans-unit> | 10764 | <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">236</context></context-group></trans-unit> |
10765 | 10765 | ||
10766 | <trans-unit id="5981816353437801748"> | 10766 | <trans-unit id="5981816353437801748"> |
10767 | <source>Video published.</source> | 10767 | <source>Video published.</source> |
10768 | <target>Bideoa argitaratuta.</target> | 10768 | <target>Bideoa argitaratuta.</target> |
10769 | 10769 | ||
10770 | <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">251</context></context-group></trans-unit> | 10770 | <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">258</context></context-group></trans-unit> |
10771 | 10771 | ||
10772 | 10772 | ||
10773 | <trans-unit id="764164089183618119" datatype="html"> | 10773 | <trans-unit id="764164089183618119" datatype="html"> |
diff --git a/client/src/locale/angular.fa-IR.xlf b/client/src/locale/angular.fa-IR.xlf index 4d80525f0..aa9c76e27 100644 --- a/client/src/locale/angular.fa-IR.xlf +++ b/client/src/locale/angular.fa-IR.xlf | |||
@@ -5,13 +5,13 @@ | |||
5 | <trans-unit id="219462505467671767" datatype="html"> | 5 | <trans-unit id="219462505467671767" datatype="html"> |
6 | <source>Close the left menu</source> | 6 | <source>Close the left menu</source> |
7 | <target state="translated">بستن منوی چپ</target> | 7 | <target state="translated">بستن منوی چپ</target> |
8 | 8 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">133</context></context-group> | |
9 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit> | 9 | </trans-unit> |
10 | <trans-unit id="3455550526898419928" datatype="html"> | 10 | <trans-unit id="3455550526898419928" datatype="html"> |
11 | <source>Open the left menu</source> | 11 | <source>Open the left menu</source> |
12 | <target state="translated">بازکردن منوی چپ</target> | 12 | <target state="translated">بازکردن منوی چپ</target> |
13 | 13 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">135</context></context-group> | |
14 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit> | 14 | </trans-unit> |
15 | <trans-unit id="9075761896562520962" datatype="html"> | 15 | <trans-unit id="9075761896562520962" datatype="html"> |
16 | <source>You don't have notifications.</source> | 16 | <source>You don't have notifications.</source> |
17 | <target state="translated">شما هیچ اعلانی ندارید.</target> | 17 | <target state="translated">شما هیچ اعلانی ندارید.</target> |
@@ -253,9 +253,9 @@ | |||
253 | <trans-unit id="1006562256968398209" datatype="html"> | 253 | <trans-unit id="1006562256968398209" datatype="html"> |
254 | <source>video</source> | 254 | <source>video</source> |
255 | <target state="new">video</target> | 255 | <target state="new">video</target> |
256 | <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">294</context></context-group> | 256 | |
257 | <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> | 257 | |
258 | </trans-unit> | 258 | <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">301</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> |
259 | <trans-unit id="6438815964972582865" datatype="html"> | 259 | <trans-unit id="6438815964972582865" datatype="html"> |
260 | <source>The following link contains a private token and should not be shared with anyone.</source> | 260 | <source>The following link contains a private token and should not be shared with anyone.</source> |
261 | <target state="translated">پیوند زیر دارای یک رمز خصوصی است و نباید با کسی به اشتراک گذاشته شود.</target> | 261 | <target state="translated">پیوند زیر دارای یک رمز خصوصی است و نباید با کسی به اشتراک گذاشته شود.</target> |
@@ -318,20 +318,20 @@ | |||
318 | </trans-unit> | 318 | </trans-unit> |
319 | <trans-unit id="1006562256968398209" datatype="html"> | 319 | <trans-unit id="1006562256968398209" datatype="html"> |
320 | <source>video</source> | 320 | <source>video</source> |
321 | <target state="translated">ویدئو</target> | 321 | <target state="translated">ویدیو</target> |
322 | <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">289</context></context-group> | 322 | <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">289</context></context-group> |
323 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">54</context></context-group> | 323 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">54</context></context-group> |
324 | </trans-unit> | 324 | </trans-unit> |
325 | <trans-unit id="6995024616159044376" datatype="html"> | 325 | <trans-unit id="6995024616159044376" datatype="html"> |
326 | <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> | 326 | <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> |
327 | <target state="translated">با این ویدیو از سهمیه ویدیوی شما بیشتر می شود (اندازه ویدیو: <x id="PH" equiv-text="videoSizeBytes"/>، استفاده شده: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>، سهم : <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> | 327 | <target state="translated">با این ویدیو از سهمیه ویدیوی شما بیشتر می شود (اندازه ویدیو: <x id="PH" equiv-text="videoSizeBytes"/>، استفاده شده: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>، سهم : <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> |
328 | <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">330</context></context-group> | 328 | |
329 | </trans-unit> | 329 | <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">337</context></context-group></trans-unit> |
330 | <trans-unit id="7873395933409147217" datatype="html"> | 330 | <trans-unit id="7873395933409147217" datatype="html"> |
331 | <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> | 331 | <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> |
332 | <target state="translated">سهمیه ویدئویی روزانه شما با این ویدیو (اندازه ویدیو: <x id="PH" equiv-text="videoSizeBytes"/>استفاده شده: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>، سهم: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> | 332 | <target state="translated">سهمیه ویدئویی روزانه شما با این ویدیو (اندازه ویدیو: <x id="PH" equiv-text="videoSizeBytes"/>استفاده شده: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>، سهم: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> |
333 | <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">349</context></context-group> | 333 | |
334 | </trans-unit> | 334 | <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">356</context></context-group></trans-unit> |
335 | <trans-unit id="5235042777215655908" datatype="html"> | 335 | <trans-unit id="5235042777215655908" datatype="html"> |
336 | <source>subtitles</source> | 336 | <source>subtitles</source> |
337 | <target state="translated">زیرنویسها</target> | 337 | <target state="translated">زیرنویسها</target> |
@@ -342,9 +342,9 @@ | |||
342 | <target state="new"> | 342 | <target state="new"> |
343 | Cancel | 343 | Cancel |
344 | </target> | 344 | </target> |
345 | <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">48</context></context-group> | 345 | |
346 | <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> | 346 | |
347 | </trans-unit> | 347 | <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">48</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">23</context></context-group></trans-unit> |
348 | <trans-unit id="3099741642167775297" datatype="html"> | 348 | <trans-unit id="3099741642167775297" datatype="html"> |
349 | <source>Download</source> | 349 | <source>Download</source> |
350 | <target state="new">Download</target> | 350 | <target state="new">Download</target> |
@@ -686,7 +686,7 @@ | |||
686 | </trans-unit> | 686 | </trans-unit> |
687 | <trans-unit id="6462281745850371027" datatype="html"> | 687 | <trans-unit id="6462281745850371027" datatype="html"> |
688 | <source>You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> | 688 | <source>You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> |
689 | <target state="new"> You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | 689 | <target state="translated">میتوانید از طریق هر نمونه فدیورس مبتنی بر اکتیویتیپاب (مثلا پیرتیوب، ماستودون یا پلروما) مشترک کانال شوید.</target> |
690 | <context-group purpose="location"> | 690 | <context-group purpose="location"> |
691 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> | 691 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> |
692 | <context context-type="linenumber">18,19</context> | 692 | <context context-type="linenumber">18,19</context> |
@@ -694,7 +694,7 @@ | |||
694 | </trans-unit> | 694 | </trans-unit> |
695 | <trans-unit id="20374890400263257" datatype="html"> | 695 | <trans-unit id="20374890400263257" datatype="html"> |
696 | <source>You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> | 696 | <source>You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> |
697 | <target state="new"> You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | 697 | <target state="translated">میتوانید از طریق هر نمونه فدیورس مبتنی بر اکتیویتیپاب (مثلا پیرتیوب، ماستودون یا پلروما) با این تعامل داشته باشید.</target> |
698 | <context-group purpose="location"> | 698 | <context-group purpose="location"> |
699 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> | 699 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> |
700 | <context context-type="linenumber">26,27</context> | 700 | <context context-type="linenumber">26,27</context> |
@@ -707,12 +707,7 @@ | |||
707 | </trans-unit> | 707 | </trans-unit> |
708 | <trans-unit id="5975923297757530070" datatype="html"> | 708 | <trans-unit id="5975923297757530070" datatype="html"> |
709 | <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> | 709 | <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> |
710 | <target state="new"> | 710 | <target state="translated"><x id="START_TAG_DIV" ctype="x-div" equiv-text="<div>"/>خطمشی پیشفرض ویدئوهای حساس/نامناسب برای کار <x id="CLOSE_TAG_DIV" ctype="x-div" equiv-text="</div>"/> <x id="START_TAG_DIV_1" ctype="x-div" equiv-text="<div>"/>میتواند توسط کاربران بازتعریف شود<x id="CLOSE_TAG_DIV" ctype="x-div" equiv-text="</div>"/></target> |
711 | <x id="START_TAG_DIV" ctype="x-div" equiv-text="<div>"/>Default NSFW/sensitive videos policy | ||
712 | <x id="CLOSE_TAG_DIV" ctype="x-div" equiv-text="</div>"/> | ||
713 | <x id="START_TAG_DIV_1" ctype="x-div" equiv-text="<div>"/>can be redefined by the users | ||
714 | <x id="CLOSE_TAG_DIV" ctype="x-div" equiv-text="</div>"/> | ||
715 | </target> | ||
716 | <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> | 711 | <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> |
717 | </trans-unit> | 712 | </trans-unit> |
718 | <trans-unit id="3386631781603205915" datatype="html"> | 713 | <trans-unit id="3386631781603205915" datatype="html"> |
@@ -758,12 +753,12 @@ | |||
758 | </trans-unit> | 753 | </trans-unit> |
759 | <trans-unit id="3584756669036615394" datatype="html"> | 754 | <trans-unit id="3584756669036615394" datatype="html"> |
760 | <source>Automatically published</source> | 755 | <source>Automatically published</source> |
761 | <target state="new">Automatically published</target> | 756 | <target state="translated">بهطورخودکار منتشرشده</target> |
762 | <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> | 757 | <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> |
763 | </trans-unit> | 758 | </trans-unit> |
764 | <trans-unit id="2602586221576511475" datatype="html"> | 759 | <trans-unit id="2602586221576511475" datatype="html"> |
765 | <source>Video quota</source> | 760 | <source>Video quota</source> |
766 | <target state="new">Video quota</target> | 761 | <target state="translated">سهمیه ویدئو</target> |
767 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> | 762 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> |
768 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> | 763 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> |
769 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">113</context></context-group> | 764 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">113</context></context-group> |
@@ -771,12 +766,7 @@ | |||
771 | </trans-unit> | 766 | </trans-unit> |
772 | <trans-unit id="1502595455339510144" datatype="html"> | 767 | <trans-unit id="1502595455339510144" datatype="html"> |
773 | <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 768 | <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
774 | <target state="new"> | 769 | <target state="translated">نامحدود <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>( <x id="INTERPOLATION" equiv-text="{{ dailyUserVideoQuota | bytes: 0 }}"/> در روز) <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/></target> |
775 | Unlimited | ||
776 | <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>( | ||
777 | <x id="INTERPOLATION" equiv-text="{{ dailyUserVideoQuota | bytes: 0 }}"/> per day) | ||
778 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> | ||
779 | </target> | ||
780 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">61</context></context-group> | 770 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">61</context></context-group> |
781 | </trans-unit> | 771 | </trans-unit> |
782 | <trans-unit id="1071721880474488785"> | 772 | <trans-unit id="1071721880474488785"> |
@@ -788,59 +778,59 @@ | |||
788 | </trans-unit> | 778 | </trans-unit> |
789 | <trans-unit id="6276792241563504067" datatype="html"> | 779 | <trans-unit id="6276792241563504067" datatype="html"> |
790 | <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> | 780 | <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> |
791 | <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> | 781 | <target state="translated">میتوانید هر پرونده تورنتی که به یک پرونده رسانهای اشاره داشته باشد را وارد کنید. بایستی اطمینان حاصل کنید که شما حق انتشار محتوایی که به آن اشاره میکنید را دارید مگر نه این کار میتواند شما و نمونهٔ شما را با مشکلات حقوقی مواجه کند.</target> |
792 | <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">20</context></context-group> | 782 | <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">20</context></context-group> |
793 | </trans-unit> | 783 | </trans-unit> |
794 | <trans-unit id="5812787579835788700" datatype="html"> | 784 | <trans-unit id="5812787579835788700" datatype="html"> |
795 | <source>HTTP import (YouTube, Vimeo, direct URL...)</source> | 785 | <source>HTTP import (YouTube, Vimeo, direct URL...)</source> |
796 | <target state="new">HTTP import (YouTube, Vimeo, direct URL...)</target> | 786 | <target state="translated">درونریزی HTTP (یوتیوب، ویمئو، نشانی مستقیم...)</target> |
797 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">96</context></context-group> | 787 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-features-table.component.html</context><context context-type="linenumber">96</context></context-group> |
798 | </trans-unit> | 788 | </trans-unit> |
799 | <trans-unit id="4992364287704007430" datatype="html"> | 789 | <trans-unit id="4992364287704007430" datatype="html"> |
800 | <source>Torrent import</source> | 790 | <source>Torrent import</source> |
801 | <target state="new">Torrent import</target> | 791 | <target state="translated">درونریزی تورنت</target> |
802 | <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> | 792 | <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> |
803 | </trans-unit> | 793 | </trans-unit> |
804 | <trans-unit id="7683705529753923369" datatype="html"> | 794 | <trans-unit id="7683705529753923369" datatype="html"> |
805 | <source>Player</source> | 795 | <source>Player</source> |
806 | <target state="new">Player</target> | 796 | <target state="translated">پخش کننده</target> |
807 | <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> | 797 | <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> |
808 | </trans-unit> | 798 | </trans-unit> |
809 | <trans-unit id="2000016511993764346" datatype="html"> | 799 | <trans-unit id="2000016511993764346" datatype="html"> |
810 | <source>P2P enabled</source> | 800 | <source>P2P enabled</source> |
811 | <target state="new">P2P enabled</target> | 801 | <target state="translated">نظیربهنظیر فعال است</target> |
812 | <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> | 802 | <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> |
813 | </trans-unit> | 803 | </trans-unit> |
814 | <trans-unit id="4603134051700562542" datatype="html"> | 804 | <trans-unit id="4603134051700562542" datatype="html"> |
815 | <source>Loading instance statistics...</source> | 805 | <source>Loading instance statistics...</source> |
816 | <target state="new">Loading instance statistics...</target> | 806 | <target state="translated">در حال بار کردن آمار نمونه...</target> |
817 | <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> | 807 | <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> |
818 | </trans-unit> | 808 | </trans-unit> |
819 | <trans-unit id="2906587845957718064"> | 809 | <trans-unit id="2906587845957718064"> |
820 | <source>Local</source> | 810 | <source>Local</source> |
821 | <target>محلی</target> | 811 | <target>محلی</target> |
822 | 812 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">4</context></context-group> | |
823 | 813 | <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> | |
824 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.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-filters.model.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> | 814 | </trans-unit> |
825 | <trans-unit id="1670306451865226564" datatype="html"> | 815 | <trans-unit id="1670306451865226564" datatype="html"> |
826 | <source>users</source> | 816 | <source>users</source> |
827 | <target state="new">users</target> | 817 | <target state="translated">کاربران</target> |
828 | <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> | 818 | <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> |
829 | </trans-unit> | 819 | </trans-unit> |
830 | <trans-unit id="5178138591256693636" datatype="html"> | 820 | <trans-unit id="5178138591256693636" datatype="html"> |
831 | <source>videos</source> | 821 | <source>videos</source> |
832 | <target state="new">videos</target> | 822 | <target state="translated">ویدیوها</target> |
833 | <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> | 823 | <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> |
834 | <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> | 824 | <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> |
835 | </trans-unit> | 825 | </trans-unit> |
836 | <trans-unit id="853055819436340388" datatype="html"> | 826 | <trans-unit id="853055819436340388" datatype="html"> |
837 | <source>video views</source> | 827 | <source>video views</source> |
838 | <target state="new">video views</target> | 828 | <target state="translated">بازدیدهای ویدیو</target> |
839 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">31</context></context-group> | 829 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">31</context></context-group> |
840 | </trans-unit> | 830 | </trans-unit> |
841 | <trans-unit id="3055185920299594800" datatype="html"> | 831 | <trans-unit id="3055185920299594800" datatype="html"> |
842 | <source>video comments</source> | 832 | <source>video comments</source> |
843 | <target state="new">video comments</target> | 833 | <target state="translated">نظرات ویدیو</target> |
844 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">41</context></context-group> | 834 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">41</context></context-group> |
845 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">75</context></context-group> | 835 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">75</context></context-group> |
846 | </trans-unit> | 836 | </trans-unit> |
@@ -857,7 +847,7 @@ | |||
857 | </trans-unit> | 847 | </trans-unit> |
858 | <trans-unit id="8726138323871139597" datatype="html"> | 848 | <trans-unit id="8726138323871139597" datatype="html"> |
859 | <source>Following</source> | 849 | <source>Following</source> |
860 | <target state="new">Following</target> | 850 | <target state="translated">پیگیری</target> |
861 | <context-group purpose="location"> | 851 | <context-group purpose="location"> |
862 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | 852 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> |
863 | <context context-type="linenumber">29</context> | 853 | <context context-type="linenumber">29</context> |
@@ -873,7 +863,7 @@ | |||
873 | </trans-unit> | 863 | </trans-unit> |
874 | <trans-unit id="4914577418256256836" datatype="html"> | 864 | <trans-unit id="4914577418256256836" datatype="html"> |
875 | <source>Followers</source> | 865 | <source>Followers</source> |
876 | <target state="new">Followers</target> | 866 | <target state="translated">دنبالکنندگان</target> |
877 | <context-group purpose="location"> | 867 | <context-group purpose="location"> |
878 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | 868 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> |
879 | <context context-type="linenumber">34</context> | 869 | <context context-type="linenumber">34</context> |
@@ -885,27 +875,27 @@ | |||
885 | </trans-unit> | 875 | </trans-unit> |
886 | <trans-unit id="3541687134897970106" datatype="html"> | 876 | <trans-unit id="3541687134897970106" datatype="html"> |
887 | <source>followers</source> | 877 | <source>followers</source> |
888 | <target state="new">followers</target> | 878 | <target state="translated">دنبالکنندگان</target> |
889 | <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> | 879 | <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> |
890 | </trans-unit> | 880 | </trans-unit> |
891 | <trans-unit id="6751995972535426095" datatype="html"> | 881 | <trans-unit id="6751995972535426095" datatype="html"> |
892 | <source>following</source> | 882 | <source>following</source> |
893 | <target state="new">following</target> | 883 | <target state="translated">پیگیری</target> |
894 | <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> | 884 | <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> |
895 | </trans-unit> | 885 | </trans-unit> |
896 | <trans-unit id="2605931708025789621" datatype="html"> | 886 | <trans-unit id="2605931708025789621" datatype="html"> |
897 | <source>The upload failed</source> | 887 | <source>The upload failed</source> |
898 | <target state="new">The upload failed</target> | 888 | <target state="translated">بارگذاری شکست خورد</target> |
899 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">12</context></context-group> | 889 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">12</context></context-group> |
900 | </trans-unit> | 890 | </trans-unit> |
901 | <trans-unit id="1447760976255144968" datatype="html"> | 891 | <trans-unit id="1447760976255144968" datatype="html"> |
902 | <source>The connection was interrupted</source> | 892 | <source>The connection was interrupted</source> |
903 | <target state="new">The connection was interrupted</target> | 893 | <target state="translated">اتصال با اختلال مواجه شد</target> |
904 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">16</context></context-group> | 894 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">16</context></context-group> |
905 | </trans-unit> | 895 | </trans-unit> |
906 | <trans-unit id="4499233456830047129" datatype="html"> | 896 | <trans-unit id="4499233456830047129" datatype="html"> |
907 | <source>The server encountered an error</source> | 897 | <source>The server encountered an error</source> |
908 | <target state="new">The server encountered an error</target> | 898 | <target state="translated">کارساز با خطا مواجه شد</target> |
909 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">19</context></context-group> | 899 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">19</context></context-group> |
910 | </trans-unit> | 900 | </trans-unit> |
911 | <trans-unit id="3334825601859787496" datatype="html"> | 901 | <trans-unit id="3334825601859787496" datatype="html"> |
@@ -921,10 +911,10 @@ | |||
921 | <trans-unit id="2392488717875840729" datatype="html"> | 911 | <trans-unit id="2392488717875840729" datatype="html"> |
922 | <source>User</source> | 912 | <source>User</source> |
923 | <target state="new">User</target> | 913 | <target state="new">User</target> |
924 | 914 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group> | |
925 | 915 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">27</context></context-group> | |
926 | 916 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group> | |
927 | <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">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group></trans-unit> | 917 | </trans-unit> |
928 | <trans-unit id="4209525355702493436" datatype="html"> | 918 | <trans-unit id="4209525355702493436" datatype="html"> |
929 | <source>Ban</source> | 919 | <source>Ban</source> |
930 | <target state="new">Ban</target> | 920 | <target state="new">Ban</target> |
@@ -934,9 +924,7 @@ | |||
934 | </trans-unit> | 924 | </trans-unit> |
935 | <trans-unit id="7908493851025027368" datatype="html"> | 925 | <trans-unit id="7908493851025027368" datatype="html"> |
936 | <source>A banned user will no longer be able to login.</source> | 926 | <source>A banned user will no longer be able to login.</source> |
937 | <target state="new"> | 927 | <target state="translated">کاربر مسدود شده دیگر نمی تواند وارد شود.</target> |
938 | A banned user will no longer be able to login. | ||
939 | </target> | ||
940 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">21</context></context-group> | 928 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">21</context></context-group> |
941 | </trans-unit> | 929 | </trans-unit> |
942 | <trans-unit id="2159130950882492111"> | 930 | <trans-unit id="2159130950882492111"> |
@@ -964,48 +952,43 @@ | |||
964 | </trans-unit> | 952 | </trans-unit> |
965 | <trans-unit id="3616223838716839702" datatype="html"> | 953 | <trans-unit id="3616223838716839702" datatype="html"> |
966 | <source>Ban this user</source> | 954 | <source>Ban this user</source> |
967 | <target state="new">Ban this user</target> | 955 | <target state="translated">مسدودکردن این کاربر</target> |
968 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">30</context></context-group> | 956 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">30</context></context-group> |
969 | </trans-unit> | 957 | </trans-unit> |
970 | <trans-unit id="4526499522377118108" datatype="html"> | 958 | <trans-unit id="4526499522377118108" datatype="html"> |
971 | <source>Block video "<x id="INTERPOLATION"/>"</source> | 959 | <source>Block video "<x id="INTERPOLATION"/>"</source> |
972 | <target state="new">Block video " | 960 | <target state="translated">مسدود کردن ویدئوی " <x id="INTERPOLATION" equiv-text="{{ video.name }}"/>"</target> |
973 | <x id="INTERPOLATION" equiv-text="{{ video.name }}"/>" | ||
974 | </target> | ||
975 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">3</context></context-group> | 961 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">3</context></context-group> |
976 | </trans-unit> | 962 | </trans-unit> |
977 | <trans-unit id="2992313729068029516" datatype="html"> | 963 | <trans-unit id="2992313729068029516" datatype="html"> |
978 | <source>Block live "<x id="INTERPOLATION"/>"</source> | 964 | <source>Block live "<x id="INTERPOLATION"/>"</source> |
979 | <target state="new">Block live "<x id="INTERPOLATION"/>"</target> | 965 | <target state="translated">مسدود کردن پخش زندهٔ "<x id="INTERPOLATION"/>"</target> |
980 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">4</context></context-group> | 966 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">4</context></context-group> |
981 | </trans-unit> | 967 | </trans-unit> |
982 | <trans-unit id="7256462927215762997" datatype="html"> | 968 | <trans-unit id="7256462927215762997" datatype="html"> |
983 | <source>Please describe the reason...</source> | 969 | <source>Please describe the reason...</source> |
984 | <target state="new">Please describe the reason...</target> | 970 | <target state="translated">لطفا دلیل را تشریح کنید...</target> |
985 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">13</context></context-group> | 971 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">13</context></context-group> |
986 | </trans-unit> | 972 | </trans-unit> |
987 | <trans-unit id="187187500641108332" datatype="html"> | 973 | <trans-unit id="187187500641108332" datatype="html"> |
988 | <source><x id="INTERPOLATION" equiv-text="{{ menuEntry.label }}"/> </source> | 974 | <source><x id="INTERPOLATION" equiv-text="{{ menuEntry.label }}"/> </source> |
989 | <target state="new"> | ||
990 | <x id="INTERPOLATION" equiv-text="{{ menuEntry.label }}"/> | ||
991 | </target> | ||
992 | <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> | 975 | <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> |
993 | <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> | 976 | <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> |
994 | </trans-unit> | 977 | </trans-unit> |
995 | <trans-unit id="1191071088182425837" datatype="html"> | 978 | <trans-unit id="1191071088182425837" datatype="html"> |
996 | <source><x id="PH"/>h</source> | 979 | <source><x id="PH"/>h</source> |
997 | <target state="new"><x id="PH"/>h</target> | 980 | <target state="translated"><x id="PH"/>ساعت</target> |
998 | <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> | 981 | <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> |
999 | </trans-unit> | 982 | </trans-unit> |
1000 | <trans-unit id="8981309282078866700" datatype="html"> | 983 | <trans-unit id="8981309282078866700" datatype="html"> |
1001 | <source><x id="PH"/>min</source> | 984 | <source><x id="PH"/>min</source> |
1002 | <target state="new"><x id="PH"/>min</target> | 985 | <target state="translated"><x id="PH"/>دقیقه</target> |
1003 | <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> | 986 | <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> |
1004 | <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> | 987 | <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> |
1005 | </trans-unit> | 988 | </trans-unit> |
1006 | <trans-unit id="350798057497677761" datatype="html"> | 989 | <trans-unit id="350798057497677761" datatype="html"> |
1007 | <source><x id="PH"/>sec</source> | 990 | <source><x id="PH"/>sec</source> |
1008 | <target state="new"><x id="PH"/>sec</target> | 991 | <target state="translated"><x id="PH"/>ثانیه</target> |
1009 | <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> | 992 | <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> |
1010 | </trans-unit> | 993 | </trans-unit> |
1011 | <trans-unit id="1908285951500318953"> | 994 | <trans-unit id="1908285951500318953"> |
@@ -1017,23 +1000,18 @@ | |||
1017 | </trans-unit> | 1000 | </trans-unit> |
1018 | <trans-unit id="1909492071130899005" datatype="html"> | 1001 | <trans-unit id="1909492071130899005" datatype="html"> |
1019 | <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> | 1002 | <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> |
1020 | <target state="new"> | 1003 | <target state="translated">ببخشید اما مشکلی در فرایند ورود خارجی بروز کرد. لطفا <x id="START_LINK"/>با یکی از مدیران تماس بگیرید<x id="CLOSE_LINK"/>. </target> |
1021 | Sorry but there was an issue with the external login process. Please | ||
1022 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>contact an administrator | ||
1023 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. | ||
1024 | |||
1025 | </target> | ||
1026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">7</context></context-group> | 1004 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">7</context></context-group> |
1027 | </trans-unit> | 1005 | </trans-unit> |
1028 | <trans-unit id="8390073108781420493" datatype="html"> | 1006 | <trans-unit id="8390073108781420493" datatype="html"> |
1029 | <source>Request new verification email.</source> | 1007 | <source>Request new verification email.</source> |
1030 | <target state="new">Request new verification email.</target> | 1008 | <target state="translated">درخواست رایانامه جدید اعتبارسنجی.</target> |
1031 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">12</context></context-group> | 1009 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">12</context></context-group> |
1032 | <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> | 1010 | <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> |
1033 | </trans-unit> | 1011 | </trans-unit> |
1034 | <trans-unit id="7252854992688790751" datatype="html"> | 1012 | <trans-unit id="7252854992688790751" datatype="html"> |
1035 | <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> | 1013 | <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> |
1036 | <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> | 1014 | <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> |
1037 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">64</context></context-group> | 1015 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">64</context></context-group> |
1038 | </trans-unit> | 1016 | </trans-unit> |
1039 | <trans-unit id="7215649348148521605" datatype="html"> | 1017 | <trans-unit id="7215649348148521605" datatype="html"> |
@@ -1054,7 +1032,7 @@ | |||
1054 | </trans-unit> | 1032 | </trans-unit> |
1055 | <trans-unit id="1758058452376026925" datatype="html"> | 1033 | <trans-unit id="1758058452376026925" datatype="html"> |
1056 | <source>⚠️ Most email addresses do not include capital letters.</source> | 1034 | <source>⚠️ Most email addresses do not include capital letters.</source> |
1057 | <target state="new"> ⚠️ Most email addresses do not include capital letters. </target> | 1035 | <target state="translated">⚠️ بیشتر نشانیهای رایانامه فاقد حروف بزرگ هستند.</target> |
1058 | <context-group purpose="location"> | 1036 | <context-group purpose="location"> |
1059 | <context context-type="sourcefile">src/app/+login/login.component.html</context> | 1037 | <context context-type="sourcefile">src/app/+login/login.component.html</context> |
1060 | <context context-type="linenumber">33,34</context> | 1038 | <context context-type="linenumber">33,34</context> |
@@ -1074,17 +1052,17 @@ | |||
1074 | </trans-unit> | 1052 | </trans-unit> |
1075 | <trans-unit id="8715156686857791956" datatype="html"> | 1053 | <trans-unit id="8715156686857791956" datatype="html"> |
1076 | <source>Click here to reset your password</source> | 1054 | <source>Click here to reset your password</source> |
1077 | <target state="new">Click here to reset your password</target> | 1055 | <target state="translated">برای بازنشانی گذرواژه اینجا کلیک کنید</target> |
1078 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">51</context></context-group> | 1056 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">51</context></context-group> |
1079 | </trans-unit> | 1057 | </trans-unit> |
1080 | <trans-unit id="892063502898494584" datatype="html"> | 1058 | <trans-unit id="892063502898494584" datatype="html"> |
1081 | <source>I forgot my password</source> | 1059 | <source>I forgot my password</source> |
1082 | <target state="new">I forgot my password</target> | 1060 | <target state="translated">گذرواژهام را فراموش کردهام</target> |
1083 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">51</context></context-group> | 1061 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">51</context></context-group> |
1084 | </trans-unit> | 1062 | </trans-unit> |
1085 | <trans-unit id="2101170466365500913" datatype="html"> | 1063 | <trans-unit id="2101170466365500913" datatype="html"> |
1086 | <source>Logging into an account lets you publish content</source> | 1064 | <source>Logging into an account lets you publish content</source> |
1087 | <target state="new"> Logging into an account lets you publish content </target> | 1065 | <target state="translated">وارد شدن به حساب به شما امکان انتشار محتوا میدهد</target> |
1088 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">60</context></context-group> | 1066 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">60</context></context-group> |
1089 | </trans-unit> | 1067 | </trans-unit> |
1090 | <trans-unit id="2454050363478003966"> | 1068 | <trans-unit id="2454050363478003966"> |
@@ -1096,7 +1074,7 @@ | |||
1096 | </trans-unit> | 1074 | </trans-unit> |
1097 | <trans-unit id="3183213940445113677" datatype="html"> | 1075 | <trans-unit id="3183213940445113677" datatype="html"> |
1098 | <source>Or sign in with</source> | 1076 | <source>Or sign in with</source> |
1099 | <target state="new">Or sign in with</target> | 1077 | <target state="translated">یا از این طریق وارد شوید</target> |
1100 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">76</context></context-group> | 1078 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">76</context></context-group> |
1101 | </trans-unit> | 1079 | </trans-unit> |
1102 | <trans-unit id="3238209155172574367"> | 1080 | <trans-unit id="3238209155172574367"> |
@@ -1106,21 +1084,18 @@ | |||
1106 | </trans-unit> | 1084 | </trans-unit> |
1107 | <trans-unit id="87327320394367488" datatype="html"> | 1085 | <trans-unit id="87327320394367488" datatype="html"> |
1108 | <source>We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</source> | 1086 | <source>We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</source> |
1109 | <target state="new"> | 1087 | <target state="translated">متاسفیم، ما نمیتوانیم گذرواژه شما را بازیابی کنیم زیرا مدیر نمونهتان، سامانه رایانامه پیرتیوب را پیکربندی نکردهاند.</target> |
1110 | We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system. | ||
1111 | </target> | ||
1112 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">103</context></context-group> | 1088 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">103</context></context-group> |
1113 | </trans-unit> | 1089 | </trans-unit> |
1114 | <trans-unit id="3188014010833256853" datatype="html"> | 1090 | <trans-unit id="3188014010833256853" datatype="html"> |
1115 | <source>Enter your email address and we will send you a link to reset your password.</source> | 1091 | <source>Enter your email address and we will send you a link to reset your password.</source> |
1116 | <target state="new"> Enter your email address and we will send you a link to reset your password. </target> | 1092 | <target state="translated">نشانی رایانامهتان را وارد کنید تا ما پیوندی برای بازنشانی گذرواژه را برای شما بفرستیم.</target> |
1117 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">107</context></context-group> | 1093 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">107</context></context-group> |
1118 | </trans-unit> | 1094 | </trans-unit> |
1119 | <trans-unit id="1190256911880544559" datatype="html"> | 1095 | <trans-unit id="1190256911880544559" datatype="html"> |
1120 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. | 1096 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. |
1121 | The link will expire within 1 hour.</source> | 1097 | The link will expire within 1 hour.</source> |
1122 | <target state="new">An email with the reset password instructions will be sent to <x id="PH"/>. | 1098 | <target state="translated">رایانامهای حاوی دستورالعمل بازنشانی گذرواژه به <x id="PH" equiv-text="this.forgotPasswordEmail"/> فرستاده خواهد شد. این پیوند تا یک ساعت دیگر منقضی میشود.</target> |
1123 | The link will expire within 1 hour.</target> | ||
1124 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">121</context></context-group> | 1099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">121</context></context-group> |
1125 | </trans-unit> | 1100 | </trans-unit> |
1126 | <trans-unit id="4768749765465246664"> | 1101 | <trans-unit id="4768749765465246664"> |
@@ -1143,23 +1118,23 @@ The link will expire within 1 hour.</target> | |||
1143 | </trans-unit> | 1118 | </trans-unit> |
1144 | <trans-unit id="7808756054397155068" datatype="html"> | 1119 | <trans-unit id="7808756054397155068" datatype="html"> |
1145 | <source>Reset</source> | 1120 | <source>Reset</source> |
1146 | <target state="new">Reset</target> | 1121 | <target state="translated">بازنشانی</target> |
1147 | <note priority="1" from="description">Password reset button</note> | 1122 | <note priority="1" from="description">Password reset button</note> |
1148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">126</context></context-group> | 1123 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">126</context></context-group> |
1149 | </trans-unit> | 1124 | </trans-unit> |
1150 | <trans-unit id="4319634264526091601" datatype="html"> | 1125 | <trans-unit id="4319634264526091601" datatype="html"> |
1151 | <source>on this instance</source> | 1126 | <source>on this instance</source> |
1152 | <target state="new">on this instance</target> | 1127 | <target state="translated">روی این نمونه</target> |
1153 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">7</context></context-group> | 1128 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">7</context></context-group> |
1154 | </trans-unit> | 1129 | </trans-unit> |
1155 | <trans-unit id="761579517995454927" datatype="html"> | 1130 | <trans-unit id="761579517995454927" datatype="html"> |
1156 | <source>on the vidiverse</source> | 1131 | <source>on the vidiverse</source> |
1157 | <target state="new">on the vidiverse</target> | 1132 | <target state="translated">روی ودیورس</target> |
1158 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">8</context></context-group> | 1133 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">8</context></context-group> |
1159 | </trans-unit> | 1134 | </trans-unit> |
1160 | <trans-unit id="8434369348784683733" datatype="html"> | 1135 | <trans-unit id="8434369348784683733" datatype="html"> |
1161 | <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> | 1136 | <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> |
1162 | <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> | 1137 | <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> |
1163 | <context-group purpose="location"> | 1138 | <context-group purpose="location"> |
1164 | <context context-type="sourcefile">src/app/+search/search.component.html</context> | 1139 | <context context-type="sourcefile">src/app/+search/search.component.html</context> |
1165 | <context context-type="linenumber">10</context> | 1140 | <context context-type="linenumber">10</context> |
@@ -1189,7 +1164,7 @@ The link will expire within 1 hour.</target> | |||
1189 | </trans-unit> | 1164 | </trans-unit> |
1190 | <trans-unit id="8890553633144307762" datatype="html"> | 1165 | <trans-unit id="8890553633144307762" datatype="html"> |
1191 | <source>Back</source> | 1166 | <source>Back</source> |
1192 | <target state="new">Back</target> | 1167 | <target state="translated">قبلی</target> |
1193 | <context-group purpose="location"> | 1168 | <context-group purpose="location"> |
1194 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> | 1169 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> |
1195 | <context context-type="linenumber">41</context> | 1170 | <context context-type="linenumber">41</context> |
@@ -1198,7 +1173,7 @@ The link will expire within 1 hour.</target> | |||
1198 | </trans-unit> | 1173 | </trans-unit> |
1199 | <trans-unit id="3885497195825665706" datatype="html"> | 1174 | <trans-unit id="3885497195825665706" datatype="html"> |
1200 | <source>Next</source> | 1175 | <source>Next</source> |
1201 | <target state="new">Next</target> | 1176 | <target state="translated">بعدی</target> |
1202 | <context-group purpose="location"> | 1177 | <context-group purpose="location"> |
1203 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> | 1178 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> |
1204 | <context context-type="linenumber">42</context> | 1179 | <context context-type="linenumber">42</context> |
@@ -1207,19 +1182,13 @@ The link will expire within 1 hour.</target> | |||
1207 | </trans-unit> | 1182 | </trans-unit> |
1208 | <trans-unit id="5018804994794983050" datatype="html"> | 1183 | <trans-unit id="5018804994794983050" datatype="html"> |
1209 | <source>Signup</source> | 1184 | <source>Signup</source> |
1210 | <target state="new">Signup</target> | 1185 | <target state="translated">نامنویسی</target> |
1211 | <note priority="1" from="description">Button on the registration form to finalize the account and channel creation</note> | 1186 | <note priority="1" from="description">Button on the registration form to finalize the account and channel creation</note> |
1212 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">67</context></context-group> | 1187 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">67</context></context-group> |
1213 | </trans-unit> | 1188 | </trans-unit> |
1214 | <trans-unit id="5340005218109333045" datatype="html"> | 1189 | <trans-unit id="5340005218109333045" datatype="html"> |
1215 | <source>Filters <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> | 1190 | <source>Filters <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> |
1216 | <target state="new"> | 1191 | <target state="translated">پالایهها <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></target> |
1217 | Filters | ||
1218 | |||
1219 | <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> | ||
1220 | <x id="INTERPOLATION" equiv-text="{{ numberOfFilters() }}"/> | ||
1221 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> | ||
1222 | </target> | ||
1223 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">19</context></context-group> | 1192 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">19</context></context-group> |
1224 | </trans-unit> | 1193 | </trans-unit> |
1225 | <trans-unit id="2236371857137398396"> | 1194 | <trans-unit id="2236371857137398396"> |
@@ -1231,77 +1200,73 @@ The link will expire within 1 hour.</target> | |||
1231 | </trans-unit> | 1200 | </trans-unit> |
1232 | <trans-unit id="5500467336262464724" datatype="html"> | 1201 | <trans-unit id="5500467336262464724" datatype="html"> |
1233 | <source><x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> subscribers </source> | 1202 | <source><x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> subscribers </source> |
1234 | <target state="new"> | 1203 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> مشترک </target> |
1235 | <x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> subscribers | ||
1236 | </target> | ||
1237 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">25</context></context-group> | 1204 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">25</context></context-group> |
1238 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">55</context></context-group> | 1205 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">55</context></context-group> |
1239 | <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> | 1206 | <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> |
1240 | </trans-unit> | 1207 | </trans-unit> |
1241 | <trans-unit id="1516969129397662377" datatype="html"> | 1208 | <trans-unit id="1516969129397662377" datatype="html"> |
1242 | <source>Welcome to PeerTube, dear administrator!</source> | 1209 | <source>Welcome to PeerTube, dear administrator!</source> |
1243 | <target state="new">Welcome to PeerTube, dear administrator!</target> | 1210 | <target state="translated">مدیر گرامی، به پیرتیوب خوشآمدید!</target> |
1244 | 1211 | <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> | |
1245 | <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> | 1212 | </trans-unit> |
1246 | <trans-unit id="807030720531713957" datatype="html"> | 1213 | <trans-unit id="807030720531713957" datatype="html"> |
1247 | <source>CLI documentation</source> | 1214 | <source>CLI documentation</source> |
1248 | <target state="new">CLI | 1215 | <target state="translated">مستندات CLI</target> |
1249 | documentation</target> | 1216 | <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> |
1250 | 1217 | </trans-unit> | |
1251 | <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> | ||
1252 | <trans-unit id="199127249622290422" datatype="html"> | 1218 | <trans-unit id="199127249622290422" datatype="html"> |
1253 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> | 1219 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> |
1254 | <target state="new">Upload or import videos, parse logs, prune storage directories, reset user password...</target> | 1220 | <target state="new">Upload or import videos, parse logs, prune storage directories, reset user password...</target> |
1255 | 1221 | <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> | |
1256 | <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> | 1222 | </trans-unit> |
1257 | <trans-unit id="249453844439446209" datatype="html"> | 1223 | <trans-unit id="249453844439446209" datatype="html"> |
1258 | <source>Administer documentation</source> | 1224 | <source>Administer documentation</source> |
1259 | <target state="new">Administer | 1225 | <target state="translated">مستندات مدیر</target> |
1260 | documentation</target> | 1226 | <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> |
1261 | 1227 | </trans-unit> | |
1262 | <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> | ||
1263 | <trans-unit id="5910950876330656326" datatype="html"> | 1228 | <trans-unit id="5910950876330656326" datatype="html"> |
1264 | <source>Managing users, following other instances, dealing with spammers...</source> | 1229 | <source>Managing users, following other instances, dealing with spammers...</source> |
1265 | <target state="new">Managing users, following other instances, dealing with spammers...</target> | 1230 | <target state="new">Managing users, following other instances, dealing with spammers...</target> |
1266 | 1231 | <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> | |
1267 | <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> | 1232 | </trans-unit> |
1268 | <trans-unit id="879127294610588497" datatype="html"> | 1233 | <trans-unit id="879127294610588497" datatype="html"> |
1269 | <source>Use documentation</source> | 1234 | <source>Use documentation</source> |
1270 | <target state="new">Use | 1235 | <target state="new">Use |
1271 | documentation</target> | 1236 | documentation</target> |
1272 | 1237 | <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> | |
1273 | <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> | 1238 | </trans-unit> |
1274 | <trans-unit id="3848077896245199337" datatype="html"> | 1239 | <trans-unit id="3848077896245199337" datatype="html"> |
1275 | <source>Setup your account, managing video playlists, discover third-party applications...</source> | 1240 | <source>Setup your account, managing video playlists, discover third-party applications...</source> |
1276 | <target state="new">Setup your account, managing video playlists, discover third-party applications...</target> | 1241 | <target state="new">Setup your account, managing video playlists, discover third-party applications...</target> |
1277 | 1242 | <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> | |
1278 | <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> | 1243 | </trans-unit> |
1279 | <trans-unit id="6284442506490785579" datatype="html"> | 1244 | <trans-unit id="6284442506490785579" datatype="html"> |
1280 | <source>Useful links</source> | 1245 | <source>Useful links</source> |
1281 | <target state="new">Useful links</target> | 1246 | <target state="new">Useful links</target> |
1282 | 1247 | <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> | |
1283 | <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> | 1248 | </trans-unit> |
1284 | <trans-unit id="5170617864166788170" datatype="html"> | 1249 | <trans-unit id="5170617864166788170" datatype="html"> |
1285 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> | 1250 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> |
1286 | <target state="new">Official PeerTube website (news, support, contribute...): | 1251 | <target state="new">Official PeerTube website (news, support, contribute...): |
1287 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>https://joinpeertube.org | 1252 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>https://joinpeertube.org |
1288 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 1253 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
1289 | </target> | 1254 | </target> |
1290 | 1255 | <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> | |
1291 | <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> | 1256 | </trans-unit> |
1292 | <trans-unit id="4614992717645869756" datatype="html"> | 1257 | <trans-unit id="4614992717645869756" datatype="html"> |
1293 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> | 1258 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> |
1294 | <target state="new">Put your instance on the public PeerTube index: | 1259 | <target state="new">Put your instance on the public PeerTube index: |
1295 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>https://instances.joinpeertube.org/instances | 1260 | <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>https://instances.joinpeertube.org/instances |
1296 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 1261 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
1297 | </target> | 1262 | </target> |
1298 | 1263 | <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> | |
1299 | <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> | 1264 | </trans-unit> |
1300 | <trans-unit id="2081626998027585315" datatype="html"> | 1265 | <trans-unit id="2081626998027585315" datatype="html"> |
1301 | <source>It's time to configure your instance!</source> | 1266 | <source>It's time to configure your instance!</source> |
1302 | <target state="new">It's time to configure your instance!</target> | 1267 | <target state="new">It's time to configure your instance!</target> |
1303 | 1268 | <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> | |
1304 | <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> | 1269 | </trans-unit> |
1305 | <trans-unit id="5083058563861587027" datatype="html"> | 1270 | <trans-unit id="5083058563861587027" datatype="html"> |
1306 | <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> | 1271 | <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> |
1307 | <target state="new"> | 1272 | <target state="new"> |
@@ -1322,31 +1287,31 @@ The link will expire within 1 hour.</target> | |||
1322 | is very important for visitors to understand on what type of instance they are. | 1287 | is very important for visitors to understand on what type of instance they are. |
1323 | 1288 | ||
1324 | </target> | 1289 | </target> |
1325 | 1290 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">58</context></context-group> | |
1326 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 1291 | </trans-unit> |
1327 | <trans-unit id="5329436244765769292" datatype="html"> | 1292 | <trans-unit id="5329436244765769292" datatype="html"> |
1328 | <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> | 1293 | <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> |
1329 | <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> | 1294 | <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> |
1330 | 1295 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">64</context></context-group> | |
1331 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 1296 | </trans-unit> |
1332 | <trans-unit id="5704345824323933019" datatype="html"> | 1297 | <trans-unit id="5704345824323933019" datatype="html"> |
1333 | <source>Remind me later</source> | 1298 | <source>Remind me later</source> |
1334 | <target state="new">Remind me later</target> | 1299 | <target state="new">Remind me later</target> |
1335 | 1300 | <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> | |
1336 | 1301 | <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> | |
1337 | <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/admin-welcome-modal.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit> | 1302 | </trans-unit> |
1338 | <trans-unit id="7997432701743294657" datatype="html"> | 1303 | <trans-unit id="7997432701743294657" datatype="html"> |
1339 | <source>Set up</source> | 1304 | <source>Set up</source> |
1340 | <target state="new"> Set up </target> | 1305 | <target state="new"> Set up </target> |
1341 | 1306 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">35</context></context-group> | |
1342 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 1307 | </trans-unit> |
1343 | <trans-unit id="9202089339019827574" datatype="html"> | 1308 | <trans-unit id="9202089339019827574" datatype="html"> |
1344 | <source>Configure my instance</source> | 1309 | <source>Configure my instance</source> |
1345 | <target state="new"> | 1310 | <target state="new"> |
1346 | Configure my instance | 1311 | Configure my instance |
1347 | </target> | 1312 | </target> |
1348 | 1313 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">81</context></context-group> | |
1349 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit> | 1314 | </trans-unit> |
1350 | <trans-unit id="9005121595859995793" datatype="html"> | 1315 | <trans-unit id="9005121595859995793" datatype="html"> |
1351 | <source>Configuration warning!</source> | 1316 | <source>Configuration warning!</source> |
1352 | <target state="new">Configuration warning!</target> | 1317 | <target state="new">Configuration warning!</target> |
@@ -1679,29 +1644,31 @@ The link will expire within 1 hour.</target> | |||
1679 | <trans-unit id="5108072242786374364" datatype="html"> | 1644 | <trans-unit id="5108072242786374364" datatype="html"> |
1680 | <source>Welcome to <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, dear user!</source> | 1645 | <source>Welcome to <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, dear user!</source> |
1681 | <target state="new">Welcome to <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, dear user!</target> | 1646 | <target state="new">Welcome to <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, dear user!</target> |
1682 | 1647 | <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> | |
1683 | <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> | 1648 | </trans-unit> |
1684 | <trans-unit id="8821712929823045567" datatype="html"> | 1649 | <trans-unit id="8821712929823045567" datatype="html"> |
1685 | <source>It's time to set up your account profile!</source> | 1650 | <source>It's time to set up your account profile!</source> |
1686 | <target state="new">It's time to set up your account profile!</target> | 1651 | <target state="new">It's time to set up your account profile!</target> |
1687 | 1652 | <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> | |
1688 | <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> | 1653 | </trans-unit> |
1689 | <trans-unit id="7239874680342223476" datatype="html"> | 1654 | <trans-unit id="7239874680342223476" datatype="html"> |
1690 | <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> | 1655 | <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> |
1691 | <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> | 1656 | <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> |
1692 | 1657 | <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> | |
1693 | <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> | 1658 | </trans-unit> |
1694 | <trans-unit id="5856432243446401016" datatype="html"> | 1659 | <trans-unit id="5856432243446401016" datatype="html"> |
1695 | <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> | 1660 | <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> |
1696 | <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> | 1661 | <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> |
1697 | 1662 | <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> | |
1698 | <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> | 1663 | </trans-unit> |
1699 | <trans-unit id="3221645359464920754" datatype="html"> | 1664 | <trans-unit id="3221645359464920754" datatype="html"> |
1700 | <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> | 1665 | <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> |
1701 | <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> | 1666 | <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> |
1702 | 1667 | <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> | |
1703 | <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"> | 1668 | </trans-unit> |
1704 | <source>Don't show me this anymore</source><target state="new">Don't show me this anymore</target> | 1669 | <trans-unit id="2218100934178971211" datatype="html"> |
1670 | <source>Don't show me this anymore</source> | ||
1671 | <target state="new">Don't show me this anymore</target> | ||
1705 | <context-group purpose="location"> | 1672 | <context-group purpose="location"> |
1706 | <context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context> | 1673 | <context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context> |
1707 | <context context-type="linenumber">23</context> | 1674 | <context context-type="linenumber">23</context> |
@@ -1911,19 +1878,19 @@ The link will expire within 1 hour.</target> | |||
1911 | <trans-unit id="2180217594100853008" datatype="html"> | 1878 | <trans-unit id="2180217594100853008" datatype="html"> |
1912 | <source>Live videos</source> | 1879 | <source>Live videos</source> |
1913 | <target state="new">Live videos</target> | 1880 | <target state="new">Live videos</target> |
1914 | 1881 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">29</context></context-group> | |
1915 | 1882 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">64</context></context-group> | |
1916 | 1883 | <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> | |
1917 | 1884 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">158</context></context-group> | |
1918 | <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/+search/search-filters.component.ts</context><context context-type="linenumber">64</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">158</context></context-group></trans-unit> | 1885 | </trans-unit> |
1919 | <trans-unit id="2392481201920342009" datatype="html"> | 1886 | <trans-unit id="2392481201920342009" datatype="html"> |
1920 | <source>VOD videos</source> | 1887 | <source>VOD videos</source> |
1921 | <target state="new">VOD videos</target> | 1888 | <target state="new">VOD videos</target> |
1922 | 1889 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">34</context></context-group> | |
1923 | 1890 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">60</context></context-group> | |
1924 | 1891 | <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> | |
1925 | 1892 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">164</context></context-group> | |
1926 | <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/+search/search-filters.component.ts</context><context context-type="linenumber">60</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">164</context></context-group></trans-unit> | 1893 | </trans-unit> |
1927 | <trans-unit id="7970752988844762769"> | 1894 | <trans-unit id="7970752988844762769"> |
1928 | <source>Published date</source> | 1895 | <source>Published date</source> |
1929 | <target>تاریخ انتشار</target> | 1896 | <target>تاریخ انتشار</target> |
@@ -2113,14 +2080,14 @@ The link will expire within 1 hour.</target> | |||
2113 | <trans-unit id="6179532215548637839" datatype="html"> | 2080 | <trans-unit id="6179532215548637839" datatype="html"> |
2114 | <source>extensions</source> | 2081 | <source>extensions</source> |
2115 | <target state="new">extensions</target> | 2082 | <target state="new">extensions</target> |
2116 | 2083 | <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> | |
2117 | <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> | 2084 | </trans-unit> |
2118 | <trans-unit id="8054921481196967348" datatype="html"> | 2085 | <trans-unit id="8054921481196967348" datatype="html"> |
2119 | <source>This image is too large.</source> | 2086 | <source>This image is too large.</source> |
2120 | <target state="new">This image is too large.</target> | 2087 | <target state="new">This image is too large.</target> |
2121 | 2088 | <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> | |
2122 | 2089 | <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> | |
2123 | <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> | 2090 | </trans-unit> |
2124 | <trans-unit id="6259523075362402245" datatype="html"> | 2091 | <trans-unit id="6259523075362402245" datatype="html"> |
2125 | <source>Upload a new banner</source> | 2092 | <source>Upload a new banner</source> |
2126 | <target state="new">Upload a new banner</target> | 2093 | <target state="new">Upload a new banner</target> |
@@ -2145,13 +2112,13 @@ The link will expire within 1 hour.</target> | |||
2145 | <trans-unit id="3220184757632006830" datatype="html"> | 2112 | <trans-unit id="3220184757632006830" datatype="html"> |
2146 | <source>Account avatar</source> | 2113 | <source>Account avatar</source> |
2147 | <target state="new">Account avatar</target> | 2114 | <target state="new">Account avatar</target> |
2148 | 2115 | <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> | |
2149 | <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> | 2116 | </trans-unit> |
2150 | <trans-unit id="1138964882426023395" datatype="html"> | 2117 | <trans-unit id="1138964882426023395" datatype="html"> |
2151 | <source>Channel avatar</source> | 2118 | <source>Channel avatar</source> |
2152 | <target state="new">Channel avatar</target> | 2119 | <target state="new">Channel avatar</target> |
2153 | 2120 | <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> | |
2154 | <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> | 2121 | </trans-unit> |
2155 | <trans-unit id="1358902062258458923" datatype="html"> | 2122 | <trans-unit id="1358902062258458923" datatype="html"> |
2156 | <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> | 2123 | <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> |
2157 | <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> | 2124 | <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> |
@@ -2620,8 +2587,8 @@ The link will expire within 1 hour.</target> | |||
2620 | <trans-unit id="6161604372916832458" datatype="html"> | 2587 | <trans-unit id="6161604372916832458" datatype="html"> |
2621 | <source>Upload on hold</source> | 2588 | <source>Upload on hold</source> |
2622 | <target state="new">Upload on hold</target> | 2589 | <target state="new">Upload on hold</target> |
2623 | <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">167</context></context-group> | 2590 | |
2624 | </trans-unit> | 2591 | <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">174</context></context-group></trans-unit> |
2625 | <trans-unit id="285180972645018518" datatype="html"> | 2592 | <trans-unit id="285180972645018518" datatype="html"> |
2626 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2593 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2627 | <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> | 2594 | <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> |
@@ -3448,9 +3415,8 @@ The link will expire within 1 hour.</target> | |||
3448 | <trans-unit id="9160510009013134726" datatype="html"> | 3415 | <trans-unit id="9160510009013134726" datatype="html"> |
3449 | <source>Unfollow</source> | 3416 | <source>Unfollow</source> |
3450 | <target state="new">Unfollow</target> | 3417 | <target state="new">Unfollow</target> |
3451 | 3418 | <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> | |
3452 | 3419 | </trans-unit> | |
3453 | <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> | ||
3454 | <trans-unit id="8246779176913476983" datatype="html"> | 3420 | <trans-unit id="8246779176913476983" datatype="html"> |
3455 | <source>Open instance in a new tab</source> | 3421 | <source>Open instance in a new tab</source> |
3456 | <target state="new">Open instance in a new tab</target> | 3422 | <target state="new">Open instance in a new tab</target> |
@@ -3631,12 +3597,12 @@ The link will expire within 1 hour.</target> | |||
3631 | </trans-unit> | 3597 | </trans-unit> |
3632 | <trans-unit id="8461842260159597706" datatype="html"> | 3598 | <trans-unit id="8461842260159597706" datatype="html"> |
3633 | <source>Show</source> | 3599 | <source>Show</source> |
3634 | <target state="translated">نای</target> | 3600 | <target state="translated">نشا ن</target> |
3635 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.html</context><context context-type="linenumber">10</context></context-group> | 3601 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.html</context><context context-type="linenumber">10</context></context-group> |
3636 | </trans-unit> | 3602 | </trans-unit> |
3637 | <trans-unit id="8461609631969932886" datatype="html"> | 3603 | <trans-unit id="8461609631969932886" datatype="html"> |
3638 | <source>Hide</source> | 3604 | <source>Hide</source> |
3639 | <target state="translated">پنهان</target> | 3605 | <target state="translated">پنهان کردن</target> |
3640 | <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">115</context></context-group> | 3606 | <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">115</context></context-group> |
3641 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.html</context><context context-type="linenumber">11</context></context-group> | 3607 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.html</context><context context-type="linenumber">11</context></context-group> |
3642 | <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> | 3608 | <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> |
@@ -5064,8 +5030,8 @@ The link will expire within 1 hour.</target> | |||
5064 | <trans-unit id="2149300564474427551"> | 5030 | <trans-unit id="2149300564474427551"> |
5065 | <source>Administrator</source> | 5031 | <source>Administrator</source> |
5066 | <target>مدیر</target> | 5032 | <target>مدیر</target> |
5067 | 5033 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group> | |
5068 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group></trans-unit> | 5034 | </trans-unit> |
5069 | <trans-unit id="3171683206914962995" datatype="html"> | 5035 | <trans-unit id="3171683206914962995" datatype="html"> |
5070 | <source>Admin email</source> | 5036 | <source>Admin email</source> |
5071 | <target state="new">Admin email</target> | 5037 | <target state="new">Admin email</target> |
@@ -5635,8 +5601,6 @@ color: red; | |||
5635 | <context context-type="linenumber">66</context> | 5601 | <context context-type="linenumber">66</context> |
5636 | </context-group> | 5602 | </context-group> |
5637 | </trans-unit> | 5603 | </trans-unit> |
5638 | |||
5639 | |||
5640 | <trans-unit id="5723033003381016192" datatype="html"> | 5604 | <trans-unit id="5723033003381016192" datatype="html"> |
5641 | <source>Scope:</source> | 5605 | <source>Scope:</source> |
5642 | <target state="new">Scope:</target> | 5606 | <target state="new">Scope:</target> |
@@ -5645,7 +5609,6 @@ color: red; | |||
5645 | <context context-type="linenumber">81</context> | 5609 | <context context-type="linenumber">81</context> |
5646 | </context-group> | 5610 | </context-group> |
5647 | </trans-unit> | 5611 | </trans-unit> |
5648 | |||
5649 | <trans-unit id="8481241275509347668" datatype="html"> | 5612 | <trans-unit id="8481241275509347668" datatype="html"> |
5650 | <source>Local videos (this instance)</source> | 5613 | <source>Local videos (this instance)</source> |
5651 | <target state="new">Local videos (this instance)</target> | 5614 | <target state="new">Local videos (this instance)</target> |
@@ -5654,7 +5617,6 @@ color: red; | |||
5654 | <context context-type="linenumber">85</context> | 5617 | <context context-type="linenumber">85</context> |
5655 | </context-group> | 5618 | </context-group> |
5656 | </trans-unit> | 5619 | </trans-unit> |
5657 | |||
5658 | <trans-unit id="8383401711408398806" datatype="html"> | 5620 | <trans-unit id="8383401711408398806" datatype="html"> |
5659 | <source>Federated videos (this instance + followed instances)</source> | 5621 | <source>Federated videos (this instance + followed instances)</source> |
5660 | <target state="new">Federated videos (this instance + followed instances)</target> | 5622 | <target state="new">Federated videos (this instance + followed instances)</target> |
@@ -5679,7 +5641,6 @@ color: red; | |||
5679 | <context context-type="linenumber">99</context> | 5641 | <context context-type="linenumber">99</context> |
5680 | </context-group> | 5642 | </context-group> |
5681 | </trans-unit> | 5643 | </trans-unit> |
5682 | |||
5683 | <trans-unit id="1370537846415473089" datatype="html"> | 5644 | <trans-unit id="1370537846415473089" datatype="html"> |
5684 | <source>Categories:</source> | 5645 | <source>Categories:</source> |
5685 | <target state="new">Categories:</target> | 5646 | <target state="new">Categories:</target> |
@@ -6184,8 +6145,10 @@ color: red; | |||
6184 | 6145 | ||
6185 | </target> | 6146 | </target> |
6186 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">14</context></context-group> | 6147 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">14</context></context-group> |
6187 | </trans-unit><trans-unit id="8844610145426272276" datatype="html"> | 6148 | </trans-unit> |
6188 | <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> | 6149 | <trans-unit id="8844610145426272276" datatype="html"> |
6150 | <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> | ||
6151 | <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> | ||
6189 | <context-group purpose="location"> | 6152 | <context-group purpose="location"> |
6190 | <context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context> | 6153 | <context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context> |
6191 | <context context-type="linenumber">18,19</context> | 6154 | <context context-type="linenumber">18,19</context> |
@@ -7042,58 +7005,58 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7042 | <trans-unit id="784681343382270982" datatype="html"> | 7005 | <trans-unit id="784681343382270982" datatype="html"> |
7043 | <source>Remove this filter</source> | 7006 | <source>Remove this filter</source> |
7044 | <target state="new">Remove this filter</target> | 7007 | <target state="new">Remove this filter</target> |
7045 | 7008 | <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> | |
7046 | <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> | 7009 | </trans-unit> |
7047 | <trans-unit id="5254305728396198887" datatype="html"> | 7010 | <trans-unit id="5254305728396198887" datatype="html"> |
7048 | <source>Sensitive content</source> | 7011 | <source>Sensitive content</source> |
7049 | <target state="new">Sensitive content</target> | 7012 | <target state="new">Sensitive content</target> |
7050 | 7013 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">115</context></context-group> | |
7051 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">115</context></context-group></trans-unit> | 7014 | </trans-unit> |
7052 | <trans-unit id="5590086849807274701" datatype="html"> | 7015 | <trans-unit id="5590086849807274701" datatype="html"> |
7053 | <source>Scope</source> | 7016 | <source>Scope</source> |
7054 | <target state="new">Scope</target> | 7017 | <target state="new">Scope</target> |
7055 | 7018 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">122</context></context-group> | |
7056 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">122</context></context-group></trans-unit> | 7019 | </trans-unit> |
7057 | <trans-unit id="5019568087038659501" datatype="html"> | 7020 | <trans-unit id="5019568087038659501" datatype="html"> |
7058 | <source>Federated</source> | 7021 | <source>Federated</source> |
7059 | <target state="new">Federated</target> | 7022 | <target state="new">Federated</target> |
7060 | 7023 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">124</context></context-group> | |
7061 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7024 | </trans-unit> |
7062 | <trans-unit id="1949800099101277248" datatype="html"> | 7025 | <trans-unit id="1949800099101277248" datatype="html"> |
7063 | <source>Languages</source> | 7026 | <source>Languages</source> |
7064 | <target state="new">Languages</target> | 7027 | <target state="new">Languages</target> |
7065 | 7028 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">132</context></context-group> | |
7066 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">132</context></context-group></trans-unit> | 7029 | </trans-unit> |
7067 | <trans-unit id="1902100407096396858" datatype="html"> | 7030 | <trans-unit id="1902100407096396858" datatype="html"> |
7068 | <source>Categories</source> | 7031 | <source>Categories</source> |
7069 | <target state="new">Categories</target> | 7032 | <target state="new">Categories</target> |
7070 | 7033 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">141</context></context-group> | |
7071 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">141</context></context-group></trans-unit> | 7034 | </trans-unit> |
7072 | <trans-unit id="3599150758014724057" datatype="html"> | 7035 | <trans-unit id="3599150758014724057" datatype="html"> |
7073 | <source>All videos</source> | 7036 | <source>All videos</source> |
7074 | <target state="new">All videos</target> | 7037 | <target state="new">All videos</target> |
7075 | 7038 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">150</context></context-group> | |
7076 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">150</context></context-group></trans-unit> | 7039 | </trans-unit> |
7077 | <trans-unit id="8466337030143068285" datatype="html"> | 7040 | <trans-unit id="8466337030143068285" datatype="html"> |
7078 | <source>Blurred</source> | 7041 | <source>Blurred</source> |
7079 | <target state="new">Blurred</target> | 7042 | <target state="new">Blurred</target> |
7080 | 7043 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">225</context></context-group> | |
7081 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">225</context></context-group></trans-unit> | 7044 | </trans-unit> |
7082 | <trans-unit id="7054829409324166420" datatype="html"> | 7045 | <trans-unit id="7054829409324166420" datatype="html"> |
7083 | <source>hidden</source> | 7046 | <source>hidden</source> |
7084 | <target state="new">hidden</target> | 7047 | <target state="new">hidden</target> |
7085 | 7048 | <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> | |
7086 | <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> | 7049 | </trans-unit> |
7087 | <trans-unit id="5766954855630346873" datatype="html"> | 7050 | <trans-unit id="5766954855630346873" datatype="html"> |
7088 | <source>blurred</source> | 7051 | <source>blurred</source> |
7089 | <target state="new">blurred</target> | 7052 | <target state="new">blurred</target> |
7090 | 7053 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">232</context></context-group> | |
7091 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">232</context></context-group></trans-unit> | 7054 | </trans-unit> |
7092 | <trans-unit id="1833483831276078393" datatype="html"> | 7055 | <trans-unit id="1833483831276078393" datatype="html"> |
7093 | <source>displayed</source> | 7056 | <source>displayed</source> |
7094 | <target state="new">displayed</target> | 7057 | <target state="new">displayed</target> |
7095 | 7058 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">234</context></context-group> | |
7096 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">234</context></context-group></trans-unit> | 7059 | </trans-unit> |
7097 | <trans-unit id="4856575356061361269" datatype="html"> | 7060 | <trans-unit id="4856575356061361269" datatype="html"> |
7098 | <source><x id="PH"/> direct account followers </source> | 7061 | <source><x id="PH"/> direct account followers </source> |
7099 | <target state="new"> | 7062 | <target state="new"> |
@@ -8167,7 +8130,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8167 | </trans-unit> | 8130 | </trans-unit> |
8168 | <trans-unit id="8564701209009684429" datatype="html"> | 8131 | <trans-unit id="8564701209009684429" datatype="html"> |
8169 | <source>Federation</source> | 8132 | <source>Federation</source> |
8170 | <target state="new">Federation</target> | 8133 | <target state="translated">فدراسیون</target> |
8171 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</context></context-group> | 8134 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</context></context-group> |
8172 | </trans-unit> | 8135 | </trans-unit> |
8173 | <trans-unit id="3767259920053407667" datatype="html"> | 8136 | <trans-unit id="3767259920053407667" datatype="html"> |
@@ -8178,7 +8141,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8178 | </trans-unit> | 8141 | </trans-unit> |
8179 | <trans-unit id="4209525355702493436" datatype="html"> | 8142 | <trans-unit id="4209525355702493436" datatype="html"> |
8180 | <source>Ban</source> | 8143 | <source>Ban</source> |
8181 | <target state="new">Ban</target> | 8144 | <target state="translated">مسدود کردن</target> |
8182 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">91</context></context-group> | 8145 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">91</context></context-group> |
8183 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group> | 8146 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group> |
8184 | </trans-unit> | 8147 | </trans-unit> |
@@ -8629,7 +8592,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8629 | </trans-unit> | 8592 | </trans-unit> |
8630 | <trans-unit id="5674286808255988565" datatype="html"> | 8593 | <trans-unit id="5674286808255988565" datatype="html"> |
8631 | <source>Create</source> | 8594 | <source>Create</source> |
8632 | <target state="translated">ی</target> | 8595 | <target state="translated">اتن</target> |
8633 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">103</context></context-group> | 8596 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">103</context></context-group> |
8634 | <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">89</context></context-group> | 8597 | <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">89</context></context-group> |
8635 | </trans-unit> | 8598 | </trans-unit> |
@@ -8793,9 +8756,9 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8793 | <trans-unit id="7916647920967632052" datatype="html"> | 8756 | <trans-unit id="7916647920967632052" datatype="html"> |
8794 | <source>max size</source> | 8757 | <source>max size</source> |
8795 | <target state="new">max size</target> | 8758 | <target state="new">max size</target> |
8796 | 8759 | <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> | |
8797 | 8760 | <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> | |
8798 | <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> | 8761 | </trans-unit> |
8799 | <trans-unit id="6489275254908395777" datatype="html"> | 8762 | <trans-unit id="6489275254908395777" datatype="html"> |
8800 | <source>Maximize editor</source> | 8763 | <source>Maximize editor</source> |
8801 | <target state="new">Maximize editor</target> | 8764 | <target state="new">Maximize editor</target> |
@@ -8848,38 +8811,38 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8848 | <trans-unit id="7709367721354853232" datatype="html"> | 8811 | <trans-unit id="7709367721354853232" datatype="html"> |
8849 | <source>Focus the search bar</source> | 8812 | <source>Focus the search bar</source> |
8850 | <target state="new">Focus the search bar</target> | 8813 | <target state="new">Focus the search bar</target> |
8851 | 8814 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">270</context></context-group> | |
8852 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">270</context></context-group></trans-unit> | 8815 | </trans-unit> |
8853 | <trans-unit id="4049262826107502276" datatype="html"> | 8816 | <trans-unit id="4049262826107502276" datatype="html"> |
8854 | <source>Toggle the left menu</source> | 8817 | <source>Toggle the left menu</source> |
8855 | <target state="new">Toggle the left menu</target> | 8818 | <target state="new">Toggle the left menu</target> |
8856 | 8819 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">275</context></context-group> | |
8857 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">275</context></context-group></trans-unit> | 8820 | </trans-unit> |
8858 | <trans-unit id="5409372033656550095" datatype="html"> | 8821 | <trans-unit id="5409372033656550095" datatype="html"> |
8859 | <source>Go to the discover videos page</source> | 8822 | <source>Go to the discover videos page</source> |
8860 | <target state="new">Go to the discover videos page</target> | 8823 | <target state="new">Go to the discover videos page</target> |
8861 | 8824 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">280</context></context-group> | |
8862 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">280</context></context-group></trans-unit> | 8825 | </trans-unit> |
8863 | <trans-unit id="4278050445961255445" datatype="html"> | 8826 | <trans-unit id="4278050445961255445" datatype="html"> |
8864 | <source>Go to the trending videos page</source> | 8827 | <source>Go to the trending videos page</source> |
8865 | <target state="new">Go to the trending videos page</target> | 8828 | <target state="new">Go to the trending videos page</target> |
8866 | 8829 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">285</context></context-group> | |
8867 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">285</context></context-group></trans-unit> | 8830 | </trans-unit> |
8868 | <trans-unit id="3242234958443825475" datatype="html"> | 8831 | <trans-unit id="3242234958443825475" datatype="html"> |
8869 | <source>Go to the recently added videos page</source> | 8832 | <source>Go to the recently added videos page</source> |
8870 | <target state="new">Go to the recently added videos page</target> | 8833 | <target state="new">Go to the recently added videos page</target> |
8871 | 8834 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">290</context></context-group> | |
8872 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">290</context></context-group></trans-unit> | 8835 | </trans-unit> |
8873 | <trans-unit id="2887122197778293919" datatype="html"> | 8836 | <trans-unit id="2887122197778293919" datatype="html"> |
8874 | <source>Go to the local videos page</source> | 8837 | <source>Go to the local videos page</source> |
8875 | <target state="new">Go to the local videos page</target> | 8838 | <target state="new">Go to the local videos page</target> |
8876 | 8839 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">295</context></context-group> | |
8877 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">295</context></context-group></trans-unit> | 8840 | </trans-unit> |
8878 | <trans-unit id="8009065619559214982" datatype="html"> | 8841 | <trans-unit id="8009065619559214982" datatype="html"> |
8879 | <source>Go to the videos upload page</source> | 8842 | <source>Go to the videos upload page</source> |
8880 | <target state="new">Go to the videos upload page</target> | 8843 | <target state="new">Go to the videos upload page</target> |
8881 | 8844 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">300</context></context-group> | |
8882 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">300</context></context-group></trans-unit> | 8845 | </trans-unit> |
8883 | <trans-unit id="3779524668013120370" datatype="html"> | 8846 | <trans-unit id="3779524668013120370" datatype="html"> |
8884 | <source>Go to my subscriptions</source> | 8847 | <source>Go to my subscriptions</source> |
8885 | <target state="new">Go to my subscriptions</target> | 8848 | <target state="new">Go to my subscriptions</target> |
@@ -9001,41 +8964,41 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9001 | <trans-unit id="6048892649018070225" datatype="html"> | 8964 | <trans-unit id="6048892649018070225" datatype="html"> |
9002 | <source>Today</source> | 8965 | <source>Today</source> |
9003 | <target state="new">Today</target> | 8966 | <target state="new">Today</target> |
9004 | 8967 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">41</context></context-group> | |
9005 | 8968 | <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> | |
9006 | 8969 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">123</context></context-group> | |
9007 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">41</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">123</context></context-group></trans-unit> | 8970 | </trans-unit> |
9008 | <trans-unit id="4498682414491138092" datatype="html"> | 8971 | <trans-unit id="4498682414491138092" datatype="html"> |
9009 | <source>Yesterday</source> | 8972 | <source>Yesterday</source> |
9010 | <target state="new">Yesterday</target> | 8973 | <target state="new">Yesterday</target> |
9011 | 8974 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">124</context></context-group> | |
9012 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 8975 | </trans-unit> |
9013 | <trans-unit id="5073473933031004097" datatype="html"> | 8976 | <trans-unit id="5073473933031004097" datatype="html"> |
9014 | <source>This week</source> | 8977 | <source>This week</source> |
9015 | <target state="new">This week</target> | 8978 | <target state="new">This week</target> |
9016 | 8979 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">125</context></context-group> | |
9017 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> | 8980 | </trans-unit> |
9018 | <trans-unit id="842657237693374355" datatype="html"> | 8981 | <trans-unit id="842657237693374355" datatype="html"> |
9019 | <source>This month</source> | 8982 | <source>This month</source> |
9020 | <target state="new">This month</target> | 8983 | <target state="new">This month</target> |
9021 | 8984 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">126</context></context-group> | |
9022 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 8985 | </trans-unit> |
9023 | <trans-unit id="4463380307954693363" datatype="html"> | 8986 | <trans-unit id="4463380307954693363" datatype="html"> |
9024 | <source>Last month</source> | 8987 | <source>Last month</source> |
9025 | <target state="new">Last month</target> | 8988 | <target state="new">Last month</target> |
9026 | 8989 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">127</context></context-group> | |
9027 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | 8990 | </trans-unit> |
9028 | <trans-unit id="7473676707373218484" datatype="html"> | 8991 | <trans-unit id="7473676707373218484" datatype="html"> |
9029 | <source>Older</source> | 8992 | <source>Older</source> |
9030 | <target state="new">Older</target> | 8993 | <target state="new">Older</target> |
9031 | 8994 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">128</context></context-group> | |
9032 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> | 8995 | </trans-unit> |
9033 | <trans-unit id="5036991421517255667" datatype="html"> | 8996 | <trans-unit id="5036991421517255667" datatype="html"> |
9034 | <source>Cannot load more videos. Try again later.</source> | 8997 | <source>Cannot load more videos. Try again later.</source> |
9035 | <target state="new">Cannot load more videos. Try again later.</target> | 8998 | <target state="new">Cannot load more videos. Try again later.</target> |
9036 | 8999 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">225</context></context-group> | |
9037 | 9000 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">127</context></context-group> | |
9038 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">225</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">127</context></context-group></trans-unit> | 9001 | </trans-unit> |
9039 | <trans-unit id="4873149362496451858" datatype="html"> | 9002 | <trans-unit id="4873149362496451858" datatype="html"> |
9040 | <source>Last 7 days</source> | 9003 | <source>Last 7 days</source> |
9041 | <target state="new">Last 7 days</target> | 9004 | <target state="new">Last 7 days</target> |
@@ -10204,9 +10167,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10204 | <trans-unit id="8929218224642530466" datatype="html"> | 10167 | <trans-unit id="8929218224642530466" datatype="html"> |
10205 | <source>Displayed</source> | 10168 | <source>Displayed</source> |
10206 | <target state="new">Displayed</target> | 10169 | <target state="new">Displayed</target> |
10207 | 10170 | <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> | |
10208 | 10171 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">227</context></context-group> | |
10209 | <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">227</context></context-group></trans-unit> | 10172 | </trans-unit> |
10210 | <trans-unit id="6291055174438137560" datatype="html"> | 10173 | <trans-unit id="6291055174438137560" datatype="html"> |
10211 | <source>~ 1 minute</source> | 10174 | <source>~ 1 minute</source> |
10212 | <target state="new">~ 1 minute</target> | 10175 | <target state="new">~ 1 minute</target> |
@@ -10243,18 +10206,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10243 | <target state="new"> | 10206 | <target state="new"> |
10244 | <x id="PH"/> (channel page) | 10207 | <x id="PH"/> (channel page) |
10245 | </target> | 10208 | </target> |
10246 | 10209 | <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">19</context></context-group> | |
10247 | 10210 | <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> | |
10248 | 10211 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">113</context></context-group> | |
10249 | <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">19</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">113</context></context-group></trans-unit> | 10212 | </trans-unit> |
10250 | <trans-unit id="1209500590333005801" datatype="html"> | 10213 | <trans-unit id="1209500590333005801" datatype="html"> |
10251 | <source><x id="PH"/> (account page) </source> | 10214 | <source><x id="PH"/> (account page) </source> |
10252 | <target state="new"> | 10215 | <target state="new"> |
10253 | <x id="PH"/> (account page) | 10216 | <x id="PH"/> (account page) |
10254 | </target> | 10217 | </target> |
10255 | 10218 | <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> | |
10256 | 10219 | <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> | |
10257 | <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">39</context></context-group></trans-unit> | 10220 | </trans-unit> |
10258 | <trans-unit id="2516633974298697807" datatype="html"> | 10221 | <trans-unit id="2516633974298697807" datatype="html"> |
10259 | <source>Emphasis</source> | 10222 | <source>Emphasis</source> |
10260 | <target state="new">Emphasis</target> | 10223 | <target state="new">Emphasis</target> |
@@ -10686,8 +10649,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10686 | <trans-unit id="4968151111061046122" datatype="html"> | 10649 | <trans-unit id="4968151111061046122" datatype="html"> |
10687 | <source>Moderator</source> | 10650 | <source>Moderator</source> |
10688 | <target state="new">Moderator</target> | 10651 | <target state="new">Moderator</target> |
10689 | 10652 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group> | |
10690 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group></trans-unit> | 10653 | </trans-unit> |
10691 | <trans-unit id="2279527393438260622" datatype="html"> | 10654 | <trans-unit id="2279527393438260622" datatype="html"> |
10692 | <source>Search videos, playlists, channels…</source> | 10655 | <source>Search videos, playlists, channels…</source> |
10693 | <target state="new">Search videos, playlists, channels…</target> | 10656 | <target state="new">Search videos, playlists, channels…</target> |
@@ -11238,35 +11201,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11238 | <trans-unit id="3284171506518522275" datatype="html"> | 11201 | <trans-unit id="3284171506518522275" datatype="html"> |
11239 | <source>Your video was uploaded to your account and is private.</source> | 11202 | <source>Your video was uploaded to your account and is private.</source> |
11240 | <target state="new">Your video was uploaded to your account and is private.</target> | 11203 | <target state="new">Your video was uploaded to your account and is private.</target> |
11241 | <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">118</context></context-group> | 11204 | |
11242 | </trans-unit> | 11205 | <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">125</context></context-group></trans-unit> |
11243 | <trans-unit id="5699822024600815733" datatype="html"> | 11206 | <trans-unit id="5699822024600815733" datatype="html"> |
11244 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 11207 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
11245 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> | 11208 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> |
11246 | <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">119</context></context-group> | 11209 | |
11247 | </trans-unit> | 11210 | <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> |
11248 | <trans-unit id="1219739004043110649" datatype="html"> | 11211 | <trans-unit id="1219739004043110649" datatype="html"> |
11249 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 11212 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
11250 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> | 11213 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> |
11251 | <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">121</context></context-group> | 11214 | |
11252 | </trans-unit> | 11215 | <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">128</context></context-group></trans-unit> |
11253 | <trans-unit id="6932865105766151309" datatype="html"> | 11216 | <trans-unit id="6932865105766151309" datatype="html"> |
11254 | <source>Upload</source> | 11217 | <source>Upload</source> |
11255 | <target state="new">Upload</target> | 11218 | <target state="new">Upload</target> |
11256 | <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">227</context></context-group> | 11219 | |
11257 | </trans-unit> | 11220 | <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">234</context></context-group></trans-unit> |
11258 | <trans-unit id="8278735427925094503" datatype="html"> | 11221 | <trans-unit id="8278735427925094503" datatype="html"> |
11259 | <source>Upload <x id="PH"/> </source> | 11222 | <source>Upload <x id="PH"/> </source> |
11260 | <target state="new">Upload | 11223 | <target state="new">Upload |
11261 | <x id="PH"/> | 11224 | <x id="PH"/> |
11262 | </target> | 11225 | </target> |
11263 | <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">229</context></context-group> | 11226 | |
11264 | </trans-unit> | 11227 | <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">236</context></context-group></trans-unit> |
11265 | <trans-unit id="5981816353437801748"> | 11228 | <trans-unit id="5981816353437801748"> |
11266 | <source>Video published.</source> | 11229 | <source>Video published.</source> |
11267 | <target>ویدئو انتشاریافت</target> | 11230 | <target>ویدئو انتشاریافت</target> |
11268 | <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">251</context></context-group> | 11231 | |
11269 | </trans-unit> | 11232 | <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">258</context></context-group></trans-unit> |
11270 | <trans-unit id="764164089183618119" datatype="html"> | 11233 | <trans-unit id="764164089183618119" datatype="html"> |
11271 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 11234 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
11272 | <target state="new">You have unsaved changes! If you leave, your changes will be lost.</target> | 11235 | <target state="new">You have unsaved changes! If you leave, your changes will be lost.</target> |
diff --git a/client/src/locale/angular.fi-FI.xlf b/client/src/locale/angular.fi-FI.xlf index 8cee9bed7..922b9d490 100644 --- a/client/src/locale/angular.fi-FI.xlf +++ b/client/src/locale/angular.fi-FI.xlf | |||
@@ -393,7 +393,7 @@ | |||
393 | <source>video</source> | 393 | <source>video</source> |
394 | <target state="new">video</target> | 394 | <target state="new">video</target> |
395 | 395 | ||
396 | <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">294</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="6438815964972582865" datatype="html"> | 396 | <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">301</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="6438815964972582865" datatype="html"> |
397 | <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> | 397 | <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> |
398 | 398 | ||
399 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> | 399 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> |
@@ -455,10 +455,10 @@ | |||
455 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> | 455 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> |
456 | <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> | 456 | <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> |
457 | 457 | ||
458 | <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">330</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> | 458 | <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">337</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> |
459 | <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> | 459 | <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> |
460 | 460 | ||
461 | <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">349</context></context-group></trans-unit><trans-unit id="5235042777215655908" datatype="html"> | 461 | <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">356</context></context-group></trans-unit><trans-unit id="5235042777215655908" datatype="html"> |
462 | <source>subtitles</source><target state="new">subtitles</target> | 462 | <source>subtitles</source><target state="new">subtitles</target> |
463 | 463 | ||
464 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> | 464 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> |
@@ -468,7 +468,7 @@ | |||
468 | Peruuta | 468 | Peruuta |
469 | </target> | 469 | </target> |
470 | 470 | ||
471 | <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">48</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> | 471 | <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">48</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">23</context></context-group></trans-unit> |
472 | <trans-unit id="3099741642167775297"> | 472 | <trans-unit id="3099741642167775297"> |
473 | <source>Download</source> | 473 | <source>Download</source> |
474 | <target>Lataa</target> | 474 | <target>Lataa</target> |
@@ -2417,7 +2417,7 @@ The link will expire within 1 hour.</target> | |||
2417 | <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"> | 2417 | <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"> |
2418 | <source>Upload on hold</source><target state="new">Upload on hold</target> | 2418 | <source>Upload on hold</source><target state="new">Upload on hold</target> |
2419 | 2419 | ||
2420 | <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">167</context></context-group></trans-unit> | 2420 | <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">174</context></context-group></trans-unit> |
2421 | <trans-unit id="285180972645018518" datatype="html"> | 2421 | <trans-unit id="285180972645018518" datatype="html"> |
2422 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2422 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2423 | <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> | 2423 | <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> |
@@ -10255,20 +10255,20 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10255 | <source>Your video was uploaded to your account and is private.</source> | 10255 | <source>Your video was uploaded to your account and is private.</source> |
10256 | <target state="new">Your video was uploaded to your account and is private.</target> | 10256 | <target state="new">Your video was uploaded to your account and is private.</target> |
10257 | 10257 | ||
10258 | <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">118</context></context-group></trans-unit> | 10258 | <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">125</context></context-group></trans-unit> |
10259 | <trans-unit id="5699822024600815733" datatype="html"> | 10259 | <trans-unit id="5699822024600815733" datatype="html"> |
10260 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10260 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10261 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> | 10261 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> |
10262 | 10262 | ||
10263 | <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">119</context></context-group></trans-unit> | 10263 | <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> |
10264 | <trans-unit id="1219739004043110649"> | 10264 | <trans-unit id="1219739004043110649"> |
10265 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10265 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10266 | <target>Videota ei ole vielä ladattu, haluatko varmasti poistua sivulta?</target> | 10266 | <target>Videota ei ole vielä ladattu, haluatko varmasti poistua sivulta?</target> |
10267 | 10267 | ||
10268 | <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">121</context></context-group></trans-unit><trans-unit id="6932865105766151309" datatype="html"> | 10268 | <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">128</context></context-group></trans-unit><trans-unit id="6932865105766151309" datatype="html"> |
10269 | <source>Upload</source><target state="new">Upload</target> | 10269 | <source>Upload</source><target state="new">Upload</target> |
10270 | 10270 | ||
10271 | <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">227</context></context-group></trans-unit> | 10271 | <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">234</context></context-group></trans-unit> |
10272 | <trans-unit id="8278735427925094503"> | 10272 | <trans-unit id="8278735427925094503"> |
10273 | <source>Upload | 10273 | <source>Upload |
10274 | <x id="PH"/> | 10274 | <x id="PH"/> |
@@ -10277,13 +10277,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10277 | <x id="PH"/> | 10277 | <x id="PH"/> |
10278 | </target> | 10278 | </target> |
10279 | 10279 | ||
10280 | <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">229</context></context-group></trans-unit> | 10280 | <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">236</context></context-group></trans-unit> |
10281 | 10281 | ||
10282 | <trans-unit id="5981816353437801748"> | 10282 | <trans-unit id="5981816353437801748"> |
10283 | <source>Video published.</source> | 10283 | <source>Video published.</source> |
10284 | <target>Video julkaistu.</target> | 10284 | <target>Video julkaistu.</target> |
10285 | 10285 | ||
10286 | <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">251</context></context-group></trans-unit> | 10286 | <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">258</context></context-group></trans-unit> |
10287 | 10287 | ||
10288 | 10288 | ||
10289 | <trans-unit id="764164089183618119"> | 10289 | <trans-unit id="764164089183618119"> |
diff --git a/client/src/locale/angular.fr-FR.xlf b/client/src/locale/angular.fr-FR.xlf index e619faaaa..bfb6b1a23 100644 --- a/client/src/locale/angular.fr-FR.xlf +++ b/client/src/locale/angular.fr-FR.xlf | |||
@@ -39,7 +39,7 @@ | |||
39 | </trans-unit> | 39 | </trans-unit> |
40 | <trans-unit id="506794214492992969" datatype="html"> | 40 | <trans-unit id="506794214492992969" datatype="html"> |
41 | <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> | 41 | <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> |
42 | <target state="translated"><x id="START_LINK"/>Un nouvel abus vidéo<x id="START_LINK"/> a été créé sur la vidéo <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></target> | 42 | <target state="translated"><x id="START_LINK"/>Un nouvel abus vidéo<x id="CLOSE_LINK"/> a été créé sur la vidéo <x id="START_LINK_1"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></target> |
43 | <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> | 43 | <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> |
44 | </trans-unit> | 44 | </trans-unit> |
45 | <trans-unit id="3487882822536102372" datatype="html"> | 45 | <trans-unit id="3487882822536102372" datatype="html"> |
@@ -255,9 +255,9 @@ | |||
255 | <trans-unit id="1006562256968398209" datatype="html"> | 255 | <trans-unit id="1006562256968398209" datatype="html"> |
256 | <source>video</source> | 256 | <source>video</source> |
257 | <target state="translated">vidéo</target> | 257 | <target state="translated">vidéo</target> |
258 | <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">294</context></context-group> | 258 | |
259 | <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> | 259 | |
260 | </trans-unit> | 260 | <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">301</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> |
261 | <trans-unit id="6438815964972582865" datatype="html"> | 261 | <trans-unit id="6438815964972582865" datatype="html"> |
262 | <source>The following link contains a private token and should not be shared with anyone.</source> | 262 | <source>The following link contains a private token and should not be shared with anyone.</source> |
263 | <target state="translated">Le lien suivant contient un jeton privé et ne doit être partagé avec personne.</target> | 263 | <target state="translated">Le lien suivant contient un jeton privé et ne doit être partagé avec personne.</target> |
@@ -329,13 +329,13 @@ | |||
329 | <trans-unit id="6995024616159044376" datatype="html"> | 329 | <trans-unit id="6995024616159044376" datatype="html"> |
330 | <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> | 330 | <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> |
331 | <target state="translated">Votre quota 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> | 331 | <target state="translated">Votre quota 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> |
332 | <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">330</context></context-group> | 332 | |
333 | </trans-unit> | 333 | <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">337</context></context-group></trans-unit> |
334 | <trans-unit id="7873395933409147217" datatype="html"> | 334 | <trans-unit id="7873395933409147217" datatype="html"> |
335 | <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> | 335 | <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> |
336 | <target state="translated">Votre quota journalier 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="quotaUsedDailyBytes"/>, quota : <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> | 336 | <target state="translated">Votre quota journalier 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="quotaUsedDailyBytes"/>, quota : <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> |
337 | <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">349</context></context-group> | 337 | |
338 | </trans-unit> | 338 | <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">356</context></context-group></trans-unit> |
339 | <trans-unit id="5235042777215655908" datatype="html"> | 339 | <trans-unit id="5235042777215655908" datatype="html"> |
340 | <source>subtitles</source> | 340 | <source>subtitles</source> |
341 | <target state="translated">sous-titres</target> | 341 | <target state="translated">sous-titres</target> |
@@ -346,9 +346,9 @@ | |||
346 | <target> | 346 | <target> |
347 | Annuler | 347 | Annuler |
348 | </target> | 348 | </target> |
349 | <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">48</context></context-group> | 349 | |
350 | <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> | 350 | |
351 | </trans-unit> | 351 | <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">48</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">23</context></context-group></trans-unit> |
352 | <trans-unit id="3099741642167775297"> | 352 | <trans-unit id="3099741642167775297"> |
353 | <source>Download</source> | 353 | <source>Download</source> |
354 | <target>Télécharger</target> | 354 | <target>Télécharger</target> |
@@ -504,7 +504,7 @@ | |||
504 | </trans-unit> | 504 | </trans-unit> |
505 | <trans-unit id="3044142083883783523"> | 505 | <trans-unit id="3044142083883783523"> |
506 | <source>Updated <x id="INTERPOLATION"/></source> | 506 | <source>Updated <x id="INTERPOLATION"/></source> |
507 | <target>Mettre à jour <x id="INTERPOLATION"/></target> | 507 | <target>Mit à jour <x id="INTERPOLATION"/></target> |
508 | <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> | 508 | <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> |
509 | </trans-unit> | 509 | </trans-unit> |
510 | <trans-unit id="5643561794785412000"> | 510 | <trans-unit id="5643561794785412000"> |
@@ -850,7 +850,7 @@ | |||
850 | </trans-unit> | 850 | </trans-unit> |
851 | <trans-unit id="8726138323871139597" datatype="html"> | 851 | <trans-unit id="8726138323871139597" datatype="html"> |
852 | <source>Following</source> | 852 | <source>Following</source> |
853 | <target state="translated">Suivant</target> | 853 | <target state="translated">Suivre</target> |
854 | <context-group purpose="location"> | 854 | <context-group purpose="location"> |
855 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | 855 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> |
856 | <context context-type="linenumber">29</context> | 856 | <context context-type="linenumber">29</context> |
@@ -914,10 +914,10 @@ | |||
914 | <trans-unit id="2392488717875840729" datatype="html"> | 914 | <trans-unit id="2392488717875840729" datatype="html"> |
915 | <source>User</source> | 915 | <source>User</source> |
916 | <target state="translated">Utilisateur·rice</target> | 916 | <target state="translated">Utilisateur·rice</target> |
917 | 917 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group> | |
918 | 918 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">27</context></context-group> | |
919 | 919 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group> | |
920 | <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">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group></trans-unit> | 920 | </trans-unit> |
921 | <trans-unit id="4209525355702493436"> | 921 | <trans-unit id="4209525355702493436"> |
922 | <source>Ban</source> | 922 | <source>Ban</source> |
923 | <target>Bannir</target> | 923 | <target>Bannir</target> |
@@ -1574,7 +1574,7 @@ The link will expire within 1 hour.</source> | |||
1574 | </trans-unit> | 1574 | </trans-unit> |
1575 | <trans-unit id="7922989125096435449" datatype="html"> | 1575 | <trans-unit id="7922989125096435449" datatype="html"> |
1576 | <source>Contact</source> | 1576 | <source>Contact</source> |
1577 | <target state="translated">Contactez</target> | 1577 | <target state="translated">Contact</target> |
1578 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">36</context></context-group> | 1578 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">36</context></context-group> |
1579 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">136</context></context-group> | 1579 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">136</context></context-group> |
1580 | </trans-unit> | 1580 | </trans-unit> |
@@ -2032,14 +2032,14 @@ The link will expire within 1 hour.</source> | |||
2032 | <trans-unit id="6179532215548637839" datatype="html"> | 2032 | <trans-unit id="6179532215548637839" datatype="html"> |
2033 | <source>extensions</source> | 2033 | <source>extensions</source> |
2034 | <target state="translated">les extensions</target> | 2034 | <target state="translated">les extensions</target> |
2035 | 2035 | <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> | |
2036 | <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> | 2036 | </trans-unit> |
2037 | <trans-unit id="8054921481196967348" datatype="html"> | 2037 | <trans-unit id="8054921481196967348" datatype="html"> |
2038 | <source>This image is too large.</source> | 2038 | <source>This image is too large.</source> |
2039 | <target state="translated">Cette image est trop grande.</target> | 2039 | <target state="translated">Cette image est trop grande.</target> |
2040 | 2040 | <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> | |
2041 | 2041 | <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> | |
2042 | <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> | 2042 | </trans-unit> |
2043 | <trans-unit id="6259523075362402245" datatype="html"> | 2043 | <trans-unit id="6259523075362402245" datatype="html"> |
2044 | <source>Upload a new banner</source> | 2044 | <source>Upload a new banner</source> |
2045 | <target state="translated">Téléverser une nouvelle bannière</target> | 2045 | <target state="translated">Téléverser une nouvelle bannière</target> |
@@ -2064,13 +2064,13 @@ The link will expire within 1 hour.</source> | |||
2064 | <trans-unit id="3220184757632006830" datatype="html"> | 2064 | <trans-unit id="3220184757632006830" datatype="html"> |
2065 | <source>Account avatar</source> | 2065 | <source>Account avatar</source> |
2066 | <target state="translated">Avatar du compte</target> | 2066 | <target state="translated">Avatar du compte</target> |
2067 | 2067 | <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> | |
2068 | <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> | 2068 | </trans-unit> |
2069 | <trans-unit id="1138964882426023395" datatype="html"> | 2069 | <trans-unit id="1138964882426023395" datatype="html"> |
2070 | <source>Channel avatar</source> | 2070 | <source>Channel avatar</source> |
2071 | <target state="translated">Avatar de la chaîne</target> | 2071 | <target state="translated">Avatar de la chaîne</target> |
2072 | 2072 | <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> | |
2073 | <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> | 2073 | </trans-unit> |
2074 | <trans-unit id="1358902062258458923" datatype="html"> | 2074 | <trans-unit id="1358902062258458923" datatype="html"> |
2075 | <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> | 2075 | <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> |
2076 | <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 avec le format Markdown<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> qui prend également en charge <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>les balises HTML PeerTube personnalisées<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> | 2076 | <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 avec le format Markdown<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> qui prend également en charge <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>les balises HTML PeerTube personnalisées<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> |
@@ -2521,8 +2521,8 @@ The link will expire within 1 hour.</source> | |||
2521 | <trans-unit id="6161604372916832458" datatype="html"> | 2521 | <trans-unit id="6161604372916832458" datatype="html"> |
2522 | <source>Upload on hold</source> | 2522 | <source>Upload on hold</source> |
2523 | <target state="translated">Téléversement en attente</target> | 2523 | <target state="translated">Téléversement en attente</target> |
2524 | <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">167</context></context-group> | 2524 | |
2525 | </trans-unit> | 2525 | <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">174</context></context-group></trans-unit> |
2526 | <trans-unit id="285180972645018518" datatype="html"> | 2526 | <trans-unit id="285180972645018518" datatype="html"> |
2527 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2527 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2528 | <target state="translated">Désolé, la fonction de téléchargement est désactivée pour votre compte. Si vous souhaitez ajouter des vidéos, un administrateur doit débloquer votre quota.</target> | 2528 | <target state="translated">Désolé, la fonction de téléchargement est désactivée pour votre compte. Si vous souhaitez ajouter des vidéos, un administrateur doit débloquer votre quota.</target> |
@@ -3309,9 +3309,8 @@ The link will expire within 1 hour.</source> | |||
3309 | <trans-unit id="9160510009013134726" datatype="html"> | 3309 | <trans-unit id="9160510009013134726" datatype="html"> |
3310 | <source>Unfollow</source> | 3310 | <source>Unfollow</source> |
3311 | <target state="translated">Arrêter de suivre</target> | 3311 | <target state="translated">Arrêter de suivre</target> |
3312 | 3312 | <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> | |
3313 | 3313 | </trans-unit> | |
3314 | <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> | ||
3315 | <trans-unit id="8246779176913476983" datatype="html"> | 3314 | <trans-unit id="8246779176913476983" datatype="html"> |
3316 | <source>Open instance in a new tab</source> | 3315 | <source>Open instance in a new tab</source> |
3317 | <target state="translated">Ouvrir l'instance dans une nouvelle fenêtre</target> | 3316 | <target state="translated">Ouvrir l'instance dans une nouvelle fenêtre</target> |
@@ -4842,8 +4841,8 @@ The link will expire within 1 hour.</source> | |||
4842 | <trans-unit id="2149300564474427551"> | 4841 | <trans-unit id="2149300564474427551"> |
4843 | <source>Administrator</source> | 4842 | <source>Administrator</source> |
4844 | <target>Administrateur</target> | 4843 | <target>Administrateur</target> |
4845 | 4844 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group> | |
4846 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group></trans-unit> | 4845 | </trans-unit> |
4847 | <trans-unit id="3171683206914962995"> | 4846 | <trans-unit id="3171683206914962995"> |
4848 | <source>Admin email</source> | 4847 | <source>Admin email</source> |
4849 | <target>Courriel de l'administrateur.ice</target> | 4848 | <target>Courriel de l'administrateur.ice</target> |
@@ -5407,8 +5406,6 @@ color: red; | |||
5407 | <context context-type="linenumber">66</context> | 5406 | <context context-type="linenumber">66</context> |
5408 | </context-group> | 5407 | </context-group> |
5409 | </trans-unit> | 5408 | </trans-unit> |
5410 | |||
5411 | |||
5412 | <trans-unit id="5723033003381016192" datatype="html"> | 5409 | <trans-unit id="5723033003381016192" datatype="html"> |
5413 | <source>Scope:</source> | 5410 | <source>Scope:</source> |
5414 | <target state="translated">Portée :</target> | 5411 | <target state="translated">Portée :</target> |
@@ -5417,7 +5414,6 @@ color: red; | |||
5417 | <context context-type="linenumber">81</context> | 5414 | <context context-type="linenumber">81</context> |
5418 | </context-group> | 5415 | </context-group> |
5419 | </trans-unit> | 5416 | </trans-unit> |
5420 | |||
5421 | <trans-unit id="8481241275509347668" datatype="html"> | 5417 | <trans-unit id="8481241275509347668" datatype="html"> |
5422 | <source>Local videos (this instance)</source> | 5418 | <source>Local videos (this instance)</source> |
5423 | <target state="translated">Vidéos locales (cette instance)</target> | 5419 | <target state="translated">Vidéos locales (cette instance)</target> |
@@ -5426,7 +5422,6 @@ color: red; | |||
5426 | <context context-type="linenumber">85</context> | 5422 | <context context-type="linenumber">85</context> |
5427 | </context-group> | 5423 | </context-group> |
5428 | </trans-unit> | 5424 | </trans-unit> |
5429 | |||
5430 | <trans-unit id="8383401711408398806" datatype="html"> | 5425 | <trans-unit id="8383401711408398806" datatype="html"> |
5431 | <source>Federated videos (this instance + followed instances)</source> | 5426 | <source>Federated videos (this instance + followed instances)</source> |
5432 | <target state="translated">Vidéos fédérées (cette instance + les instances suivies)</target> | 5427 | <target state="translated">Vidéos fédérées (cette instance + les instances suivies)</target> |
@@ -5451,7 +5446,6 @@ color: red; | |||
5451 | <context context-type="linenumber">99</context> | 5446 | <context context-type="linenumber">99</context> |
5452 | </context-group> | 5447 | </context-group> |
5453 | </trans-unit> | 5448 | </trans-unit> |
5454 | |||
5455 | <trans-unit id="1370537846415473089" datatype="html"> | 5449 | <trans-unit id="1370537846415473089" datatype="html"> |
5456 | <source>Categories:</source> | 5450 | <source>Categories:</source> |
5457 | <target state="translated">Catégories :</target> | 5451 | <target state="translated">Catégories :</target> |
@@ -6693,8 +6687,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6693 | <trans-unit id="784681343382270982" datatype="html"> | 6687 | <trans-unit id="784681343382270982" datatype="html"> |
6694 | <source>Remove this filter</source> | 6688 | <source>Remove this filter</source> |
6695 | <target state="translated">Supprimer ce filtre</target> | 6689 | <target state="translated">Supprimer ce filtre</target> |
6696 | 6690 | <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> | |
6697 | <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> | 6691 | </trans-unit> |
6698 | <trans-unit id="5254305728396198887" datatype="html"> | 6692 | <trans-unit id="5254305728396198887" datatype="html"> |
6699 | <source>Sensitive content</source> | 6693 | <source>Sensitive content</source> |
6700 | <target state="translated">Contenu sensible</target> | 6694 | <target state="translated">Contenu sensible</target> |
@@ -7187,7 +7181,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7187 | </trans-unit> | 7181 | </trans-unit> |
7188 | <trans-unit id="6018246591673612412" datatype="html"> | 7182 | <trans-unit id="6018246591673612412" datatype="html"> |
7189 | <source>Follow</source> | 7183 | <source>Follow</source> |
7190 | <target state="translated">Suit</target> | 7184 | <target state="translated">Suivre</target> |
7191 | <context-group purpose="location"> | 7185 | <context-group purpose="location"> |
7192 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> | 7186 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> |
7193 | <context context-type="linenumber">3</context> | 7187 | <context context-type="linenumber">3</context> |
@@ -8388,9 +8382,9 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8388 | <trans-unit id="7916647920967632052" datatype="html"> | 8382 | <trans-unit id="7916647920967632052" datatype="html"> |
8389 | <source>max size</source> | 8383 | <source>max size</source> |
8390 | <target state="translated">taille max</target> | 8384 | <target state="translated">taille max</target> |
8391 | 8385 | <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> | |
8392 | 8386 | <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> | |
8393 | <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> | 8387 | </trans-unit> |
8394 | <trans-unit id="6489275254908395777" datatype="html"> | 8388 | <trans-unit id="6489275254908395777" datatype="html"> |
8395 | <source>Maximize editor</source> | 8389 | <source>Maximize editor</source> |
8396 | <target state="translated">Agrandir l'éditeur</target> | 8390 | <target state="translated">Agrandir l'éditeur</target> |
@@ -9830,18 +9824,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9830 | <target state="translated"> | 9824 | <target state="translated"> |
9831 | <x id="PH"/> (page de la chaîne) | 9825 | <x id="PH"/> (page de la chaîne) |
9832 | </target> | 9826 | </target> |
9833 | 9827 | <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">19</context></context-group> | |
9834 | 9828 | <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> | |
9835 | 9829 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">113</context></context-group> | |
9836 | <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">19</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">113</context></context-group></trans-unit> | 9830 | </trans-unit> |
9837 | <trans-unit id="1209500590333005801" datatype="html"> | 9831 | <trans-unit id="1209500590333005801" datatype="html"> |
9838 | <source><x id="PH"/> (account page) </source> | 9832 | <source><x id="PH"/> (account page) </source> |
9839 | <target state="translated"> | 9833 | <target state="translated"> |
9840 | <x id="PH"/> (page du compte) | 9834 | <x id="PH"/> (page du compte) |
9841 | </target> | 9835 | </target> |
9842 | 9836 | <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> | |
9843 | 9837 | <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> | |
9844 | <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">39</context></context-group></trans-unit> | 9838 | </trans-unit> |
9845 | <trans-unit id="2516633974298697807"> | 9839 | <trans-unit id="2516633974298697807"> |
9846 | <source>Emphasis</source> | 9840 | <source>Emphasis</source> |
9847 | <target>L'emphase</target> | 9841 | <target>L'emphase</target> |
@@ -10239,8 +10233,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10239 | <trans-unit id="4968151111061046122"> | 10233 | <trans-unit id="4968151111061046122"> |
10240 | <source>Moderator</source> | 10234 | <source>Moderator</source> |
10241 | <target>Modérateur</target> | 10235 | <target>Modérateur</target> |
10242 | 10236 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group> | |
10243 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group></trans-unit> | 10237 | </trans-unit> |
10244 | <trans-unit id="2279527393438260622" datatype="html"> | 10238 | <trans-unit id="2279527393438260622" datatype="html"> |
10245 | <source>Search videos, playlists, channels…</source> | 10239 | <source>Search videos, playlists, channels…</source> |
10246 | <target state="translated">Recherchez des vidéos, des listes de lecture, des chaînes…</target> | 10240 | <target state="translated">Recherchez des vidéos, des listes de lecture, des chaînes…</target> |
@@ -10776,35 +10770,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10776 | <trans-unit id="3284171506518522275"> | 10770 | <trans-unit id="3284171506518522275"> |
10777 | <source>Your video was uploaded to your account and is private.</source> | 10771 | <source>Your video was uploaded to your account and is private.</source> |
10778 | <target>Votre vidéo a été téléversée sur votre compte et elle est privée.</target> | 10772 | <target>Votre vidéo a été téléversée sur votre compte et elle est privée.</target> |
10779 | <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">118</context></context-group> | 10773 | |
10780 | </trans-unit> | 10774 | <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">125</context></context-group></trans-unit> |
10781 | <trans-unit id="5699822024600815733"> | 10775 | <trans-unit id="5699822024600815733"> |
10782 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10776 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10783 | <target>Les données associées (étiquettes, description, etc.) seront par contre perdues ; êtes-vous sûr de vouloir quitter cette page ?</target> | 10777 | <target>Les données associées (étiquettes, description, etc.) seront par contre perdues ; êtes-vous sûr de vouloir quitter cette page ?</target> |
10784 | <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">119</context></context-group> | 10778 | |
10785 | </trans-unit> | 10779 | <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> |
10786 | <trans-unit id="1219739004043110649"> | 10780 | <trans-unit id="1219739004043110649"> |
10787 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10781 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10788 | <target>Votre vidéo n'est pas encore téléversée ; êtes-vous sûr de vouloir quitter cette page ?</target> | 10782 | <target>Votre vidéo n'est pas encore téléversée ; êtes-vous sûr de vouloir quitter cette page ?</target> |
10789 | <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">121</context></context-group> | 10783 | |
10790 | </trans-unit> | 10784 | <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">128</context></context-group></trans-unit> |
10791 | <trans-unit id="6932865105766151309" datatype="html"> | 10785 | <trans-unit id="6932865105766151309" datatype="html"> |
10792 | <source>Upload</source> | 10786 | <source>Upload</source> |
10793 | <target state="translated">Mise en ligne</target> | 10787 | <target state="translated">Mise en ligne</target> |
10794 | <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">227</context></context-group> | 10788 | |
10795 | </trans-unit> | 10789 | <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">234</context></context-group></trans-unit> |
10796 | <trans-unit id="8278735427925094503"> | 10790 | <trans-unit id="8278735427925094503"> |
10797 | <source>Upload <x id="PH"/> </source> | 10791 | <source>Upload <x id="PH"/> </source> |
10798 | <target>Téléverser | 10792 | <target>Téléverser |
10799 | <x id="PH"/> | 10793 | <x id="PH"/> |
10800 | </target> | 10794 | </target> |
10801 | <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">229</context></context-group> | 10795 | |
10802 | </trans-unit> | 10796 | <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">236</context></context-group></trans-unit> |
10803 | <trans-unit id="5981816353437801748"> | 10797 | <trans-unit id="5981816353437801748"> |
10804 | <source>Video published.</source> | 10798 | <source>Video published.</source> |
10805 | <target>Vidéo publiée.</target> | 10799 | <target>Vidéo publiée.</target> |
10806 | <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">251</context></context-group> | 10800 | |
10807 | </trans-unit> | 10801 | <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">258</context></context-group></trans-unit> |
10808 | <trans-unit id="764164089183618119"> | 10802 | <trans-unit id="764164089183618119"> |
10809 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 10803 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
10810 | <target>Vous n'avez pas sauvegardé vos modifications ! Si vous quittez la page, vous les perdrez.</target> | 10804 | <target>Vous n'avez pas sauvegardé vos modifications ! Si vous quittez la page, vous les perdrez.</target> |
diff --git a/client/src/locale/angular.gd.xlf b/client/src/locale/angular.gd.xlf index d87f7ecf5..5fbde7cf0 100644 --- a/client/src/locale/angular.gd.xlf +++ b/client/src/locale/angular.gd.xlf | |||
@@ -255,7 +255,7 @@ | |||
255 | <target state="translated">video</target> | 255 | <target state="translated">video</target> |
256 | 256 | ||
257 | 257 | ||
258 | <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">294</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> | 258 | <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">301</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> |
259 | <trans-unit id="6438815964972582865" datatype="html"> | 259 | <trans-unit id="6438815964972582865" datatype="html"> |
260 | <source>The following link contains a private token and should not be shared with anyone.</source> | 260 | <source>The following link contains a private token and should not be shared with anyone.</source> |
261 | <target state="translated">Tha tòcan prìobhaideach am broinn a’ cheangail a leanas agus cha bu chòir dhut a cho-roinneadh le duine sam bith.</target> | 261 | <target state="translated">Tha tòcan prìobhaideach am broinn a’ cheangail a leanas agus cha bu chòir dhut a cho-roinneadh le duine sam bith.</target> |
@@ -326,12 +326,12 @@ | |||
326 | <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> | 326 | <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> |
327 | <target state="translated">Chaidh thu thar cuota nam videothan agad leis a’ video seo (meud a’ video: <x id="PH" equiv-text="videoSizeBytes"/>, ’ga chleachdadh: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, cuota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> | 327 | <target state="translated">Chaidh thu thar cuota nam videothan agad leis a’ video seo (meud a’ video: <x id="PH" equiv-text="videoSizeBytes"/>, ’ga chleachdadh: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, cuota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> |
328 | 328 | ||
329 | <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">330</context></context-group></trans-unit> | 329 | <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">337</context></context-group></trans-unit> |
330 | <trans-unit id="7873395933409147217" datatype="html"> | 330 | <trans-unit id="7873395933409147217" datatype="html"> |
331 | <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> | 331 | <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> |
332 | <target state="translated">Bheir a’ video seo thar cuota làitheil nam videothan agad thu (meud a’ video: <x id="PH" equiv-text="videoSizeBytes"/>, ’ga chleachdadh: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, cuota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> | 332 | <target state="translated">Bheir a’ video seo thar cuota làitheil nam videothan agad thu (meud a’ video: <x id="PH" equiv-text="videoSizeBytes"/>, ’ga chleachdadh: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, cuota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> |
333 | 333 | ||
334 | <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">349</context></context-group></trans-unit> | 334 | <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">356</context></context-group></trans-unit> |
335 | <trans-unit id="5235042777215655908" datatype="html"> | 335 | <trans-unit id="5235042777215655908" datatype="html"> |
336 | <source>subtitles</source> | 336 | <source>subtitles</source> |
337 | <target state="translated">fo-thiotalan</target> | 337 | <target state="translated">fo-thiotalan</target> |
@@ -342,7 +342,7 @@ | |||
342 | <target state="translated">Sguir dheth</target> | 342 | <target state="translated">Sguir dheth</target> |
343 | 343 | ||
344 | 344 | ||
345 | <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">48</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> | 345 | <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">48</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">23</context></context-group></trans-unit> |
346 | <trans-unit id="3099741642167775297" datatype="html"> | 346 | <trans-unit id="3099741642167775297" datatype="html"> |
347 | <source>Download</source> | 347 | <source>Download</source> |
348 | <target state="translated">Luchdaich a-nuas</target> | 348 | <target state="translated">Luchdaich a-nuas</target> |
@@ -2488,7 +2488,7 @@ The link will expire within 1 hour.</source> | |||
2488 | <source>Upload on hold</source> | 2488 | <source>Upload on hold</source> |
2489 | <target state="translated">Tha an luchdadh suas ’ga cumail air ais</target> | 2489 | <target state="translated">Tha an luchdadh suas ’ga cumail air ais</target> |
2490 | 2490 | ||
2491 | <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">167</context></context-group></trans-unit> | 2491 | <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">174</context></context-group></trans-unit> |
2492 | <trans-unit id="285180972645018518" datatype="html"> | 2492 | <trans-unit id="285180972645018518" datatype="html"> |
2493 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2493 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2494 | <target state="translated">Tha sinn duilich ach chaidh gleus an luchdaidh suas a chur à comas dhan chunntas agad. Ma tha thu airson videothan a chur ris, feumaidh rianaire an glas a thoirt far a’ chuota agad.</target> | 2494 | <target state="translated">Tha sinn duilich ach chaidh gleus an luchdaidh suas a chur à comas dhan chunntas agad. Ma tha thu airson videothan a chur ris, feumaidh rianaire an glas a thoirt far a’ chuota agad.</target> |
@@ -10585,32 +10585,32 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10585 | <source>Your video was uploaded to your account and is private.</source> | 10585 | <source>Your video was uploaded to your account and is private.</source> |
10586 | <target state="translated">Chaidh a’ video agad a luchdadh suas dhan chunntas agad ’s tha e prìobhaideach.</target> | 10586 | <target state="translated">Chaidh a’ video agad a luchdadh suas dhan chunntas agad ’s tha e prìobhaideach.</target> |
10587 | 10587 | ||
10588 | <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">118</context></context-group></trans-unit> | 10588 | <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">125</context></context-group></trans-unit> |
10589 | <trans-unit id="5699822024600815733" datatype="html"> | 10589 | <trans-unit id="5699822024600815733" datatype="html"> |
10590 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10590 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10591 | <target state="translated">Ach thèid dàta sam bith nach deach a shàbhaladh (tagaichean, tuairisgeulan…) air chall, a bheil thu cinnteach gu bheil thu airson an duilleag seo fhàgail?</target> | 10591 | <target state="translated">Ach thèid dàta sam bith nach deach a shàbhaladh (tagaichean, tuairisgeulan…) air chall, a bheil thu cinnteach gu bheil thu airson an duilleag seo fhàgail?</target> |
10592 | 10592 | ||
10593 | <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">119</context></context-group></trans-unit> | 10593 | <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> |
10594 | <trans-unit id="1219739004043110649" datatype="html"> | 10594 | <trans-unit id="1219739004043110649" datatype="html"> |
10595 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10595 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10596 | <target state="translated">Cha deach a’ video agad a luchdadh suas fhathast, a bheil thu cinnteach gu bheil thu airson an duilleag seo fhàgail?</target> | 10596 | <target state="translated">Cha deach a’ video agad a luchdadh suas fhathast, a bheil thu cinnteach gu bheil thu airson an duilleag seo fhàgail?</target> |
10597 | 10597 | ||
10598 | <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">121</context></context-group></trans-unit> | 10598 | <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">128</context></context-group></trans-unit> |
10599 | <trans-unit id="6932865105766151309" datatype="html"> | 10599 | <trans-unit id="6932865105766151309" datatype="html"> |
10600 | <source>Upload</source> | 10600 | <source>Upload</source> |
10601 | <target state="translated">Luchdaich suas</target> | 10601 | <target state="translated">Luchdaich suas</target> |
10602 | 10602 | ||
10603 | <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">227</context></context-group></trans-unit> | 10603 | <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">234</context></context-group></trans-unit> |
10604 | <trans-unit id="8278735427925094503" datatype="html"> | 10604 | <trans-unit id="8278735427925094503" datatype="html"> |
10605 | <source>Upload <x id="PH"/> </source> | 10605 | <source>Upload <x id="PH"/> </source> |
10606 | <target state="translated">Luchdaich suas <x id="PH"/> </target> | 10606 | <target state="translated">Luchdaich suas <x id="PH"/> </target> |
10607 | 10607 | ||
10608 | <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">229</context></context-group></trans-unit> | 10608 | <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">236</context></context-group></trans-unit> |
10609 | <trans-unit id="5981816353437801748" datatype="html"> | 10609 | <trans-unit id="5981816353437801748" datatype="html"> |
10610 | <source>Video published.</source> | 10610 | <source>Video published.</source> |
10611 | <target state="translated">Chaidh a’ video fhoillseachadh.</target> | 10611 | <target state="translated">Chaidh a’ video fhoillseachadh.</target> |
10612 | 10612 | ||
10613 | <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">251</context></context-group></trans-unit> | 10613 | <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">258</context></context-group></trans-unit> |
10614 | <trans-unit id="764164089183618119" datatype="html"> | 10614 | <trans-unit id="764164089183618119" datatype="html"> |
10615 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 10615 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
10616 | <target state="translated">Tha atharraichean gun sàbhaladh agad! Ma dh’fhalbhas tu, thèid na h-atharraichean agad air chall.</target> | 10616 | <target state="translated">Tha atharraichean gun sàbhaladh agad! Ma dh’fhalbhas tu, thèid na h-atharraichean agad air chall.</target> |
diff --git a/client/src/locale/angular.gl-ES.xlf b/client/src/locale/angular.gl-ES.xlf index 6ad06693e..328f14ce3 100644 --- a/client/src/locale/angular.gl-ES.xlf +++ b/client/src/locale/angular.gl-ES.xlf | |||
@@ -5,13 +5,13 @@ | |||
5 | <trans-unit id="219462505467671767" datatype="html"> | 5 | <trans-unit id="219462505467671767" datatype="html"> |
6 | <source>Close the left menu</source> | 6 | <source>Close the left menu</source> |
7 | <target state="translated">Pechar o menú da esquerda</target> | 7 | <target state="translated">Pechar o menú da esquerda</target> |
8 | 8 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">133</context></context-group> | |
9 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit> | 9 | </trans-unit> |
10 | <trans-unit id="3455550526898419928" datatype="html"> | 10 | <trans-unit id="3455550526898419928" datatype="html"> |
11 | <source>Open the left menu</source> | 11 | <source>Open the left menu</source> |
12 | <target state="translated">Abrir o menú da esquerda</target> | 12 | <target state="translated">Abrir o menú da esquerda</target> |
13 | 13 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">135</context></context-group> | |
14 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit> | 14 | </trans-unit> |
15 | <trans-unit id="9075761896562520962"> | 15 | <trans-unit id="9075761896562520962"> |
16 | <source>You don't have notifications.</source> | 16 | <source>You don't have notifications.</source> |
17 | <target>Non tes notificacións.</target> | 17 | <target>Non tes notificacións.</target> |
@@ -177,9 +177,9 @@ | |||
177 | <trans-unit id="1486537403020619891" datatype="html"> | 177 | <trans-unit id="1486537403020619891" datatype="html"> |
178 | <source>My watch history</source> | 178 | <source>My watch history</source> |
179 | <target state="translated">Historial de visualizacións</target> | 179 | <target state="translated">Historial de visualizacións</target> |
180 | 180 | <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> | |
181 | 181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">68</context></context-group> | |
182 | <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">68</context></context-group></trans-unit> | 182 | </trans-unit> |
183 | <trans-unit id="5924559757556526785"> | 183 | <trans-unit id="5924559757556526785"> |
184 | <source>Save to</source> | 184 | <source>Save to</source> |
185 | <target>Gardar en</target> | 185 | <target>Gardar en</target> |
@@ -257,7 +257,7 @@ | |||
257 | <target state="translated">vídeo</target> | 257 | <target state="translated">vídeo</target> |
258 | 258 | ||
259 | 259 | ||
260 | <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">294</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> | 260 | <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">301</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> |
261 | <trans-unit id="6438815964972582865" datatype="html"> | 261 | <trans-unit id="6438815964972582865" datatype="html"> |
262 | <source>The following link contains a private token and should not be shared with anyone.</source> | 262 | <source>The following link contains a private token and should not be shared with anyone.</source> |
263 | <target state="translated">A seguinte ligazón contén un token privado e non deberías compartilo con ninguén.</target> | 263 | <target state="translated">A seguinte ligazón contén un token privado e non deberías compartilo con ninguén.</target> |
@@ -330,12 +330,12 @@ | |||
330 | <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> | 330 | <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> |
331 | <target state="translated">Este vídeo fai que superes a túa cota de vídeo (tamaño do vídeo: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, cota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> | 331 | <target state="translated">Este vídeo fai que superes a túa cota de vídeo (tamaño do vídeo: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, cota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> |
332 | 332 | ||
333 | <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">330</context></context-group></trans-unit> | 333 | <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">337</context></context-group></trans-unit> |
334 | <trans-unit id="7873395933409147217" datatype="html"> | 334 | <trans-unit id="7873395933409147217" datatype="html"> |
335 | <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> | 335 | <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> |
336 | <target state="translated">Con este vídeo superas a túa cota diaria de vídeo (tamaño do vídeo: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, cota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> | 336 | <target state="translated">Con este vídeo superas a túa cota diaria de vídeo (tamaño do vídeo: <x id="PH" equiv-text="videoSizeBytes"/>, used: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, cota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> |
337 | 337 | ||
338 | <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">349</context></context-group></trans-unit> | 338 | <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">356</context></context-group></trans-unit> |
339 | <trans-unit id="5235042777215655908" datatype="html"> | 339 | <trans-unit id="5235042777215655908" datatype="html"> |
340 | <source>subtitles</source> | 340 | <source>subtitles</source> |
341 | <target state="translated">subtítulos</target> | 341 | <target state="translated">subtítulos</target> |
@@ -348,7 +348,7 @@ | |||
348 | </target> | 348 | </target> |
349 | 349 | ||
350 | 350 | ||
351 | <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">48</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> | 351 | <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">48</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">23</context></context-group></trans-unit> |
352 | <trans-unit id="3099741642167775297"> | 352 | <trans-unit id="3099741642167775297"> |
353 | <source>Download</source> | 353 | <source>Download</source> |
354 | <target>Descargar</target> | 354 | <target>Descargar</target> |
@@ -371,16 +371,10 @@ | |||
371 | <trans-unit id="834805431202576194" datatype="html"> | 371 | <trans-unit id="834805431202576194" datatype="html"> |
372 | <source>No results.</source> | 372 | <source>No results.</source> |
373 | <target state="translated">Sen resultados.</target> | 373 | <target state="translated">Sen resultados.</target> |
374 | 374 | <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> | |
375 | 375 | <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> | |
376 | 376 | <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> | |
377 | 377 | </trans-unit> | |
378 | |||
379 | |||
380 | |||
381 | |||
382 | |||
383 | <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> | ||
384 | <trans-unit id="935187492052582731"> | 378 | <trans-unit id="935187492052582731"> |
385 | <source>Submit</source> | 379 | <source>Submit</source> |
386 | <target>Enviar</target> | 380 | <target>Enviar</target> |
@@ -498,9 +492,9 @@ | |||
498 | <trans-unit id="7766488542631150871"> | 492 | <trans-unit id="7766488542631150871"> |
499 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 493 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
500 | <target>{VAR_PLURAL, plural, =0 {No videos} =1 {1 vídeo} other {<x id="INTERPOLATION"/> vídeos}}</target> | 494 | <target>{VAR_PLURAL, plural, =0 {No videos} =1 {1 vídeo} other {<x id="INTERPOLATION"/> vídeos}}</target> |
501 | 495 | <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">32</context></context-group> | |
502 | 496 | <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> | |
503 | <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">32</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> | 497 | </trans-unit> |
504 | <trans-unit id="7708270344948043036"> | 498 | <trans-unit id="7708270344948043036"> |
505 | <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> | 499 | <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> |
506 | <target> | 500 | <target> |
@@ -533,13 +527,11 @@ | |||
533 | <trans-unit id="3768927257183755959"> | 527 | <trans-unit id="3768927257183755959"> |
534 | <source>Save</source> | 528 | <source>Save</source> |
535 | <target>Gardar</target> | 529 | <target>Gardar</target> |
536 | 530 | <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> | |
537 | 531 | <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> | |
538 | 532 | <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> | |
539 | 533 | <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">82</context></context-group> | |
540 | 534 | </trans-unit> | |
541 | |||
542 | <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">82</context></context-group></trans-unit> | ||
543 | <trans-unit id="8890926675057871150"> | 535 | <trans-unit id="8890926675057871150"> |
544 | <source>Delete from <x id="INTERPOLATION"/></source> | 536 | <source>Delete from <x id="INTERPOLATION"/></source> |
545 | <target>Eliminar de <x id="INTERPOLATION"/></target> | 537 | <target>Eliminar de <x id="INTERPOLATION"/></target> |
@@ -557,40 +549,39 @@ | |||
557 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> | 549 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> |
558 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> | 550 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> |
559 | </trans-unit> | 551 | </trans-unit> |
560 | |||
561 | <trans-unit id="3594371452042277118" datatype="html"> | 552 | <trans-unit id="3594371452042277118" datatype="html"> |
562 | <source>Videos with the most interactions for recent videos, minus user history</source> | 553 | <source>Videos with the most interactions for recent videos, minus user history</source> |
563 | <target state="translated">Vídeos con máis interaccións entre os recentes, menos historial da usuaria</target> | 554 | <target state="translated">Vídeos con máis interaccións entre os recentes, menos historial da usuaria</target> |
564 | 555 | <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> | |
565 | <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> | 556 | </trans-unit> |
566 | <trans-unit id="7022070615528435141"> | 557 | <trans-unit id="7022070615528435141"> |
567 | <source>Delete</source> | 558 | <source>Delete</source> |
568 | <target>Eliminar</target> | 559 | <target>Eliminar</target> |
569 | 560 | <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> | |
570 | 561 | <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">88</context></context-group> | |
571 | 562 | <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">92</context></context-group> | |
572 | 563 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">95</context></context-group> | |
573 | 564 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">164</context></context-group> | |
574 | 565 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">81</context></context-group> | |
575 | 566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">195</context></context-group> | |
576 | 567 | <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> | |
577 | 568 | <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> | |
578 | 569 | <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> | |
579 | 570 | <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> | |
580 | 571 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">117</context></context-group> | |
581 | 572 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">144</context></context-group> | |
582 | 573 | <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> | |
583 | 574 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">178</context></context-group> | |
584 | 575 | <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> | |
585 | 576 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">145</context></context-group> | |
586 | 577 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">388</context></context-group> | |
587 | 578 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">423</context></context-group> | |
588 | 579 | <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> | |
589 | 580 | <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> | |
590 | 581 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">87</context></context-group> | |
591 | 582 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">208</context></context-group> | |
592 | 583 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">308</context></context-group> | |
593 | <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">88</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">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">164</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">81</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">195</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">117</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">144</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">185</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">178</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">145</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">388</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">423</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-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">87</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">208</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">308</context></context-group></trans-unit> | 584 | </trans-unit> |
594 | <trans-unit id="158575725114802951" datatype="html"> | 585 | <trans-unit id="158575725114802951" datatype="html"> |
595 | <source>Only live videos</source> | 586 | <source>Only live videos</source> |
596 | <target state="translated">Só vídeos en directo</target> | 587 | <target state="translated">Só vídeos en directo</target> |
@@ -621,11 +612,12 @@ | |||
621 | <trans-unit id="8461609631969932886" datatype="html"> | 612 | <trans-unit id="8461609631969932886" datatype="html"> |
622 | <source>Hide</source> | 613 | <source>Hide</source> |
623 | <target state="translated">Agochar</target> | 614 | <target state="translated">Agochar</target> |
624 | 615 | <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> | |
625 | 616 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.html</context><context context-type="linenumber">11</context></context-group> | |
626 | 617 | <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> | |
627 | 618 | <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> | |
628 | <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/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> | 619 | <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> |
620 | </trans-unit> | ||
629 | <trans-unit id="8461842260159597706" datatype="html"> | 621 | <trans-unit id="8461842260159597706" datatype="html"> |
630 | <source>Show</source> | 622 | <source>Show</source> |
631 | <target state="translated">Mostrar</target> | 623 | <target state="translated">Mostrar</target> |
@@ -670,7 +662,6 @@ | |||
670 | <target>Subscríbete coa túa conta local</target> | 662 | <target>Subscríbete coa túa conta local</target> |
671 | <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> | 663 | <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> |
672 | </trans-unit> | 664 | </trans-unit> |
673 | |||
674 | <trans-unit id="7639191791633609999" datatype="html"> | 665 | <trans-unit id="7639191791633609999" datatype="html"> |
675 | <source>The live stream will be automatically terminated.</source> | 666 | <source>The live stream will be automatically terminated.</source> |
676 | <target state="translated">A retransmisión en directo rematará automáticamente.</target> | 667 | <target state="translated">A retransmisión en directo rematará automáticamente.</target> |
@@ -821,8 +812,9 @@ | |||
821 | <trans-unit id="2906587845957718064"> | 812 | <trans-unit id="2906587845957718064"> |
822 | <source>Local</source> | 813 | <source>Local</source> |
823 | <target>Local</target> | 814 | <target>Local</target> |
824 | 815 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">4</context></context-group> | |
825 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.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-filters.model.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> | 816 | <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> |
817 | </trans-unit> | ||
826 | <trans-unit id="1670306451865226564" datatype="html"> | 818 | <trans-unit id="1670306451865226564" datatype="html"> |
827 | <source>users</source> | 819 | <source>users</source> |
828 | <target state="translated">usuarias</target> | 820 | <target state="translated">usuarias</target> |
@@ -897,35 +889,35 @@ | |||
897 | <trans-unit id="2605931708025789621" datatype="html"> | 889 | <trans-unit id="2605931708025789621" datatype="html"> |
898 | <source>The upload failed</source> | 890 | <source>The upload failed</source> |
899 | <target state="translated">A subida fallou</target> | 891 | <target state="translated">A subida fallou</target> |
900 | 892 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">12</context></context-group> | |
901 | <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> | 893 | </trans-unit> |
902 | <trans-unit id="1447760976255144968" datatype="html"> | 894 | <trans-unit id="1447760976255144968" datatype="html"> |
903 | <source>The connection was interrupted</source> | 895 | <source>The connection was interrupted</source> |
904 | <target state="translated">Conexión interrumpida</target> | 896 | <target state="translated">Conexión interrumpida</target> |
905 | 897 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">16</context></context-group> | |
906 | <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> | 898 | </trans-unit> |
907 | <trans-unit id="4499233456830047129" datatype="html"> | 899 | <trans-unit id="4499233456830047129" datatype="html"> |
908 | <source>The server encountered an error</source> | 900 | <source>The server encountered an error</source> |
909 | <target state="translated">O servidor atopou un erro</target> | 901 | <target state="translated">O servidor atopou un erro</target> |
910 | 902 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">19</context></context-group> | |
911 | <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> | 903 | </trans-unit> |
912 | <trans-unit id="3334825601859787496" datatype="html"> | 904 | <trans-unit id="3334825601859787496" datatype="html"> |
913 | <source>Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</source> | 905 | <source>Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</source> |
914 | <target state="translated">O teu ficheiro <x id="PH" equiv-text="name"/> non se pode transferir antes da marxe establecida (normalmente 10min)</target> | 906 | <target state="translated">O teu ficheiro <x id="PH" equiv-text="name"/> non se pode transferir antes da marxe establecida (normalmente 10min)</target> |
915 | 907 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">22</context></context-group> | |
916 | <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> | 908 | </trans-unit> |
917 | <trans-unit id="8530934870279569179" datatype="html"> | 909 | <trans-unit id="8530934870279569179" datatype="html"> |
918 | <source>Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</source> | 910 | <source>Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</source> |
919 | <target state="translated">O ficheiro <x id="PH" equiv-text="name"/> era demasiado grande (tamaño max.: <x id="PH_1" equiv-text="maxFileSize"/>)</target> | 911 | <target state="translated">O ficheiro <x id="PH" equiv-text="name"/> era demasiado grande (tamaño max.: <x id="PH_1" equiv-text="maxFileSize"/>)</target> |
920 | 912 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">26</context></context-group> | |
921 | <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> | 913 | </trans-unit> |
922 | <trans-unit id="2392488717875840729" datatype="html"> | 914 | <trans-unit id="2392488717875840729" datatype="html"> |
923 | <source>User</source> | 915 | <source>User</source> |
924 | <target state="translated">Usuaria</target> | 916 | <target state="translated">Usuaria</target> |
925 | 917 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group> | |
926 | 918 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">27</context></context-group> | |
927 | 919 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group> | |
928 | <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">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group></trans-unit> | 920 | </trans-unit> |
929 | <trans-unit id="4209525355702493436"> | 921 | <trans-unit id="4209525355702493436"> |
930 | <source>Ban</source> | 922 | <source>Ban</source> |
931 | <target>Vetar</target> | 923 | <target>Vetar</target> |
@@ -1226,81 +1218,84 @@ The link will expire within 1 hour.</source> | |||
1226 | <trans-unit id="1516969129397662377" datatype="html"> | 1218 | <trans-unit id="1516969129397662377" datatype="html"> |
1227 | <source>Welcome to PeerTube, dear administrator!</source> | 1219 | <source>Welcome to PeerTube, dear administrator!</source> |
1228 | <target state="translated">Benvida administradora de PeerTube!</target> | 1220 | <target state="translated">Benvida administradora de PeerTube!</target> |
1229 | 1221 | <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> | |
1230 | <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> | 1222 | </trans-unit> |
1231 | <trans-unit id="807030720531713957" datatype="html"> | 1223 | <trans-unit id="807030720531713957" datatype="html"> |
1232 | <source>CLI documentation</source> | 1224 | <source>CLI documentation</source> |
1233 | <target state="translated">Documentación CLI</target> | 1225 | <target state="translated">Documentación CLI</target> |
1234 | 1226 | <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> | |
1235 | <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> | 1227 | </trans-unit> |
1236 | <trans-unit id="199127249622290422" datatype="html"> | 1228 | <trans-unit id="199127249622290422" datatype="html"> |
1237 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> | 1229 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> |
1238 | <target state="translated">Subir ou importar vídeos, analizar logs, optimizar directorios, restablecer contrasinal de usuarias...</target> | 1230 | <target state="translated">Subir ou importar vídeos, analizar logs, optimizar directorios, restablecer contrasinal de usuarias...</target> |
1239 | 1231 | <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> | |
1240 | <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> | 1232 | </trans-unit> |
1241 | <trans-unit id="249453844439446209" datatype="html"> | 1233 | <trans-unit id="249453844439446209" datatype="html"> |
1242 | <source>Administer documentation</source> | 1234 | <source>Administer documentation</source> |
1243 | <target state="translated">Documentación da administradora</target> | 1235 | <target state="translated">Documentación da administradora</target> |
1244 | 1236 | <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> | |
1245 | <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> | 1237 | </trans-unit> |
1246 | <trans-unit id="5910950876330656326" datatype="html"> | 1238 | <trans-unit id="5910950876330656326" datatype="html"> |
1247 | <source>Managing users, following other instances, dealing with spammers...</source> | 1239 | <source>Managing users, following other instances, dealing with spammers...</source> |
1248 | <target state="translated">Xestión de usuarias, seguimento de outras instancias, tratar con spammers...</target> | 1240 | <target state="translated">Xestión de usuarias, seguimento de outras instancias, tratar con spammers...</target> |
1249 | 1241 | <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> | |
1250 | <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> | 1242 | </trans-unit> |
1251 | <trans-unit id="879127294610588497" datatype="html"> | 1243 | <trans-unit id="879127294610588497" datatype="html"> |
1252 | <source>Use documentation</source> | 1244 | <source>Use documentation</source> |
1253 | <target state="translated">Documentación de utilización</target> | 1245 | <target state="translated">Documentación de utilización</target> |
1254 | 1246 | <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> | |
1255 | <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> | 1247 | </trans-unit> |
1256 | <trans-unit id="3848077896245199337" datatype="html"> | 1248 | <trans-unit id="3848077896245199337" datatype="html"> |
1257 | <source>Setup your account, managing video playlists, discover third-party applications...</source> | 1249 | <source>Setup your account, managing video playlists, discover third-party applications...</source> |
1258 | <target state="translated">Configurar a túa conta, xestión de listas de reprodución, descubrimento de aplicacións de terceiros...</target> | 1250 | <target state="translated">Configurar a túa conta, xestión de listas de reprodución, descubrimento de aplicacións de terceiros...</target> |
1259 | 1251 | <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> | |
1260 | <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> | 1252 | </trans-unit> |
1261 | <trans-unit id="6284442506490785579" datatype="html"> | 1253 | <trans-unit id="6284442506490785579" datatype="html"> |
1262 | <source>Useful links</source> | 1254 | <source>Useful links</source> |
1263 | <target state="translated">Ligazóns útiles</target> | 1255 | <target state="translated">Ligazóns útiles</target> |
1264 | 1256 | <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> | |
1265 | <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> | 1257 | </trans-unit> |
1266 | <trans-unit id="5170617864166788170" datatype="html"> | 1258 | <trans-unit id="5170617864166788170" datatype="html"> |
1267 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> | 1259 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> |
1268 | <target state="translated">Sitio web oficial PeerTube (novas, axuda, contribuír...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></target> | 1260 | <target state="translated">Sitio web oficial PeerTube (novas, axuda, contribuír...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></target> |
1269 | 1261 | <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> | |
1270 | <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> | 1262 | </trans-unit> |
1271 | <trans-unit id="4614992717645869756" datatype="html"> | 1263 | <trans-unit id="4614992717645869756" datatype="html"> |
1272 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> | 1264 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> |
1273 | <target state="translated">Pon a túa instancia no índice público de PeerTube: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></target> | 1265 | <target state="translated">Pon a túa instancia no índice público de PeerTube: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></target> |
1274 | 1266 | <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> | |
1275 | <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> | 1267 | </trans-unit> |
1276 | <trans-unit id="2081626998027585315" datatype="html"> | 1268 | <trans-unit id="2081626998027585315" datatype="html"> |
1277 | <source>It's time to configure your instance!</source> | 1269 | <source>It's time to configure your instance!</source> |
1278 | <target state="translated">Agora configura a túa instancia!</target> | 1270 | <target state="translated">Agora configura a túa instancia!</target> |
1279 | 1271 | <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> | |
1280 | <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> | 1272 | </trans-unit> |
1281 | <trans-unit id="5083058563861587027" datatype="html"> | 1273 | <trans-unit id="5083058563861587027" datatype="html"> |
1282 | <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> | 1274 | <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> |
1283 | <target state="translated">Escoller o <x id="START_TAG_STRONG"/>nome da instancia<x id="CLOSE_TAG_STRONG"/>, <x id="START_TAG_STRONG"/>darlle unha descrición<x id="CLOSE_TAG_STRONG"/>, indicando <x id="START_TAG_STRONG"/>quen es<x id="CLOSE_TAG_STRONG"/>, por que <x id="START_TAG_STRONG"/>creaches a túa instancia<x id="CLOSE_TAG_STRONG"/> e <x id="START_TAG_STRONG"/>canto tempo<x id="CLOSE_TAG_STRONG"/> tes pensado <x id="START_TAG_STRONG"/>mantela<x id="CLOSE_TAG_STRONG"/> é información importante para quen visita a instancia para saber o tipo de instancia que é. </target> | 1275 | <target state="translated">Escoller o <x id="START_TAG_STRONG"/>nome da instancia<x id="CLOSE_TAG_STRONG"/>, <x id="START_TAG_STRONG"/>darlle unha descrición<x id="CLOSE_TAG_STRONG"/>, indicando <x id="START_TAG_STRONG"/>quen es<x id="CLOSE_TAG_STRONG"/>, por que <x id="START_TAG_STRONG"/>creaches a túa instancia<x id="CLOSE_TAG_STRONG"/> e <x id="START_TAG_STRONG"/>canto tempo<x id="CLOSE_TAG_STRONG"/> tes pensado <x id="START_TAG_STRONG"/>mantela<x id="CLOSE_TAG_STRONG"/> é información importante para quen visita a instancia para saber o tipo de instancia que é. </target> |
1284 | 1276 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">58</context></context-group> | |
1285 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 1277 | </trans-unit> |
1286 | <trans-unit id="5329436244765769292" datatype="html"> | 1278 | <trans-unit id="5329436244765769292" datatype="html"> |
1287 | <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> | 1279 | <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> |
1288 | <target state="translated">Se queres permitir o rexistro, decide cales son <x id="START_TAG_STRONG"/>as regras de moderación<x id="CLOSE_TAG_STRONG"/> e <x id="START_TAG_STRONG"/>os termos de servizo da instancia<x id="CLOSE_TAG_STRONG"/>, así como indicar os idiomas que falan as persoas moderadoras. Deste xeito axudaraslle ás persoas que se rexistren na <x id="START_TAG_STRONG"/>instancia axeitada<x id="CLOSE_TAG_STRONG"/> de PeerTube. </target> | 1280 | <target state="translated">Se queres permitir o rexistro, decide cales son <x id="START_TAG_STRONG"/>as regras de moderación<x id="CLOSE_TAG_STRONG"/> e <x id="START_TAG_STRONG"/>os termos de servizo da instancia<x id="CLOSE_TAG_STRONG"/>, así como indicar os idiomas que falan as persoas moderadoras. Deste xeito axudaraslle ás persoas que se rexistren na <x id="START_TAG_STRONG"/>instancia axeitada<x id="CLOSE_TAG_STRONG"/> de PeerTube. </target> |
1289 | 1281 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">64</context></context-group> | |
1290 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 1282 | </trans-unit> |
1291 | <trans-unit id="5704345824323933019" datatype="html"> | 1283 | <trans-unit id="5704345824323933019" datatype="html"> |
1292 | <source>Remind me later</source> | 1284 | <source>Remind me later</source> |
1293 | <target state="translated">Lémbramo máis tarde</target> | 1285 | <target state="translated">Lémbramo máis tarde</target> |
1294 | 1286 | <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> | |
1295 | <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/admin-welcome-modal.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit><trans-unit id="7997432701743294657" datatype="html"> | 1287 | <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> |
1296 | <source> Set up </source><target state="new"> Set up </target> | 1288 | </trans-unit> |
1297 | 1289 | <trans-unit id="7997432701743294657" datatype="html"> | |
1298 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 1290 | <source>Set up</source> |
1291 | <target state="translated">Set up</target> | ||
1292 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">35</context></context-group> | ||
1293 | </trans-unit> | ||
1299 | <trans-unit id="9202089339019827574" datatype="html"> | 1294 | <trans-unit id="9202089339019827574" datatype="html"> |
1300 | <source>Configure my instance</source> | 1295 | <source>Configure my instance</source> |
1301 | <target state="translated">Configurar a miña instancia</target> | 1296 | <target state="translated">Configurar a miña instancia</target> |
1302 | 1297 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">81</context></context-group> | |
1303 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit> | 1298 | </trans-unit> |
1304 | <trans-unit id="9005121595859995793" datatype="html"> | 1299 | <trans-unit id="9005121595859995793" datatype="html"> |
1305 | <source>Configuration warning!</source> | 1300 | <source>Configuration warning!</source> |
1306 | <target state="translated">Aviso da configuración!</target> | 1301 | <target state="translated">Aviso da configuración!</target> |
@@ -1476,11 +1471,11 @@ The link will expire within 1 hour.</source> | |||
1476 | <trans-unit id="3058024914967508975" datatype="html"> | 1471 | <trans-unit id="3058024914967508975" datatype="html"> |
1477 | <source>My videos</source> | 1472 | <source>My videos</source> |
1478 | <target state="translated">Vídeos</target> | 1473 | <target state="translated">Vídeos</target> |
1479 | 1474 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">76</context></context-group> | |
1480 | 1475 | <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> | |
1481 | 1476 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">71</context></context-group> | |
1482 | 1477 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">77</context></context-group> | |
1483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">76</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">71</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> | 1478 | </trans-unit> |
1484 | <trans-unit id="3108704604266608109" datatype="html"> | 1479 | <trans-unit id="3108704604266608109" datatype="html"> |
1485 | <source>My video imports</source> | 1480 | <source>My video imports</source> |
1486 | <target state="translated">Vídeos importados</target> | 1481 | <target state="translated">Vídeos importados</target> |
@@ -1508,9 +1503,11 @@ The link will expire within 1 hour.</source> | |||
1508 | <trans-unit id="8936704404804793618"> | 1503 | <trans-unit id="8936704404804793618"> |
1509 | <source>Videos</source> | 1504 | <source>Videos</source> |
1510 | <target>Vídeos</target> | 1505 | <target>Vídeos</target> |
1511 | 1506 | <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> | |
1512 | 1507 | <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> | |
1513 | <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/+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/+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> | 1508 | <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> |
1509 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">76</context></context-group> | ||
1510 | </trans-unit> | ||
1514 | <trans-unit id="2689878465089314112" datatype="html"> | 1511 | <trans-unit id="2689878465089314112" datatype="html"> |
1515 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> | 1512 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> |
1516 | <target state="translated">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | 1513 | <target state="translated">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> |
@@ -1525,11 +1522,11 @@ The link will expire within 1 hour.</source> | |||
1525 | <trans-unit id="1812379335568847528"> | 1522 | <trans-unit id="1812379335568847528"> |
1526 | <source>Subscriptions</source> | 1523 | <source>Subscriptions</source> |
1527 | <target>Subscricións</target> | 1524 | <target>Subscricións</target> |
1528 | 1525 | <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> | |
1529 | 1526 | <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> | |
1530 | 1527 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">58</context></context-group> | |
1531 | 1528 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">91</context></context-group> | |
1532 | <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><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">58</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> | 1529 | </trans-unit> |
1533 | <trans-unit id="186236568870281953"> | 1530 | <trans-unit id="186236568870281953"> |
1534 | <source>History</source> | 1531 | <source>History</source> |
1535 | <target>Historial</target> | 1532 | <target>Historial</target> |
@@ -1539,10 +1536,10 @@ The link will expire within 1 hour.</source> | |||
1539 | <trans-unit id="1504521795586863905" datatype="html"> | 1536 | <trans-unit id="1504521795586863905" datatype="html"> |
1540 | <source>VIDEOS</source> | 1537 | <source>VIDEOS</source> |
1541 | <target state="translated">VÍDEOS</target> | 1538 | <target state="translated">VÍDEOS</target> |
1542 | 1539 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">82</context></context-group> | |
1543 | 1540 | <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">215</context></context-group> | |
1544 | 1541 | <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> | |
1545 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">82</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">215</context></context-group><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></trans-unit> | 1542 | </trans-unit> |
1546 | <trans-unit id="667372110624203230" datatype="html"> | 1543 | <trans-unit id="667372110624203230" datatype="html"> |
1547 | <source>Import jobs concurrency</source> | 1544 | <source>Import jobs concurrency</source> |
1548 | <target state="translated">Concurrencia de tarefas de importación</target> | 1545 | <target state="translated">Concurrencia de tarefas de importación</target> |
@@ -1617,23 +1614,35 @@ The link will expire within 1 hour.</source> | |||
1617 | <source>See all your notifications</source> | 1614 | <source>See all your notifications</source> |
1618 | <target>Ver todas as notificacións</target> | 1615 | <target>Ver todas as notificacións</target> |
1619 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">49</context></context-group> | 1616 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">49</context></context-group> |
1620 | </trans-unit><trans-unit id="5108072242786374364" datatype="html"> | 1617 | </trans-unit> |
1621 | <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> | 1618 | <trans-unit id="5108072242786374364" datatype="html"> |
1622 | 1619 | <source>Welcome to <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, dear user!</source> | |
1623 | <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"> | 1620 | <target state="translated">Dámosche a benvida a <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>!</target> |
1624 | <source>It's time to set up your account profile!</source><target state="new">It's time to set up your account profile!</target> | 1621 | <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> |
1625 | 1622 | </trans-unit> | |
1626 | <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"> | 1623 | <trans-unit id="8821712929823045567" datatype="html"> |
1627 | <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> | 1624 | <source>It's time to set up your account profile!</source> |
1628 | 1625 | <target state="translated">Agora toca configurar o perfil da túa conta!</target> | |
1629 | <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"> | 1626 | <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> |
1630 | <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> | 1627 | </trans-unit> |
1631 | 1628 | <trans-unit id="7239874680342223476" datatype="html"> | |
1632 | <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"> | 1629 | <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> |
1633 | <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> | 1630 | <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> |
1634 | 1631 | <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> | |
1635 | <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"> | 1632 | </trans-unit> |
1636 | <source>Don't show me this anymore</source><target state="new">Don't show me this anymore</target> | 1633 | <trans-unit id="5856432243446401016" datatype="html"> |
1634 | <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> | ||
1635 | <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> | ||
1636 | <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> | ||
1637 | </trans-unit> | ||
1638 | <trans-unit id="3221645359464920754" datatype="html"> | ||
1639 | <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> | ||
1640 | <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> | ||
1641 | <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> | ||
1642 | </trans-unit> | ||
1643 | <trans-unit id="2218100934178971211" datatype="html"> | ||
1644 | <source>Don't show me this anymore</source> | ||
1645 | <target state="translated">Non mostrar esto outra vez</target> | ||
1637 | <context-group purpose="location"> | 1646 | <context-group purpose="location"> |
1638 | <context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context> | 1647 | <context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context> |
1639 | <context context-type="linenumber">23</context> | 1648 | <context context-type="linenumber">23</context> |
@@ -1839,15 +1848,19 @@ The link will expire within 1 hour.</source> | |||
1839 | <trans-unit id="2180217594100853008" datatype="html"> | 1848 | <trans-unit id="2180217594100853008" datatype="html"> |
1840 | <source>Live videos</source> | 1849 | <source>Live videos</source> |
1841 | <target state="translated">Vídeos en directo</target> | 1850 | <target state="translated">Vídeos en directo</target> |
1842 | 1851 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">29</context></context-group> | |
1843 | 1852 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">64</context></context-group> | |
1844 | <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/+search/search-filters.component.ts</context><context context-type="linenumber">64</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">158</context></context-group></trans-unit> | 1853 | <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> |
1854 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">158</context></context-group> | ||
1855 | </trans-unit> | ||
1845 | <trans-unit id="2392481201920342009" datatype="html"> | 1856 | <trans-unit id="2392481201920342009" datatype="html"> |
1846 | <source>VOD videos</source> | 1857 | <source>VOD videos</source> |
1847 | <target state="translated">Vídeos VOD</target> | 1858 | <target state="translated">Vídeos VOD</target> |
1848 | 1859 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">34</context></context-group> | |
1849 | 1860 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">60</context></context-group> | |
1850 | <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/+search/search-filters.component.ts</context><context context-type="linenumber">60</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">164</context></context-group></trans-unit> | 1861 | <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> |
1862 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">164</context></context-group> | ||
1863 | </trans-unit> | ||
1851 | <trans-unit id="7970752988844762769"> | 1864 | <trans-unit id="7970752988844762769"> |
1852 | <source>Published date</source> | 1865 | <source>Published date</source> |
1853 | <target>Data de publicación</target> | 1866 | <target>Data de publicación</target> |
@@ -2024,14 +2037,14 @@ The link will expire within 1 hour.</source> | |||
2024 | <trans-unit id="6179532215548637839" datatype="html"> | 2037 | <trans-unit id="6179532215548637839" datatype="html"> |
2025 | <source>extensions</source> | 2038 | <source>extensions</source> |
2026 | <target state="translated">extensións</target> | 2039 | <target state="translated">extensións</target> |
2027 | 2040 | <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> | |
2028 | <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> | 2041 | </trans-unit> |
2029 | <trans-unit id="8054921481196967348" datatype="html"> | 2042 | <trans-unit id="8054921481196967348" datatype="html"> |
2030 | <source>This image is too large.</source> | 2043 | <source>This image is too large.</source> |
2031 | <target state="translated">Esta imaxe é demasiado grande.</target> | 2044 | <target state="translated">Esta imaxe é demasiado grande.</target> |
2032 | 2045 | <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> | |
2033 | 2046 | <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> | |
2034 | <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> | 2047 | </trans-unit> |
2035 | <trans-unit id="6259523075362402245" datatype="html"> | 2048 | <trans-unit id="6259523075362402245" datatype="html"> |
2036 | <source>Upload a new banner</source> | 2049 | <source>Upload a new banner</source> |
2037 | <target state="translated">Subir unha nova cabeceira</target> | 2050 | <target state="translated">Subir unha nova cabeceira</target> |
@@ -2056,13 +2069,13 @@ The link will expire within 1 hour.</source> | |||
2056 | <trans-unit id="3220184757632006830" datatype="html"> | 2069 | <trans-unit id="3220184757632006830" datatype="html"> |
2057 | <source>Account avatar</source> | 2070 | <source>Account avatar</source> |
2058 | <target state="translated">Avatar da conta</target> | 2071 | <target state="translated">Avatar da conta</target> |
2059 | 2072 | <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> | |
2060 | <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> | 2073 | </trans-unit> |
2061 | <trans-unit id="1138964882426023395" datatype="html"> | 2074 | <trans-unit id="1138964882426023395" datatype="html"> |
2062 | <source>Channel avatar</source> | 2075 | <source>Channel avatar</source> |
2063 | <target state="translated">Avatar da canle</target> | 2076 | <target state="translated">Avatar da canle</target> |
2064 | 2077 | <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> | |
2065 | <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> | 2078 | </trans-unit> |
2066 | <trans-unit id="1358902062258458923" datatype="html"> | 2079 | <trans-unit id="1358902062258458923" datatype="html"> |
2067 | <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> | 2080 | <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> |
2068 | <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> | 2081 | <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> |
@@ -2512,25 +2525,31 @@ The link will expire within 1 hour.</source> | |||
2512 | <source>Upload on hold</source> | 2525 | <source>Upload on hold</source> |
2513 | <target state="translated">Subida agardando</target> | 2526 | <target state="translated">Subida agardando</target> |
2514 | 2527 | ||
2515 | <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">167</context></context-group></trans-unit> | 2528 | <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">174</context></context-group></trans-unit> |
2516 | <trans-unit id="285180972645018518" datatype="html"> | 2529 | <trans-unit id="285180972645018518" datatype="html"> |
2517 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2530 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2518 | <target state="translated">Lamentámolo, a túa conta non permite subir contidos. Se queres engadir vídeos, unha administradora debe aumentar a túa cota.</target> | 2531 | <target state="translated">Lamentámolo, a túa conta non permite subir contidos. Se queres engadir vídeos, unha administradora debe aumentar a túa cota.</target> |
2519 | 2532 | <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> | |
2520 | <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"> | 2533 | </trans-unit> |
2521 | <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> | 2534 | <trans-unit id="1138810463037464722" datatype="html"> |
2535 | <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> | ||
2536 | <target state="translated">Os vídeos subidos son revisados antes de ser publicados na túa conta. Se queres engadir vídeos sen ser revisados pola moderación, unha admin ten que desactivar o bloqueo automático de vídeos.</target> | ||
2522 | <context-group purpose="location"> | 2537 | <context-group purpose="location"> |
2523 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 2538 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
2524 | <context context-type="linenumber">104</context> | 2539 | <context context-type="linenumber">104</context> |
2525 | </context-group> | 2540 | </context-group> |
2526 | </trans-unit><trans-unit id="438743381693904838" datatype="html"> | 2541 | </trans-unit> |
2527 | <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> | 2542 | <trans-unit id="438743381693904838" datatype="html"> |
2543 | <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> | ||
2544 | <target state="translated">A túa cota de vídeos diaria non é suficiente. Se queres subir máis vídeos tes que agardar 24 horas ou que unha administradora aumente a túa cota diaria.</target> | ||
2528 | <context-group purpose="location"> | 2545 | <context-group purpose="location"> |
2529 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 2546 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
2530 | <context context-type="linenumber">106</context> | 2547 | <context context-type="linenumber">106</context> |
2531 | </context-group> | 2548 | </context-group> |
2532 | </trans-unit><trans-unit id="6796692581512042469" datatype="html"> | 2549 | </trans-unit> |
2533 | <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> | 2550 | <trans-unit id="6796692581512042469" datatype="html"> |
2551 | <source>Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.</source> | ||
2552 | <target state="translated">A túa cota de vídeo non é suficiente. Se queres engadir máis vídeos unha administradora ten que aumentar a túa cota.</target> | ||
2534 | <context-group purpose="location"> | 2553 | <context-group purpose="location"> |
2535 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 2554 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
2536 | <context context-type="linenumber">108</context> | 2555 | <context context-type="linenumber">108</context> |
@@ -2539,8 +2558,8 @@ The link will expire within 1 hour.</source> | |||
2539 | <trans-unit id="2587226585711833549" datatype="html"> | 2558 | <trans-unit id="2587226585711833549" datatype="html"> |
2540 | <source>Read instance rules for help</source> | 2559 | <source>Read instance rules for help</source> |
2541 | <target state="translated">Le as regras da instancia para ter axuda</target> | 2560 | <target state="translated">Le as regras da instancia para ter axuda</target> |
2542 | 2561 | <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> | |
2543 | <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> | 2562 | </trans-unit> |
2544 | <trans-unit id="3455474330346212563" datatype="html"> | 2563 | <trans-unit id="3455474330346212563" datatype="html"> |
2545 | <source>Select the torrent to import</source> | 2564 | <source>Select the torrent to import</source> |
2546 | <target state="translated">Escolle o torrent a importar</target> | 2565 | <target state="translated">Escolle o torrent a importar</target> |
@@ -2570,18 +2589,18 @@ The link will expire within 1 hour.</source> | |||
2570 | <trans-unit id="7860848084471862305" datatype="html"> | 2589 | <trans-unit id="7860848084471862305" datatype="html"> |
2571 | <source>Cannot create live because this instance have too many created lives</source> | 2590 | <source>Cannot create live because this instance have too many created lives</source> |
2572 | <target state="translated">Non se pode iniciar o directo porque esta instancia xa ten moitos directos iniciados</target> | 2591 | <target state="translated">Non se pode iniciar o directo porque esta instancia xa ten moitos directos iniciados</target> |
2573 | 2592 | <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">101</context></context-group> | |
2574 | <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">101</context></context-group></trans-unit> | 2593 | </trans-unit> |
2575 | <trans-unit id="1278564497286613571" datatype="html"> | 2594 | <trans-unit id="1278564497286613571" datatype="html"> |
2576 | <source>Cannot create live because you created too many lives</source> | 2595 | <source>Cannot create live because you created too many lives</source> |
2577 | <target state="translated">Non se pode iniciar o directo porque creaches moitos directos</target> | 2596 | <target state="translated">Non se pode iniciar o directo porque creaches moitos directos</target> |
2578 | 2597 | <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> | |
2579 | <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> | 2598 | </trans-unit> |
2580 | <trans-unit id="2621043320678012413" datatype="html"> | 2599 | <trans-unit id="2621043320678012413" datatype="html"> |
2581 | <source>Live published.</source> | 2600 | <source>Live published.</source> |
2582 | <target state="translated">Publicado o Directo.</target> | 2601 | <target state="translated">Publicado o Directo.</target> |
2583 | 2602 | <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> | |
2584 | <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> | 2603 | </trans-unit> |
2585 | <trans-unit id="8218579597782287078" datatype="html"> | 2604 | <trans-unit id="8218579597782287078" datatype="html"> |
2586 | <source>Go Live</source> | 2605 | <source>Go Live</source> |
2587 | <target state="translated">Emite en Directo</target> | 2606 | <target state="translated">Emite en Directo</target> |
@@ -2595,38 +2614,38 @@ The link will expire within 1 hour.</source> | |||
2595 | <trans-unit id="2993949426196989262" datatype="html"> | 2614 | <trans-unit id="2993949426196989262" datatype="html"> |
2596 | <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> | 2615 | <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> |
2597 | <target state="translated">Non che recomendamos usar <x id="START_TAG_STRONG"/>root<x id="CLOSE_TAG_STRONG"/> para publicar vídeos, porque é a conta de administración da túa instancia. <x id="LINE_BREAK"/> No seu lugar, <x id="START_LINK"/>crea unha conta dedicada<x id="CLOSE_LINK"/> para subir os vídeos. </target> | 2616 | <target state="translated">Non che recomendamos usar <x id="START_TAG_STRONG"/>root<x id="CLOSE_TAG_STRONG"/> para publicar vídeos, porque é a conta de administración da túa instancia. <x id="LINE_BREAK"/> No seu lugar, <x id="START_LINK"/>crea unha conta dedicada<x id="CLOSE_LINK"/> para subir os vídeos. </target> |
2598 | 2617 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">34</context></context-group> | |
2599 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 2618 | </trans-unit> |
2600 | <trans-unit id="293476877021544115" datatype="html"> | 2619 | <trans-unit id="293476877021544115" datatype="html"> |
2601 | <source>Import <x id="INTERPOLATION"/></source> | 2620 | <source>Import <x id="INTERPOLATION"/></source> |
2602 | <target state="translated">Importa <x id="INTERPOLATION"/></target> | 2621 | <target state="translated">Importa <x id="INTERPOLATION"/></target> |
2603 | 2622 | <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> | |
2604 | <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> | 2623 | </trans-unit> |
2605 | <trans-unit id="4766833966971572147" datatype="html"> | 2624 | <trans-unit id="4766833966971572147" datatype="html"> |
2606 | <source>Upload <x id="INTERPOLATION"/></source> | 2625 | <source>Upload <x id="INTERPOLATION"/></source> |
2607 | <target state="translated">Sube <x id="INTERPOLATION"/></target> | 2626 | <target state="translated">Sube <x id="INTERPOLATION"/></target> |
2608 | 2627 | <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> | |
2609 | <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> | 2628 | </trans-unit> |
2610 | <trans-unit id="7003826819757856838" datatype="html"> | 2629 | <trans-unit id="7003826819757856838" datatype="html"> |
2611 | <source>Upload a file</source> | 2630 | <source>Upload a file</source> |
2612 | <target state="translated">Sube un ficheiro</target> | 2631 | <target state="translated">Sube un ficheiro</target> |
2613 | 2632 | <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> | |
2614 | <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> | 2633 | </trans-unit> |
2615 | <trans-unit id="2061223017941329156" datatype="html"> | 2634 | <trans-unit id="2061223017941329156" datatype="html"> |
2616 | <source>Import with URL</source> | 2635 | <source>Import with URL</source> |
2617 | <target state="translated">Importa con URL</target> | 2636 | <target state="translated">Importa con URL</target> |
2618 | 2637 | <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> | |
2619 | <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> | 2638 | </trans-unit> |
2620 | <trans-unit id="8740142697043012403" datatype="html"> | 2639 | <trans-unit id="8740142697043012403" datatype="html"> |
2621 | <source>Import with torrent</source> | 2640 | <source>Import with torrent</source> |
2622 | <target state="translated">Importa con torrent</target> | 2641 | <target state="translated">Importa con torrent</target> |
2623 | 2642 | <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> | |
2624 | <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> | 2643 | </trans-unit> |
2625 | <trans-unit id="6066940329544282265" datatype="html"> | 2644 | <trans-unit id="6066940329544282265" datatype="html"> |
2626 | <source>Go live</source> | 2645 | <source>Go live</source> |
2627 | <target state="translated">En Directo</target> | 2646 | <target state="translated">En Directo</target> |
2628 | 2647 | <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> | |
2629 | <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> | 2648 | </trans-unit> |
2630 | <trans-unit id="3907889591911208762" datatype="html"> | 2649 | <trans-unit id="3907889591911208762" datatype="html"> |
2631 | <source>Other videos</source> | 2650 | <source>Other videos</source> |
2632 | <target state="translated">Outros vídeos</target> | 2651 | <target state="translated">Outros vídeos</target> |
@@ -2959,30 +2978,30 @@ The link will expire within 1 hour.</source> | |||
2959 | <trans-unit id="6390009909920475335" datatype="html"> | 2978 | <trans-unit id="6390009909920475335" datatype="html"> |
2960 | <source>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 </source> | 2979 | <source>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 </source> |
2961 | <target state="translated">Ver <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/> desde <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> e outras </target> | 2980 | <target state="translated">Ver <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/> desde <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> e outras </target> |
2962 | 2981 | <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> | |
2963 | <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></trans-unit> | 2982 | </trans-unit> |
2964 | <trans-unit id="4036338619293319383" datatype="html"> | 2983 | <trans-unit id="4036338619293319383" datatype="html"> |
2965 | <source>{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</source> | 2984 | <source>{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</source> |
2966 | <target state="translated">{VAR_PLURAL, plural, =1 {1 resposta} other {<x id="INTERPOLATION"/> respostas}}</target> | 2985 | <target state="translated">{VAR_PLURAL, plural, =1 {1 resposta} other {<x id="INTERPOLATION"/> respostas}}</target> |
2967 | 2986 | <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> | |
2968 | 2987 | <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> | |
2969 | 2988 | <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> | |
2970 | <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> | 2989 | </trans-unit> |
2971 | <trans-unit id="127329338495775339" datatype="html"> | 2990 | <trans-unit id="127329338495775339" datatype="html"> |
2972 | <source>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' }}"/> </source> | 2991 | <source>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' }}"/> </source> |
2973 | <target state="translated">Ver <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/> desde <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> </target> | 2992 | <target state="translated">Ver <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/> desde <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> </target> |
2974 | 2993 | <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> | |
2975 | <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></trans-unit> | 2994 | </trans-unit> |
2976 | <trans-unit id="5535545444690528619" datatype="html"> | 2995 | <trans-unit id="5535545444690528619" datatype="html"> |
2977 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></source> | 2996 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></source> |
2978 | <target state="translated">Ver <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></target> | 2997 | <target state="translated">Ver <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></target> |
2979 | 2998 | <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> | |
2980 | <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> | 2999 | </trans-unit> |
2981 | <trans-unit id="1055254162789146714" datatype="html"> | 3000 | <trans-unit id="1055254162789146714" datatype="html"> |
2982 | <source>Comments are disabled.</source> | 3001 | <source>Comments are disabled.</source> |
2983 | <target state="translated">Non se permite comentar.</target> | 3002 | <target state="translated">Non se permite comentar.</target> |
2984 | 3003 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">92</context></context-group> | |
2985 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> | 3004 | </trans-unit> |
2986 | <trans-unit id="3691787517663044217" datatype="html"> | 3005 | <trans-unit id="3691787517663044217" datatype="html"> |
2987 | <source>The deletion will be sent to remote instances so they can reflect the change.</source> | 3006 | <source>The deletion will be sent to remote instances so they can reflect the change.</source> |
2988 | <target state="translated">A eliminación será enviada a instancias remotas para que poidan aplicar o cambio.</target> | 3007 | <target state="translated">A eliminación será enviada a instancias remotas para que poidan aplicar o cambio.</target> |
@@ -3207,8 +3226,9 @@ The link will expire within 1 hour.</source> | |||
3207 | <trans-unit id="6559246822757089203" datatype="html"> | 3226 | <trans-unit id="6559246822757089203" datatype="html"> |
3208 | <source>Clear filters</source> | 3227 | <source>Clear filters</source> |
3209 | <target state="translated">Eliminar filtros</target> | 3228 | <target state="translated">Eliminar filtros</target> |
3210 | 3229 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.component.html</context><context context-type="linenumber">23</context></context-group> | |
3211 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.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/simple-search-input.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 3230 | <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> |
3231 | </trans-unit> | ||
3212 | <trans-unit id="4266779970063047572" datatype="html"> | 3232 | <trans-unit id="4266779970063047572" datatype="html"> |
3213 | <source>Video/Comment/Account</source> | 3233 | <source>Video/Comment/Account</source> |
3214 | <target state="translated">Vídeo/Comentario/Conta</target> | 3234 | <target state="translated">Vídeo/Comentario/Conta</target> |
@@ -3292,9 +3312,8 @@ The link will expire within 1 hour.</source> | |||
3292 | <trans-unit id="9160510009013134726" datatype="html"> | 3312 | <trans-unit id="9160510009013134726" datatype="html"> |
3293 | <source>Unfollow</source> | 3313 | <source>Unfollow</source> |
3294 | <target state="translated">Deixar de seguir</target> | 3314 | <target state="translated">Deixar de seguir</target> |
3295 | 3315 | <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> | |
3296 | 3316 | </trans-unit> | |
3297 | <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> | ||
3298 | <trans-unit id="8246779176913476983" datatype="html"> | 3317 | <trans-unit id="8246779176913476983" datatype="html"> |
3299 | <source>Open instance in a new tab</source> | 3318 | <source>Open instance in a new tab</source> |
3300 | <target state="translated">Abrir instancia en nova lapela</target> | 3319 | <target state="translated">Abrir instancia en nova lapela</target> |
@@ -4027,14 +4046,14 @@ The link will expire within 1 hour.</source> | |||
4027 | <trans-unit id="4580988005648117665" datatype="html"> | 4046 | <trans-unit id="4580988005648117665" datatype="html"> |
4028 | <source>Search</source> | 4047 | <source>Search</source> |
4029 | <target state="translated">Buscar</target> | 4048 | <target state="translated">Buscar</target> |
4030 | 4049 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">5</context></context-group> | |
4031 | 4050 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">12</context></context-group> | |
4032 | 4051 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">260</context></context-group> | |
4033 | 4052 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">8</context></context-group> | |
4034 | 4053 | <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> | |
4035 | 4054 | <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> | |
4036 | 4055 | <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> | |
4037 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">5</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">260</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> | 4056 | </trans-unit> |
4038 | <trans-unit id="8630916846096019339" datatype="html"> | 4057 | <trans-unit id="8630916846096019339" datatype="html"> |
4039 | <source>Users can resolve distant content</source> | 4058 | <source>Users can resolve distant content</source> |
4040 | <target state="translated">As usuarias poden resolver contido distante</target> | 4059 | <target state="translated">As usuarias poden resolver contido distante</target> |
@@ -4065,29 +4084,29 @@ The link will expire within 1 hour.</source> | |||
4065 | <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">36</context></context-group> | 4084 | <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">36</context></context-group> |
4066 | <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> | 4085 | <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> |
4067 | </trans-unit> | 4086 | </trans-unit> |
4068 | |||
4069 | <trans-unit id="2144158274184161635" datatype="html"> | 4087 | <trans-unit id="2144158274184161635" datatype="html"> |
4070 | <source>Videos with the most interactions for recent videos</source> | 4088 | <source>Videos with the most interactions for recent videos</source> |
4071 | <target state="translated">Vídeos con máis interaccións para os vídeos recentes</target> | 4089 | <target state="translated">Vídeos con máis interaccións para os vídeos recentes</target> |
4072 | 4090 | <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> | |
4073 | <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> | 4091 | </trans-unit> |
4074 | <trans-unit id="8312243926314494468" datatype="html"> | 4092 | <trans-unit id="8312243926314494468" datatype="html"> |
4075 | <source>Videos with the most views during the last 24 hours</source> | 4093 | <source>Videos with the most views during the last 24 hours</source> |
4076 | <target state="translated">Vídeos con máis visualizacións nas últimas 24 horas</target> | 4094 | <target state="translated">Vídeos con máis visualizacións nas últimas 24 horas</target> |
4077 | 4095 | <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> | |
4078 | <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"> | 4096 | </trans-unit> |
4079 | <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> | 4097 | <trans-unit id="8731139416455609016" datatype="html"> |
4098 | <source>Videos with the most views during the last <x id="PH" equiv-text="this.trendingDays"/> days</source> | ||
4099 | <target state="translated">Vídeos con máis visualizacións non últimos <x id="PH" equiv-text="this.trendingDays"/> días</target> | ||
4080 | <context-group purpose="location"> | 4100 | <context-group purpose="location"> |
4081 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> | 4101 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> |
4082 | <context context-type="linenumber">209</context> | 4102 | <context context-type="linenumber">209</context> |
4083 | </context-group> | 4103 | </context-group> |
4084 | </trans-unit> | 4104 | </trans-unit> |
4085 | |||
4086 | <trans-unit id="1671858302647356245" datatype="html"> | 4105 | <trans-unit id="1671858302647356245" datatype="html"> |
4087 | <source>Videos that have the most likes</source> | 4106 | <source>Videos that have the most likes</source> |
4088 | <target state="translated">Vídeos con máis likes</target> | 4107 | <target state="translated">Vídeos con máis likes</target> |
4089 | 4108 | <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> | |
4090 | <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> | 4109 | </trans-unit> |
4091 | <trans-unit id="2006841089844688970" datatype="html"> | 4110 | <trans-unit id="2006841089844688970" datatype="html"> |
4092 | <source>To load your new installed plugins or themes, refresh the page.</source> | 4111 | <source>To load your new installed plugins or themes, refresh the page.</source> |
4093 | <target state="translated">Para cargar os novos plugins ou decorados instalados, actualiza a páxina.</target> | 4112 | <target state="translated">Para cargar os novos plugins ou decorados instalados, actualiza a páxina.</target> |
@@ -4315,38 +4334,39 @@ The link will expire within 1 hour.</source> | |||
4315 | <trans-unit id="6588040559347368313" datatype="html"> | 4334 | <trans-unit id="6588040559347368313" datatype="html"> |
4316 | <source>Add a new category</source> | 4335 | <source>Add a new category</source> |
4317 | <target state="translated">Engadir unha nova categoría</target> | 4336 | <target state="translated">Engadir unha nova categoría</target> |
4318 | 4337 | <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> | |
4319 | <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> | 4338 | <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> |
4339 | </trans-unit> | ||
4320 | <trans-unit id="8953934448427251062" datatype="html"> | 4340 | <trans-unit id="8953934448427251062" datatype="html"> |
4321 | <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> | 4341 | <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> |
4322 | <target state="translated">O <x id="START_LINK"/>sistema compartido<x id="CLOSE_LINK"/> implica que algunha información técnica acerca do teu sistema (como o enderezo IP público) pode ser enviado a outras usuarias, pero reduce grandemente a carga do servidor.</target> | 4342 | <target state="translated">O <x id="START_LINK"/>sistema compartido<x id="CLOSE_LINK"/> implica que algunha información técnica acerca do teu sistema (como o enderezo IP público) pode ser enviado a outras usuarias, pero reduce grandemente a carga do servidor.</target> |
4323 | 4343 | <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> | |
4324 | <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> | 4344 | </trans-unit> |
4325 | <trans-unit id="34094919610906740" datatype="html"> | 4345 | <trans-unit id="34094919610906740" datatype="html"> |
4326 | <source>Help share videos being played</source> | 4346 | <source>Help share videos being played</source> |
4327 | <target state="translated">Axuda a compartir vídeos reproducidos</target> | 4347 | <target state="translated">Axuda a compartir vídeos reproducidos</target> |
4328 | 4348 | <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> | |
4329 | <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> | 4349 | </trans-unit> |
4330 | <trans-unit id="6236140336967052987" datatype="html"> | 4350 | <trans-unit id="6236140336967052987" datatype="html"> |
4331 | <source>When on a video page, directly start playing the video.</source> | 4351 | <source>When on a video page, directly start playing the video.</source> |
4332 | <target state="translated">Na páxina dun vídeo, iniciar a reprodución automáticamente.</target> | 4352 | <target state="translated">Na páxina dun vídeo, iniciar a reprodución automáticamente.</target> |
4333 | 4353 | <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> | |
4334 | <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> | 4354 | </trans-unit> |
4335 | <trans-unit id="9135112681389493865" datatype="html"> | 4355 | <trans-unit id="9135112681389493865" datatype="html"> |
4336 | <source>Automatically play videos</source> | 4356 | <source>Automatically play videos</source> |
4337 | <target state="translated">Reproducir automáticamente</target> | 4357 | <target state="translated">Reproducir automáticamente</target> |
4338 | 4358 | <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> | |
4339 | <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> | 4359 | </trans-unit> |
4340 | <trans-unit id="575474399125992547" datatype="html"> | 4360 | <trans-unit id="575474399125992547" datatype="html"> |
4341 | <source>When a video ends, follow up with the next suggested video.</source> | 4361 | <source>When a video ends, follow up with the next suggested video.</source> |
4342 | <target state="translated">Ó rematar o vídeo, reproduce o seguinte vídeo suxerido.</target> | 4362 | <target state="translated">Ó rematar o vídeo, reproduce o seguinte vídeo suxerido.</target> |
4343 | 4363 | <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> | |
4344 | <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> | 4364 | </trans-unit> |
4345 | <trans-unit id="2701970773087072815" datatype="html"> | 4365 | <trans-unit id="2701970773087072815" datatype="html"> |
4346 | <source>Automatically start playing the next video</source> | 4366 | <source>Automatically start playing the next video</source> |
4347 | <target state="translated">Reproducir automáticamente o seguinte vídeo</target> | 4367 | <target state="translated">Reproducir automáticamente o seguinte vídeo</target> |
4348 | 4368 | <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> | |
4349 | <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> | 4369 | </trans-unit> |
4350 | <trans-unit id="5983800192187691457" datatype="html"> | 4370 | <trans-unit id="5983800192187691457" datatype="html"> |
4351 | <source>Main languages you/your moderators speak</source> | 4371 | <source>Main languages you/your moderators speak</source> |
4352 | <target state="translated">Idiomas principais que ti ou os teus moderadores falades</target> | 4372 | <target state="translated">Idiomas principais que ti ou os teus moderadores falades</target> |
@@ -4820,8 +4840,8 @@ The link will expire within 1 hour.</source> | |||
4820 | <trans-unit id="2149300564474427551"> | 4840 | <trans-unit id="2149300564474427551"> |
4821 | <source>Administrator</source> | 4841 | <source>Administrator</source> |
4822 | <target>Administración</target> | 4842 | <target>Administración</target> |
4823 | 4843 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group> | |
4824 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group></trans-unit> | 4844 | </trans-unit> |
4825 | <trans-unit id="3171683206914962995"> | 4845 | <trans-unit id="3171683206914962995"> |
4826 | <source>Admin email</source> | 4846 | <source>Admin email</source> |
4827 | <target>Correo-e da Admin</target> | 4847 | <target>Correo-e da Admin</target> |
@@ -5304,106 +5324,138 @@ color: red; | |||
5304 | <source>Channel Layout</source> | 5324 | <source>Channel Layout</source> |
5305 | <target state="translated">Disposición da canle</target> | 5325 | <target state="translated">Disposición da canle</target> |
5306 | <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> | 5326 | <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> |
5307 | </trans-unit><trans-unit id="6317170736181476800" datatype="html"> | 5327 | </trans-unit> |
5308 | <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 | 5328 | <trans-unit id="6317170736181476800" datatype="html"> |
5309 | >"/></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 | 5329 | <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> |
5310 | >"/></target> | 5330 | <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> |
5311 | <context-group purpose="location"> | 5331 | <context-group purpose="location"> |
5312 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5332 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5313 | <context context-type="linenumber">3,7</context> | 5333 | <context context-type="linenumber">3,7</context> |
5314 | </context-group> | 5334 | </context-group> |
5315 | </trans-unit><trans-unit id="1405600824334286337" datatype="html"> | 5335 | </trans-unit> |
5316 | <source>More filters</source><target state="new">More filters</target> | 5336 | <trans-unit id="1405600824334286337" datatype="html"> |
5337 | <source>More filters</source> | ||
5338 | <target state="translated">Máis filtros</target> | ||
5317 | <context-group purpose="location"> | 5339 | <context-group purpose="location"> |
5318 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5340 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5319 | <context context-type="linenumber">20</context> | 5341 | <context context-type="linenumber">20</context> |
5320 | </context-group> | 5342 | </context-group> |
5321 | </trans-unit><trans-unit id="8867436033163146458" datatype="html"> | 5343 | </trans-unit> |
5322 | <source>Less filters</source><target state="new">Less filters</target> | 5344 | <trans-unit id="8867436033163146458" datatype="html"> |
5345 | <source>Less filters</source> | ||
5346 | <target state="translated">Menos filtros</target> | ||
5323 | <context-group purpose="location"> | 5347 | <context-group purpose="location"> |
5324 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5348 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5325 | <context context-type="linenumber">21</context> | 5349 | <context context-type="linenumber">21</context> |
5326 | </context-group> | 5350 | </context-group> |
5327 | </trans-unit><trans-unit id="7028708681117573961" datatype="html"> | 5351 | </trans-unit> |
5328 | <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> | 5352 | <trans-unit id="7028708681117573961" datatype="html"> |
5353 | <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> | ||
5354 | <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> | ||
5329 | <context-group purpose="location"> | 5355 | <context-group purpose="location"> |
5330 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5356 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5331 | <context context-type="linenumber">46</context> | 5357 | <context context-type="linenumber">46</context> |
5332 | </context-group> | 5358 | </context-group> |
5333 | </trans-unit><trans-unit id="5691258609562173281" datatype="html"> | 5359 | </trans-unit> |
5334 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"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>"/>"Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5360 | <trans-unit id="5691258609562173281" datatype="html"> |
5361 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | ||
5362 | <target state="translated">Orde por <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Visualizacións"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
5335 | <context-group purpose="location"> | 5363 | <context-group purpose="location"> |
5336 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5364 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5337 | <context context-type="linenumber">48</context> | 5365 | <context context-type="linenumber">48</context> |
5338 | </context-group> | 5366 | </context-group> |
5339 | </trans-unit><trans-unit id="3224510615614621760" datatype="html"> | 5367 | </trans-unit> |
5340 | <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> | 5368 | <trans-unit id="3224510615614621760" datatype="html"> |
5369 | <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> | ||
5370 | <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> | ||
5341 | <context-group purpose="location"> | 5371 | <context-group purpose="location"> |
5342 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5372 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5343 | <context context-type="linenumber">49</context> | 5373 | <context context-type="linenumber">49</context> |
5344 | </context-group> | 5374 | </context-group> |
5345 | </trans-unit><trans-unit id="3082811226222076503" datatype="html"> | 5375 | </trans-unit> |
5346 | <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> | 5376 | <trans-unit id="3082811226222076503" datatype="html"> |
5377 | <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> | ||
5378 | <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> | ||
5347 | <context-group purpose="location"> | 5379 | <context-group purpose="location"> |
5348 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5380 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5349 | <context context-type="linenumber">50</context> | 5381 | <context context-type="linenumber">50</context> |
5350 | </context-group> | 5382 | </context-group> |
5351 | </trans-unit><trans-unit id="4322133526902910662" datatype="html"> | 5383 | </trans-unit> |
5352 | <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> | 5384 | <trans-unit id="4322133526902910662" datatype="html"> |
5385 | <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> | ||
5386 | <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> | ||
5353 | <context-group purpose="location"> | 5387 | <context-group purpose="location"> |
5354 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5388 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5355 | <context context-type="linenumber">51</context> | 5389 | <context context-type="linenumber">51</context> |
5356 | </context-group> | 5390 | </context-group> |
5357 | </trans-unit><trans-unit id="2343321245279384373" datatype="html"> | 5391 | </trans-unit> |
5358 | <source>Languages:</source><target state="new">Languages:</target> | 5392 | <trans-unit id="2343321245279384373" datatype="html"> |
5393 | <source>Languages:</source> | ||
5394 | <target state="translated">Idiomas:</target> | ||
5359 | <context-group purpose="location"> | 5395 | <context-group purpose="location"> |
5360 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5396 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5361 | <context context-type="linenumber">59</context> | 5397 | <context context-type="linenumber">59</context> |
5362 | </context-group> | 5398 | </context-group> |
5363 | </trans-unit><trans-unit id="5063779773341398537" datatype="html"> | 5399 | </trans-unit> |
5364 | <source>Sensitive content:</source><target state="new">Sensitive content:</target> | 5400 | <trans-unit id="5063779773341398537" datatype="html"> |
5401 | <source>Sensitive content:</source> | ||
5402 | <target state="translated">Contido sensible:</target> | ||
5365 | <context-group purpose="location"> | 5403 | <context-group purpose="location"> |
5366 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5404 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5367 | <context context-type="linenumber">66</context> | 5405 | <context context-type="linenumber">66</context> |
5368 | </context-group> | 5406 | </context-group> |
5369 | </trans-unit><trans-unit id="5723033003381016192" datatype="html"> | 5407 | </trans-unit> |
5370 | <source>Scope:</source><target state="new">Scope:</target> | 5408 | <trans-unit id="5723033003381016192" datatype="html"> |
5409 | <source>Scope:</source> | ||
5410 | <target state="translated">Ámbito:</target> | ||
5371 | <context-group purpose="location"> | 5411 | <context-group purpose="location"> |
5372 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5412 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5373 | <context context-type="linenumber">81</context> | 5413 | <context context-type="linenumber">81</context> |
5374 | </context-group> | 5414 | </context-group> |
5375 | </trans-unit><trans-unit id="8481241275509347668" datatype="html"> | 5415 | </trans-unit> |
5376 | <source>Local videos (this instance)</source><target state="new">Local videos (this instance)</target> | 5416 | <trans-unit id="8481241275509347668" datatype="html"> |
5417 | <source>Local videos (this instance)</source> | ||
5418 | <target state="translated">Vídeos locais (esta instancia)</target> | ||
5377 | <context-group purpose="location"> | 5419 | <context-group purpose="location"> |
5378 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5420 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5379 | <context context-type="linenumber">85</context> | 5421 | <context context-type="linenumber">85</context> |
5380 | </context-group> | 5422 | </context-group> |
5381 | </trans-unit><trans-unit id="8383401711408398806" datatype="html"> | 5423 | </trans-unit> |
5382 | <source>Federated videos (this instance + followed instances)</source><target state="new">Federated videos (this instance + followed instances)</target> | 5424 | <trans-unit id="8383401711408398806" datatype="html"> |
5425 | <source>Federated videos (this instance + followed instances)</source> | ||
5426 | <target state="translated">Vídeos federados (esta instancia + instancias seguidas)</target> | ||
5383 | <context-group purpose="location"> | 5427 | <context-group purpose="location"> |
5384 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5428 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5385 | <context context-type="linenumber">90</context> | 5429 | <context context-type="linenumber">90</context> |
5386 | </context-group> | 5430 | </context-group> |
5387 | </trans-unit><trans-unit id="2736556170366900089" datatype="html"> | 5431 | </trans-unit> |
5388 | <source>Type:</source><target state="new">Type:</target> | 5432 | <trans-unit id="2736556170366900089" datatype="html"> |
5433 | <source>Type:</source> | ||
5434 | <target state="translated">Tipo:</target> | ||
5389 | <context-group purpose="location"> | 5435 | <context-group purpose="location"> |
5390 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5436 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5391 | <context context-type="linenumber">95</context> | 5437 | <context context-type="linenumber">95</context> |
5392 | </context-group> | 5438 | </context-group> |
5393 | </trans-unit><trans-unit id="1744425032255703211" datatype="html"> | 5439 | </trans-unit> |
5394 | <source>VOD & Live videos</source><target state="new">VOD & Live videos</target> | 5440 | <trans-unit id="1744425032255703211" datatype="html"> |
5441 | <source>VOD & Live videos</source> | ||
5442 | <target state="translated">VOD & Vídeos en directo</target> | ||
5395 | <context-group purpose="location"> | 5443 | <context-group purpose="location"> |
5396 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5444 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5397 | <context context-type="linenumber">99</context> | 5445 | <context context-type="linenumber">99</context> |
5398 | </context-group> | 5446 | </context-group> |
5399 | </trans-unit><trans-unit id="1370537846415473089" datatype="html"> | 5447 | </trans-unit> |
5400 | <source>Categories:</source><target state="new">Categories:</target> | 5448 | <trans-unit id="1370537846415473089" datatype="html"> |
5449 | <source>Categories:</source> | ||
5450 | <target state="translated">Categorías:</target> | ||
5401 | <context-group purpose="location"> | 5451 | <context-group purpose="location"> |
5402 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5452 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5403 | <context context-type="linenumber">114</context> | 5453 | <context context-type="linenumber">114</context> |
5404 | </context-group> | 5454 | </context-group> |
5405 | </trans-unit><trans-unit id="4250125031269088402" datatype="html"> | 5455 | </trans-unit> |
5406 | <source>Moderation:</source><target state="new">Moderation:</target> | 5456 | <trans-unit id="4250125031269088402" datatype="html"> |
5457 | <source>Moderation:</source> | ||
5458 | <target state="translated">Moderación:</target> | ||
5407 | <context-group purpose="location"> | 5459 | <context-group purpose="location"> |
5408 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5460 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5409 | <context context-type="linenumber">120</context> | 5461 | <context context-type="linenumber">120</context> |
@@ -5473,9 +5525,9 @@ color: red; | |||
5473 | <trans-unit id="2658703380934466003" datatype="html"> | 5525 | <trans-unit id="2658703380934466003" datatype="html"> |
5474 | <source>Add a new language</source> | 5526 | <source>Add a new language</source> |
5475 | <target state="translated">Engade un novo idioma</target> | 5527 | <target state="translated">Engade un novo idioma</target> |
5476 | 5528 | <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> | |
5477 | 5529 | <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> | |
5478 | <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> | 5530 | </trans-unit> |
5479 | <trans-unit id="1530331428384894781" datatype="html"> | 5531 | <trans-unit id="1530331428384894781" datatype="html"> |
5480 | <source><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> is awaiting email verification </source> | 5532 | <source><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> is awaiting email verification </source> |
5481 | <target state="translated"><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> está agardando a verficación do email </target> | 5533 | <target state="translated"><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> está agardando a verficación do email </target> |
@@ -5510,9 +5562,9 @@ color: red; | |||
5510 | <trans-unit id="4844578664427956129" datatype="html"> | 5562 | <trans-unit id="4844578664427956129" datatype="html"> |
5511 | <source>Change ownership</source> | 5563 | <source>Change ownership</source> |
5512 | <target state="translated">Cambiar propietaria</target> | 5564 | <target state="translated">Cambiar propietaria</target> |
5513 | 5565 | <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> | |
5514 | 5566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">180</context></context-group> | |
5515 | <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">180</context></context-group></trans-unit> | 5567 | </trans-unit> |
5516 | <trans-unit id="4561174610228620528" datatype="html"> | 5568 | <trans-unit id="4561174610228620528" datatype="html"> |
5517 | <source>Select the next owner</source> | 5569 | <source>Select the next owner</source> |
5518 | <target state="translated">Elixe a nova propietaria</target> | 5570 | <target state="translated">Elixe a nova propietaria</target> |
@@ -5608,13 +5660,13 @@ color: red; | |||
5608 | <trans-unit id="7000850040589508423" datatype="html"> | 5660 | <trans-unit id="7000850040589508423" datatype="html"> |
5609 | <source>Create video channel</source> | 5661 | <source>Create video channel</source> |
5610 | <target state="translated">Crear canle de vídeo</target> | 5662 | <target state="translated">Crear canle de vídeo</target> |
5611 | 5663 | <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> | |
5612 | <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> | 5664 | </trans-unit> |
5613 | <trans-unit id="5700655611297335752" datatype="html"> | 5665 | <trans-unit id="5700655611297335752" datatype="html"> |
5614 | <source>No channel found.</source> | 5666 | <source>No channel found.</source> |
5615 | <target state="translated">Non se atopan canles.</target> | 5667 | <target state="translated">Non se atopan canles.</target> |
5616 | 5668 | <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> | |
5617 | <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> | 5669 | </trans-unit> |
5618 | <trans-unit id="5500467336262464724"> | 5670 | <trans-unit id="5500467336262464724"> |
5619 | <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers </source> | 5671 | <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers </source> |
5620 | <target> | 5672 | <target> |
@@ -5704,10 +5756,10 @@ color: red; | |||
5704 | <trans-unit id="4000980858407872649" datatype="html"> | 5756 | <trans-unit id="4000980858407872649" datatype="html"> |
5705 | <source>Channel page</source> | 5757 | <source>Channel page</source> |
5706 | <target state="translated">Páxina da canle</target> | 5758 | <target state="translated">Páxina da canle</target> |
5707 | 5759 | <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> | |
5708 | 5760 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">20</context></context-group> | |
5709 | 5761 | <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> | |
5710 | <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-subscriptions/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">67</context></context-group></trans-unit> | 5762 | </trans-unit> |
5711 | <trans-unit id="9131836378905533756" datatype="html"> | 5763 | <trans-unit id="9131836378905533756" datatype="html"> |
5712 | <source>Created by <x id="INTERPOLATION"/></source> | 5764 | <source>Created by <x id="INTERPOLATION"/></source> |
5713 | <target state="translated">Creada por <x id="INTERPOLATION"/></target> | 5765 | <target state="translated">Creada por <x id="INTERPOLATION"/></target> |
@@ -5726,8 +5778,8 @@ color: red; | |||
5726 | <trans-unit id="4781078006040259916" datatype="html"> | 5778 | <trans-unit id="4781078006040259916" datatype="html"> |
5727 | <source>You don't have any video in your watch history yet.</source> | 5779 | <source>You don't have any video in your watch history yet.</source> |
5728 | <target state="translated">Aínda non tes vídeos no teu historial de visualización.</target> | 5780 | <target state="translated">Aínda non tes vídeos no teu historial de visualización.</target> |
5729 | 5781 | <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> | |
5730 | <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> | 5782 | </trans-unit> |
5731 | <trans-unit id="687236465759862933" datatype="html"> | 5783 | <trans-unit id="687236465759862933" datatype="html"> |
5732 | <source>Open syndication dropdown</source> | 5784 | <source>Open syndication dropdown</source> |
5733 | <target state="translated">Abrir despregable de sindicación</target> | 5785 | <target state="translated">Abrir despregable de sindicación</target> |
@@ -5739,14 +5791,18 @@ color: red; | |||
5739 | <context context-type="sourcefile">src/app/shared/shared-main/feeds/feed.component.html</context> | 5791 | <context context-type="sourcefile">src/app/shared/shared-main/feeds/feed.component.html</context> |
5740 | <context context-type="linenumber">3</context> | 5792 | <context context-type="linenumber">3</context> |
5741 | </context-group> | 5793 | </context-group> |
5742 | </trans-unit><trans-unit id="5511928240200239994" datatype="html"> | 5794 | </trans-unit> |
5743 | <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> | 5795 | <trans-unit id="5511928240200239994" datatype="html"> |
5796 | <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> | ||
5797 | <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> | ||
5744 | <context-group purpose="location"> | 5798 | <context-group purpose="location"> |
5745 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> | 5799 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> |
5746 | <context context-type="linenumber">5</context> | 5800 | <context context-type="linenumber">5</context> |
5747 | </context-group> | 5801 | </context-group> |
5748 | </trans-unit><trans-unit id="5339945526545410198" datatype="html"> | 5802 | </trans-unit> |
5749 | <source>Set up my channels</source><target state="new">Set up my channels</target> | 5803 | <trans-unit id="5339945526545410198" datatype="html"> |
5804 | <source>Set up my channels</source> | ||
5805 | <target state="translated">Configurar as miñas canles</target> | ||
5750 | <context-group purpose="location"> | 5806 | <context-group purpose="location"> |
5751 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> | 5807 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> |
5752 | <context context-type="linenumber">6</context> | 5808 | <context context-type="linenumber">6</context> |
@@ -5803,8 +5859,8 @@ color: red; | |||
5803 | <trans-unit id="3438686710205841496" datatype="html"> | 5859 | <trans-unit id="3438686710205841496" datatype="html"> |
5804 | <source>Create playlist</source> | 5860 | <source>Create playlist</source> |
5805 | <target state="translated">Crear listaxe</target> | 5861 | <target state="translated">Crear listaxe</target> |
5806 | 5862 | <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> | |
5807 | <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> | 5863 | </trans-unit> |
5808 | <trans-unit id="7040375308762081154" datatype="html"> | 5864 | <trans-unit id="7040375308762081154" datatype="html"> |
5809 | <source>My video channels</source> | 5865 | <source>My video channels</source> |
5810 | <target state="translated">As miñas canles</target> | 5866 | <target state="translated">As miñas canles</target> |
@@ -5850,8 +5906,10 @@ color: red; | |||
5850 | <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> | 5906 | <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> |
5851 | <target state="translated">Se precisas axuda para usar PeerTube, podes ler a <x id="START_LINK"/>documentación<x id="CLOSE_LINK"/>. </target> | 5907 | <target state="translated">Se precisas axuda para usar PeerTube, podes ler a <x id="START_LINK"/>documentación<x id="CLOSE_LINK"/>. </target> |
5852 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">14</context></context-group> | 5908 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">14</context></context-group> |
5853 | </trans-unit><trans-unit id="8844610145426272276" datatype="html"> | 5909 | </trans-unit> |
5854 | <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> | 5910 | <trans-unit id="8844610145426272276" datatype="html"> |
5911 | <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> | ||
5912 | <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> | ||
5855 | <context-group purpose="location"> | 5913 | <context-group purpose="location"> |
5856 | <context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context> | 5914 | <context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context> |
5857 | <context context-type="linenumber">18,19</context> | 5915 | <context context-type="linenumber">18,19</context> |
@@ -5962,12 +6020,12 @@ color: red; | |||
5962 | <trans-unit id="403587185492002456" datatype="html"> | 6020 | <trans-unit id="403587185492002456" datatype="html"> |
5963 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> | 6021 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> |
5964 | <target state="translated">{VAR_PLURAL, plural, =1 {1 subscritora} other {<x id="INTERPOLATION"/> subscritoras}}</target> | 6022 | <target state="translated">{VAR_PLURAL, plural, =1 {1 subscritora} other {<x id="INTERPOLATION"/> subscritoras}}</target> |
5965 | 6023 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">23</context></context-group> | |
5966 | 6024 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">38</context></context-group> | |
5967 | 6025 | <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">30</context></context-group> | |
5968 | 6026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">73</context></context-group> | |
5969 | 6027 | <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> | |
5970 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">23</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">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">73</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> | 6028 | </trans-unit> |
5971 | <trans-unit id="3068011377000255023" datatype="html"> | 6029 | <trans-unit id="3068011377000255023" datatype="html"> |
5972 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> | 6030 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> |
5973 | <target state="translated">{VAR_PLURAL, plural, =1 {1 vídeo} other {<x id="INTERPOLATION"/> vídeos}}</target> | 6031 | <target state="translated">{VAR_PLURAL, plural, =1 {1 vídeo} other {<x id="INTERPOLATION"/> vídeos}}</target> |
@@ -6009,8 +6067,8 @@ color: red; | |||
6009 | <trans-unit id="5512878593724620692" datatype="html"> | 6067 | <trans-unit id="5512878593724620692" datatype="html"> |
6010 | <source>CHANNELS</source> | 6068 | <source>CHANNELS</source> |
6011 | <target state="translated">CANLES</target> | 6069 | <target state="translated">CANLES</target> |
6012 | 6070 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">81</context></context-group> | |
6013 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 6071 | </trans-unit> |
6014 | <trans-unit id="3666829335406793239" datatype="html"> | 6072 | <trans-unit id="3666829335406793239" datatype="html"> |
6015 | <source>This account does not have channels.</source> | 6073 | <source>This account does not have channels.</source> |
6016 | <target state="translated">Esta conta non ten canles.</target> | 6074 | <target state="translated">Esta conta non ten canles.</target> |
@@ -6129,7 +6187,6 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6129 | <context context-type="linenumber">16</context> | 6187 | <context context-type="linenumber">16</context> |
6130 | </context-group> | 6188 | </context-group> |
6131 | </trans-unit> | 6189 | </trans-unit> |
6132 | |||
6133 | <trans-unit id="8203367621031610680" datatype="html"> | 6190 | <trans-unit id="8203367621031610680" datatype="html"> |
6134 | <source>Your name</source> | 6191 | <source>Your name</source> |
6135 | <target state="translated">O teu nome</target> | 6192 | <target state="translated">O teu nome</target> |
@@ -6154,8 +6211,10 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6154 | <source>About <x id="INTERPOLATION"/></source> | 6211 | <source>About <x id="INTERPOLATION"/></source> |
6155 | <target state="translated">Acerca de <x id="INTERPOLATION"/></target> | 6212 | <target state="translated">Acerca de <x id="INTERPOLATION"/></target> |
6156 | <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> | 6213 | <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> |
6157 | </trans-unit><trans-unit id="8525213662266893834" datatype="html"> | 6214 | </trans-unit> |
6158 | <source>Contact us</source><target state="new">Contact us</target> | 6215 | <trans-unit id="8525213662266893834" datatype="html"> |
6216 | <source>Contact us</source> | ||
6217 | <target state="translated">Contacta</target> | ||
6159 | <context-group purpose="location"> | 6218 | <context-group purpose="location"> |
6160 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> | 6219 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> |
6161 | <context context-type="linenumber">7</context> | 6220 | <context context-type="linenumber">7</context> |
@@ -6165,7 +6224,6 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6165 | <context context-type="linenumber">3</context> | 6224 | <context context-type="linenumber">3</context> |
6166 | </context-group> | 6225 | </context-group> |
6167 | </trans-unit> | 6226 | </trans-unit> |
6168 | |||
6169 | <trans-unit id="19872047295276660" datatype="html"> | 6227 | <trans-unit id="19872047295276660" datatype="html"> |
6170 | <source>This instance is dedicated to sensitive/NSFW content.</source> | 6228 | <source>This instance is dedicated to sensitive/NSFW content.</source> |
6171 | <target state="translated">Esta instancia está dedicada a contido sensible/NSFW.</target> | 6229 | <target state="translated">Esta instancia está dedicada a contido sensible/NSFW.</target> |
@@ -6443,8 +6501,10 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6443 | <source>Link copied</source> | 6501 | <source>Link copied</source> |
6444 | <target state="translated">Ligazón copiada</target> | 6502 | <target state="translated">Ligazón copiada</target> |
6445 | <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> | 6503 | <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> |
6446 | </trans-unit><trans-unit id="4807161697338135032" datatype="html"> | 6504 | </trans-unit> |
6447 | <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> | 6505 | <trans-unit id="4807161697338135032" datatype="html"> |
6506 | <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> | ||
6507 | <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> | ||
6448 | <context-group purpose="location"> | 6508 | <context-group purpose="location"> |
6449 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> | 6509 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> |
6450 | <context context-type="linenumber">3</context> | 6510 | <context context-type="linenumber">3</context> |
@@ -6590,9 +6650,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6590 | <trans-unit id="819067926858619041" datatype="html"> | 6650 | <trans-unit id="819067926858619041" datatype="html"> |
6591 | <source>Account videos</source> | 6651 | <source>Account videos</source> |
6592 | <target state="translated">Vídeos da conta</target> | 6652 | <target state="translated">Vídeos da conta</target> |
6593 | 6653 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">35</context></context-group> | |
6594 | <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> | 6654 | </trans-unit> |
6595 | |||
6596 | <trans-unit id="4605517634011438234" datatype="html"> | 6655 | <trans-unit id="4605517634011438234" datatype="html"> |
6597 | <source>ACCOUNT</source> | 6656 | <source>ACCOUNT</source> |
6598 | <target state="translated">CONTA</target> | 6657 | <target state="translated">CONTA</target> |
@@ -6604,63 +6663,78 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6604 | <trans-unit id="6823616469362610020" datatype="html"> | 6663 | <trans-unit id="6823616469362610020" datatype="html"> |
6605 | <source>Account video channels</source> | 6664 | <source>Account video channels</source> |
6606 | <target state="translated">Canles de vídeo da conta</target> | 6665 | <target state="translated">Canles de vídeo da conta</target> |
6607 | 6666 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">26</context></context-group> | |
6608 | <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> | 6667 | </trans-unit> |
6609 | |||
6610 | <trans-unit id="807777065817324789" datatype="html"> | 6668 | <trans-unit id="807777065817324789" datatype="html"> |
6611 | <source>Display all videos (private, unlisted or not yet published)</source> | 6669 | <source>Display all videos (private, unlisted or not yet published)</source> |
6612 | <target state="translated">Mostra todos os vídeos (privado, non listados ou aínda non publicados)</target> | 6670 | <target state="translated">Mostra todos os vídeos (privado, non listados ou aínda non publicados)</target> |
6613 | 6671 | <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> | |
6614 | 6672 | </trans-unit> | |
6615 | 6673 | <trans-unit id="784681343382270982" datatype="html"> | |
6616 | 6674 | <source>Remove this filter</source> | |
6617 | 6675 | <target state="translated">Eliminar este filtro</target> | |
6618 | 6676 | <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> | |
6619 | 6677 | </trans-unit> | |
6620 | <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"> | 6678 | <trans-unit id="5254305728396198887" datatype="html"> |
6621 | <source>Remove this filter</source><target state="new">Remove this filter</target> | 6679 | <source>Sensitive content</source> |
6622 | 6680 | <target state="translated">Contido sensible</target> | |
6623 | <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"> | 6681 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">115</context></context-group> |
6624 | <source>Sensitive content</source><target state="new">Sensitive content</target> | 6682 | </trans-unit> |
6625 | 6683 | <trans-unit id="5590086849807274701" datatype="html"> | |
6626 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">115</context></context-group></trans-unit><trans-unit id="5590086849807274701" datatype="html"> | 6684 | <source>Scope</source> |
6627 | <source>Scope</source><target state="new">Scope</target> | 6685 | <target state="translated">Ámbito</target> |
6628 | 6686 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">122</context></context-group> | |
6629 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">122</context></context-group></trans-unit><trans-unit id="5019568087038659501" datatype="html"> | 6687 | </trans-unit> |
6630 | <source>Federated</source><target state="new">Federated</target> | 6688 | <trans-unit id="5019568087038659501" datatype="html"> |
6631 | 6689 | <source>Federated</source> | |
6632 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">124</context></context-group></trans-unit><trans-unit id="1949800099101277248" datatype="html"> | 6690 | <target state="translated">Federado</target> |
6633 | <source>Languages</source><target state="new">Languages</target> | 6691 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">124</context></context-group> |
6634 | 6692 | </trans-unit> | |
6635 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">132</context></context-group></trans-unit><trans-unit id="1902100407096396858" datatype="html"> | 6693 | <trans-unit id="1949800099101277248" datatype="html"> |
6636 | <source>Categories</source><target state="new">Categories</target> | 6694 | <source>Languages</source> |
6637 | 6695 | <target state="translated">Idiomas</target> | |
6638 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">141</context></context-group></trans-unit><trans-unit id="3599150758014724057" datatype="html"> | 6696 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">132</context></context-group> |
6639 | <source>All videos</source><target state="new">All videos</target> | 6697 | </trans-unit> |
6640 | 6698 | <trans-unit id="1902100407096396858" datatype="html"> | |
6641 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">150</context></context-group></trans-unit><trans-unit id="8466337030143068285" datatype="html"> | 6699 | <source>Categories</source> |
6642 | <source>Blurred</source><target state="new">Blurred</target> | 6700 | <target state="translated">Categorías</target> |
6643 | 6701 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">141</context></context-group> | |
6644 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">225</context></context-group></trans-unit><trans-unit id="7054829409324166420" datatype="html"> | 6702 | </trans-unit> |
6645 | <source>hidden</source><target state="new">hidden</target> | 6703 | <trans-unit id="3599150758014724057" datatype="html"> |
6646 | 6704 | <source>All videos</source> | |
6647 | <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="5766954855630346873" datatype="html"> | 6705 | <target state="translated">Tódolos vídeos</target> |
6648 | <source>blurred</source><target state="new">blurred</target> | 6706 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">150</context></context-group> |
6649 | 6707 | </trans-unit> | |
6650 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">232</context></context-group></trans-unit><trans-unit id="1833483831276078393" datatype="html"> | 6708 | <trans-unit id="8466337030143068285" datatype="html"> |
6651 | <source>displayed</source><target state="new">displayed</target> | 6709 | <source>Blurred</source> |
6652 | 6710 | <target state="translated">Difuminado</target> | |
6653 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">234</context></context-group></trans-unit> | 6711 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">225</context></context-group> |
6712 | </trans-unit> | ||
6713 | <trans-unit id="7054829409324166420" datatype="html"> | ||
6714 | <source>hidden</source> | ||
6715 | <target state="translated">agochado</target> | ||
6716 | <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> | ||
6717 | </trans-unit> | ||
6718 | <trans-unit id="5766954855630346873" datatype="html"> | ||
6719 | <source>blurred</source> | ||
6720 | <target state="translated">difuminado</target> | ||
6721 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">232</context></context-group> | ||
6722 | </trans-unit> | ||
6723 | <trans-unit id="1833483831276078393" datatype="html"> | ||
6724 | <source>displayed</source> | ||
6725 | <target state="translated">mostrado</target> | ||
6726 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">234</context></context-group> | ||
6727 | </trans-unit> | ||
6654 | <trans-unit id="4856575356061361269" datatype="html"> | 6728 | <trans-unit id="4856575356061361269" datatype="html"> |
6655 | <source><x id="PH"/> direct account followers </source> | 6729 | <source><x id="PH"/> direct account followers </source> |
6656 | <target state="translated"><x id="PH"/> seguidoras directas da conta </target> | 6730 | <target state="translated"><x id="PH"/> seguidoras directas da conta </target> |
6657 | 6731 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">152</context></context-group> | |
6658 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">152</context></context-group></trans-unit> | 6732 | </trans-unit> |
6659 | <trans-unit id="6250999352462648289" datatype="html"> | 6733 | <trans-unit id="6250999352462648289" datatype="html"> |
6660 | <source>Report this account</source> | 6734 | <source>Report this account</source> |
6661 | <target state="translated">Denunciar esta conta</target> | 6735 | <target state="translated">Denunciar esta conta</target> |
6662 | 6736 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">196</context></context-group> | |
6663 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> | 6737 | </trans-unit> |
6664 | <trans-unit id="1504521795586863905" datatype="html"> | 6738 | <trans-unit id="1504521795586863905" datatype="html"> |
6665 | <source>VIDEOS</source> | 6739 | <source>VIDEOS</source> |
6666 | <target state="translated">VÍDEOS</target> | 6740 | <target state="translated">VÍDEOS</target> |
@@ -6670,19 +6744,19 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6670 | <trans-unit id="25349740244798533" datatype="html"> | 6744 | <trans-unit id="25349740244798533" datatype="html"> |
6671 | <source>Username copied</source> | 6745 | <source>Username copied</source> |
6672 | <target state="translated">Nome de usuaria copiado</target> | 6746 | <target state="translated">Nome de usuaria copiado</target> |
6673 | 6747 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">120</context></context-group> | |
6674 | 6748 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">103</context></context-group> | |
6675 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">120</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit> | 6749 | </trans-unit> |
6676 | <trans-unit id="9221735175659318025" datatype="html"> | 6750 | <trans-unit id="9221735175659318025" datatype="html"> |
6677 | <source>1 subscriber</source> | 6751 | <source>1 subscriber</source> |
6678 | <target state="translated">1 subscritora</target> | 6752 | <target state="translated">1 subscritora</target> |
6679 | 6753 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">124</context></context-group> | |
6680 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 6754 | </trans-unit> |
6681 | <trans-unit id="4097331874769079975" datatype="html"> | 6755 | <trans-unit id="4097331874769079975" datatype="html"> |
6682 | <source><x id="PH"/> subscribers</source> | 6756 | <source><x id="PH"/> subscribers</source> |
6683 | <target state="translated"><x id="PH"/> subscritoras</target> | 6757 | <target state="translated"><x id="PH"/> subscritoras</target> |
6684 | 6758 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">126</context></context-group> | |
6685 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 6759 | </trans-unit> |
6686 | <trans-unit id="1035838766454786107" datatype="html"> | 6760 | <trans-unit id="1035838766454786107" datatype="html"> |
6687 | <source>Audio-only</source> | 6761 | <source>Audio-only</source> |
6688 | <target state="translated">Só audio</target> | 6762 | <target state="translated">Só audio</target> |
@@ -7163,28 +7237,28 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7163 | <trans-unit id="81585474102700882" datatype="html"> | 7237 | <trans-unit id="81585474102700882" datatype="html"> |
7164 | <source>Used</source> | 7238 | <source>Used</source> |
7165 | <target state="translated">Utilizado</target> | 7239 | <target state="translated">Utilizado</target> |
7166 | 7240 | <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">102</context></context-group> | |
7167 | <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">102</context></context-group></trans-unit> | 7241 | </trans-unit> |
7168 | <trans-unit id="3955868613858648955" datatype="html"> | 7242 | <trans-unit id="3955868613858648955" datatype="html"> |
7169 | <source>Available</source> | 7243 | <source>Available</source> |
7170 | <target state="translated">Dispoñible</target> | 7244 | <target state="translated">Dispoñible</target> |
7171 | 7245 | <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">102</context></context-group> | |
7172 | <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">102</context></context-group></trans-unit> | 7246 | </trans-unit> |
7173 | <trans-unit id="5875705095657098468" datatype="html"> | 7247 | <trans-unit id="5875705095657098468" datatype="html"> |
7174 | <source>Do you really want to remove this video redundancy?</source> | 7248 | <source>Do you really want to remove this video redundancy?</source> |
7175 | <target state="translated">Desexas eliminar a redundancia deste vídeo?</target> | 7249 | <target state="translated">Desexas eliminar a redundancia deste vídeo?</target> |
7176 | 7250 | <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">142</context></context-group> | |
7177 | <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">142</context></context-group></trans-unit> | 7251 | </trans-unit> |
7178 | <trans-unit id="9098272570113000349" datatype="html"> | 7252 | <trans-unit id="9098272570113000349" datatype="html"> |
7179 | <source>Remove redundancy</source> | 7253 | <source>Remove redundancy</source> |
7180 | <target state="translated">Eliminar redundancia</target> | 7254 | <target state="translated">Eliminar redundancia</target> |
7181 | 7255 | <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">143</context></context-group> | |
7182 | <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">143</context></context-group></trans-unit> | 7256 | </trans-unit> |
7183 | <trans-unit id="6537102123107780785" datatype="html"> | 7257 | <trans-unit id="6537102123107780785" datatype="html"> |
7184 | <source>Video redundancies removed!</source> | 7258 | <source>Video redundancies removed!</source> |
7185 | <target state="translated">Redundancia do vídeo eliminada!</target> | 7259 | <target state="translated">Redundancia do vídeo eliminada!</target> |
7186 | 7260 | <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> | |
7187 | <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> | 7261 | </trans-unit> |
7188 | <trans-unit id="8639315630141911544" datatype="html"> | 7262 | <trans-unit id="8639315630141911544" datatype="html"> |
7189 | <source>Account <x id="PH"/> unmuted by your instance.</source> | 7263 | <source>Account <x id="PH"/> unmuted by your instance.</source> |
7190 | <target state="translated">Conta <x id="PH"/> reactivada pola túa instancia.</target> | 7264 | <target state="translated">Conta <x id="PH"/> reactivada pola túa instancia.</target> |
@@ -7793,28 +7867,28 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7793 | <trans-unit id="5551551295632950210" datatype="html"> | 7867 | <trans-unit id="5551551295632950210" datatype="html"> |
7794 | <source>Videos history is enabled</source> | 7868 | <source>Videos history is enabled</source> |
7795 | <target state="translated">O historial dos vídeos está activado</target> | 7869 | <target state="translated">O historial dos vídeos está activado</target> |
7796 | 7870 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">114</context></context-group> | |
7797 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">114</context></context-group></trans-unit> | 7871 | </trans-unit> |
7798 | <trans-unit id="9136227503281311926" datatype="html"> | 7872 | <trans-unit id="9136227503281311926" datatype="html"> |
7799 | <source>Videos history is disabled</source> | 7873 | <source>Videos history is disabled</source> |
7800 | <target state="translated">O historial dos vídeos está desactivado</target> | 7874 | <target state="translated">O historial dos vídeos está desactivado</target> |
7801 | 7875 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">115</context></context-group> | |
7802 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">115</context></context-group></trans-unit> | 7876 | </trans-unit> |
7803 | <trans-unit id="8966726118414892732" datatype="html"> | 7877 | <trans-unit id="8966726118414892732" datatype="html"> |
7804 | <source>Delete videos history</source> | 7878 | <source>Delete videos history</source> |
7805 | <target state="translated">Eliminar historial dos vídeos</target> | 7879 | <target state="translated">Eliminar historial dos vídeos</target> |
7806 | 7880 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">127</context></context-group> | |
7807 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | 7881 | </trans-unit> |
7808 | <trans-unit id="2482543433481435105" datatype="html"> | 7882 | <trans-unit id="2482543433481435105" datatype="html"> |
7809 | <source>Are you sure you want to delete all your videos history?</source> | 7883 | <source>Are you sure you want to delete all your videos history?</source> |
7810 | <target state="translated">Queres eliminar todo o historial dos teus vídeos?</target> | 7884 | <target state="translated">Queres eliminar todo o historial dos teus vídeos?</target> |
7811 | 7885 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">128</context></context-group> | |
7812 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> | 7886 | </trans-unit> |
7813 | <trans-unit id="4051606152827088952" datatype="html"> | 7887 | <trans-unit id="4051606152827088952" datatype="html"> |
7814 | <source>Videos history deleted</source> | 7888 | <source>Videos history deleted</source> |
7815 | <target state="translated">Historial dos vídeos eliminado</target> | 7889 | <target state="translated">Historial dos vídeos eliminado</target> |
7816 | 7890 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">136</context></context-group> | |
7817 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">136</context></context-group></trans-unit> | 7891 | </trans-unit> |
7818 | <trans-unit id="1486537403020619891" datatype="html"> | 7892 | <trans-unit id="1486537403020619891" datatype="html"> |
7819 | <source>My watch history</source> | 7893 | <source>My watch history</source> |
7820 | <target state="translated">O meu historial</target> | 7894 | <target state="translated">O meu historial</target> |
@@ -8018,23 +8092,23 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8018 | <trans-unit id="1233062525939746039" datatype="html"> | 8092 | <trans-unit id="1233062525939746039" datatype="html"> |
8019 | <source>Unknown language</source> | 8093 | <source>Unknown language</source> |
8020 | <target state="translated">Idioma descoñecido</target> | 8094 | <target state="translated">Idioma descoñecido</target> |
8021 | 8095 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">41</context></context-group> | |
8022 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit> | 8096 | </trans-unit> |
8023 | <trans-unit id="3761504852202418603" datatype="html"> | 8097 | <trans-unit id="3761504852202418603" datatype="html"> |
8024 | <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source> | 8098 | <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source> |
8025 | <target state="translated">Hai demasiados idiomas activados. Por favor, actívaos todos ou deixa menos de 20 idiomas activos.</target> | 8099 | <target state="translated">Hai demasiados idiomas activados. Por favor, actívaos todos ou deixa menos de 20 idiomas activos.</target> |
8026 | 8100 | <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> | |
8027 | <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> | 8101 | </trans-unit> |
8028 | <trans-unit id="3960396487495291449" datatype="html"> | 8102 | <trans-unit id="3960396487495291449" datatype="html"> |
8029 | <source>Video settings updated.</source> | 8103 | <source>Video settings updated.</source> |
8030 | <target state="translated">Actualizados os axustes de vídeo.</target> | 8104 | <target state="translated">Actualizados os axustes de vídeo.</target> |
8031 | 8105 | <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> | |
8032 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 8106 | </trans-unit> |
8033 | <trans-unit id="3326446048041727269" datatype="html"> | 8107 | <trans-unit id="3326446048041727269" datatype="html"> |
8034 | <source>Display/Video settings updated.</source> | 8108 | <source>Display/Video settings updated.</source> |
8035 | <target state="translated">Axustes Reprodución/Vídeo gardados.</target> | 8109 | <target state="translated">Axustes Reprodución/Vídeo gardados.</target> |
8036 | 8110 | <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> | |
8037 | <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> | 8111 | </trans-unit> |
8038 | <trans-unit id="1137937154872046253" datatype="html"> | 8112 | <trans-unit id="1137937154872046253" datatype="html"> |
8039 | <source>Video channel <x id="PH"/> created.</source> | 8113 | <source>Video channel <x id="PH"/> created.</source> |
8040 | <target state="translated">Creada a canle de vídeo <x id="PH"/>.</target> | 8114 | <target state="translated">Creada a canle de vídeo <x id="PH"/>.</target> |
@@ -8159,10 +8233,10 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8159 | <trans-unit id="2027805873922338635" datatype="html"> | 8233 | <trans-unit id="2027805873922338635" datatype="html"> |
8160 | <source>Do you really want to delete <x id="PH"/>?</source> | 8234 | <source>Do you really want to delete <x id="PH"/>?</source> |
8161 | <target state="translated">Desexas eliminar <x id="PH"/>?</target> | 8235 | <target state="translated">Desexas eliminar <x id="PH"/>?</target> |
8162 | 8236 | <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> | |
8163 | 8237 | <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> | |
8164 | 8238 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">143</context></context-group> | |
8165 | <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">143</context></context-group></trans-unit> | 8239 | </trans-unit> |
8166 | <trans-unit id="4844578664427956129" datatype="html"> | 8240 | <trans-unit id="4844578664427956129" datatype="html"> |
8167 | <source>Change ownership</source> | 8241 | <source>Change ownership</source> |
8168 | <target state="translated">Cambiar a propiedade</target> | 8242 | <target state="translated">Cambiar a propiedade</target> |
@@ -8187,13 +8261,13 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8187 | <trans-unit id="8197117721861453263" datatype="html"> | 8261 | <trans-unit id="8197117721861453263" datatype="html"> |
8188 | <source>Do you really want to delete <x id="PH"/> videos?</source> | 8262 | <source>Do you really want to delete <x id="PH"/> videos?</source> |
8189 | <target state="translated">Desexas eliminar <x id="PH"/> vídeos?</target> | 8263 | <target state="translated">Desexas eliminar <x id="PH"/> vídeos?</target> |
8190 | 8264 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">116</context></context-group> | |
8191 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">116</context></context-group></trans-unit> | 8265 | </trans-unit> |
8192 | <trans-unit id="2728855911908920537" datatype="html"> | 8266 | <trans-unit id="2728855911908920537" datatype="html"> |
8193 | <source><x id="PH"/> videos deleted. </source> | 8267 | <source><x id="PH"/> videos deleted. </source> |
8194 | <target state="translated"><x id="PH"/> vídeos eliminados. </target> | 8268 | <target state="translated"><x id="PH"/> vídeos eliminados. </target> |
8195 | 8269 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">133</context></context-group> | |
8196 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit> | 8270 | </trans-unit> |
8197 | <trans-unit id="2027805873922338635" datatype="html"> | 8271 | <trans-unit id="2027805873922338635" datatype="html"> |
8198 | <source>Do you really want to delete <x id="PH"/>? </source> | 8272 | <source>Do you really want to delete <x id="PH"/>? </source> |
8199 | <target state="translated">Desexas eliminar <x id="PH"/>? </target> | 8273 | <target state="translated">Desexas eliminar <x id="PH"/>? </target> |
@@ -8205,9 +8279,9 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8205 | <trans-unit id="2767660806989176400" datatype="html"> | 8279 | <trans-unit id="2767660806989176400" datatype="html"> |
8206 | <source>Video <x id="PH"/> deleted.</source> | 8280 | <source>Video <x id="PH"/> deleted.</source> |
8207 | <target state="translated">Vídeo <x id="PH"/> eliminado.</target> | 8281 | <target state="translated">Vídeo <x id="PH"/> eliminado.</target> |
8208 | 8282 | <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> | |
8209 | 8283 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">214</context></context-group> | |
8210 | <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/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">214</context></context-group></trans-unit> | 8284 | </trans-unit> |
8211 | <trans-unit id="6810714890760227072" datatype="html"> | 8285 | <trans-unit id="6810714890760227072" datatype="html"> |
8212 | <source>Ownership change request sent.</source> | 8286 | <source>Ownership change request sent.</source> |
8213 | <target state="translated">Enviouse a solicitude de cambio de propiedade.</target> | 8287 | <target state="translated">Enviouse a solicitude de cambio de propiedade.</target> |
@@ -8274,9 +8348,9 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8274 | <trans-unit id="7916647920967632052" datatype="html"> | 8348 | <trans-unit id="7916647920967632052" datatype="html"> |
8275 | <source>max size</source> | 8349 | <source>max size</source> |
8276 | <target state="translated">Tam máx</target> | 8350 | <target state="translated">Tam máx</target> |
8277 | 8351 | <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> | |
8278 | 8352 | <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> | |
8279 | <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> | 8353 | </trans-unit> |
8280 | <trans-unit id="6489275254908395777" datatype="html"> | 8354 | <trans-unit id="6489275254908395777" datatype="html"> |
8281 | <source>Maximize editor</source> | 8355 | <source>Maximize editor</source> |
8282 | <target state="translated">Maximizar editor</target> | 8356 | <target state="translated">Maximizar editor</target> |
@@ -8308,7 +8382,6 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8308 | <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> | 8382 | <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> |
8309 | <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">33</context></context-group> | 8383 | <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">33</context></context-group> |
8310 | </trans-unit> | 8384 | </trans-unit> |
8311 | |||
8312 | <trans-unit id="1783173774503340906" datatype="html"> | 8385 | <trans-unit id="1783173774503340906" datatype="html"> |
8313 | <source>Subscribe to the account</source> | 8386 | <source>Subscribe to the account</source> |
8314 | <target state="translated">Subscribirse á conta</target> | 8387 | <target state="translated">Subscribirse á conta</target> |
@@ -8326,38 +8399,38 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8326 | <trans-unit id="7709367721354853232" datatype="html"> | 8399 | <trans-unit id="7709367721354853232" datatype="html"> |
8327 | <source>Focus the search bar</source> | 8400 | <source>Focus the search bar</source> |
8328 | <target state="translated">Cursor na barra de busca</target> | 8401 | <target state="translated">Cursor na barra de busca</target> |
8329 | 8402 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">270</context></context-group> | |
8330 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">270</context></context-group></trans-unit> | 8403 | </trans-unit> |
8331 | <trans-unit id="4049262826107502276" datatype="html"> | 8404 | <trans-unit id="4049262826107502276" datatype="html"> |
8332 | <source>Toggle the left menu</source> | 8405 | <source>Toggle the left menu</source> |
8333 | <target state="translated">Activar menú esquerdo</target> | 8406 | <target state="translated">Activar menú esquerdo</target> |
8334 | 8407 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">275</context></context-group> | |
8335 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">275</context></context-group></trans-unit> | 8408 | </trans-unit> |
8336 | <trans-unit id="5409372033656550095" datatype="html"> | 8409 | <trans-unit id="5409372033656550095" datatype="html"> |
8337 | <source>Go to the discover videos page</source> | 8410 | <source>Go to the discover videos page</source> |
8338 | <target state="translated">Ir á páxina de descubrimento de vídeos</target> | 8411 | <target state="translated">Ir á páxina de descubrimento de vídeos</target> |
8339 | 8412 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">280</context></context-group> | |
8340 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">280</context></context-group></trans-unit> | 8413 | </trans-unit> |
8341 | <trans-unit id="4278050445961255445" datatype="html"> | 8414 | <trans-unit id="4278050445961255445" datatype="html"> |
8342 | <source>Go to the trending videos page</source> | 8415 | <source>Go to the trending videos page</source> |
8343 | <target state="translated">Ir á páxina de videos que son tendencia</target> | 8416 | <target state="translated">Ir á páxina de videos que son tendencia</target> |
8344 | 8417 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">285</context></context-group> | |
8345 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">285</context></context-group></trans-unit> | 8418 | </trans-unit> |
8346 | <trans-unit id="3242234958443825475" datatype="html"> | 8419 | <trans-unit id="3242234958443825475" datatype="html"> |
8347 | <source>Go to the recently added videos page</source> | 8420 | <source>Go to the recently added videos page</source> |
8348 | <target state="translated">Ir á páxina de vídeos engadidos recentemente</target> | 8421 | <target state="translated">Ir á páxina de vídeos engadidos recentemente</target> |
8349 | 8422 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">290</context></context-group> | |
8350 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">290</context></context-group></trans-unit> | 8423 | </trans-unit> |
8351 | <trans-unit id="2887122197778293919" datatype="html"> | 8424 | <trans-unit id="2887122197778293919" datatype="html"> |
8352 | <source>Go to the local videos page</source> | 8425 | <source>Go to the local videos page</source> |
8353 | <target state="translated">Ir á páxina de vídeos locais</target> | 8426 | <target state="translated">Ir á páxina de vídeos locais</target> |
8354 | 8427 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">295</context></context-group> | |
8355 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">295</context></context-group></trans-unit> | 8428 | </trans-unit> |
8356 | <trans-unit id="8009065619559214982" datatype="html"> | 8429 | <trans-unit id="8009065619559214982" datatype="html"> |
8357 | <source>Go to the videos upload page</source> | 8430 | <source>Go to the videos upload page</source> |
8358 | <target state="translated">Ir á páxina para subir vídeos</target> | 8431 | <target state="translated">Ir á páxina para subir vídeos</target> |
8359 | 8432 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">300</context></context-group> | |
8360 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">300</context></context-group></trans-unit> | 8433 | </trans-unit> |
8361 | <trans-unit id="3779524668013120370" datatype="html"> | 8434 | <trans-unit id="3779524668013120370" datatype="html"> |
8362 | <source>Go to my subscriptions</source> | 8435 | <source>Go to my subscriptions</source> |
8363 | <target state="translated">Ir ás miñas subscricións</target> | 8436 | <target state="translated">Ir ás miñas subscricións</target> |
@@ -8413,8 +8486,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8413 | <trans-unit id="232050922346936574" datatype="html"> | 8486 | <trans-unit id="232050922346936574" datatype="html"> |
8414 | <source>Trending</source> | 8487 | <source>Trending</source> |
8415 | <target state="translated">En voga</target> | 8488 | <target state="translated">En voga</target> |
8416 | 8489 | <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> | |
8417 | <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> | 8490 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">131</context></context-group> |
8491 | </trans-unit> | ||
8418 | <trans-unit id="6470888608149621404" datatype="html"> | 8492 | <trans-unit id="6470888608149621404" datatype="html"> |
8419 | <source>ON <x id="PH" equiv-text="config.instance.name"/></source> | 8493 | <source>ON <x id="PH" equiv-text="config.instance.name"/></source> |
8420 | <target state="translated">EN <x id="PH" equiv-text="config.instance.name"/></target> | 8494 | <target state="translated">EN <x id="PH" equiv-text="config.instance.name"/></target> |
@@ -8477,41 +8551,41 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8477 | <trans-unit id="6048892649018070225" datatype="html"> | 8551 | <trans-unit id="6048892649018070225" datatype="html"> |
8478 | <source>Today</source> | 8552 | <source>Today</source> |
8479 | <target state="translated">Hoxe</target> | 8553 | <target state="translated">Hoxe</target> |
8480 | 8554 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">41</context></context-group> | |
8481 | 8555 | <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> | |
8482 | 8556 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">123</context></context-group> | |
8483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">41</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">123</context></context-group></trans-unit> | 8557 | </trans-unit> |
8484 | <trans-unit id="4498682414491138092" datatype="html"> | 8558 | <trans-unit id="4498682414491138092" datatype="html"> |
8485 | <source>Yesterday</source> | 8559 | <source>Yesterday</source> |
8486 | <target state="translated">Onte</target> | 8560 | <target state="translated">Onte</target> |
8487 | 8561 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">124</context></context-group> | |
8488 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 8562 | </trans-unit> |
8489 | <trans-unit id="5073473933031004097" datatype="html"> | 8563 | <trans-unit id="5073473933031004097" datatype="html"> |
8490 | <source>This week</source> | 8564 | <source>This week</source> |
8491 | <target state="translated">Nesta semana</target> | 8565 | <target state="translated">Nesta semana</target> |
8492 | 8566 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">125</context></context-group> | |
8493 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> | 8567 | </trans-unit> |
8494 | <trans-unit id="842657237693374355" datatype="html"> | 8568 | <trans-unit id="842657237693374355" datatype="html"> |
8495 | <source>This month</source> | 8569 | <source>This month</source> |
8496 | <target state="translated">Neste mes</target> | 8570 | <target state="translated">Neste mes</target> |
8497 | 8571 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">126</context></context-group> | |
8498 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 8572 | </trans-unit> |
8499 | <trans-unit id="4463380307954693363" datatype="html"> | 8573 | <trans-unit id="4463380307954693363" datatype="html"> |
8500 | <source>Last month</source> | 8574 | <source>Last month</source> |
8501 | <target state="translated">Último mes</target> | 8575 | <target state="translated">Último mes</target> |
8502 | 8576 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">127</context></context-group> | |
8503 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | 8577 | </trans-unit> |
8504 | <trans-unit id="7473676707373218484" datatype="html"> | 8578 | <trans-unit id="7473676707373218484" datatype="html"> |
8505 | <source>Older</source> | 8579 | <source>Older</source> |
8506 | <target state="translated">Máis antigo</target> | 8580 | <target state="translated">Máis antigo</target> |
8507 | 8581 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">128</context></context-group> | |
8508 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> | 8582 | </trans-unit> |
8509 | <trans-unit id="5036991421517255667" datatype="html"> | 8583 | <trans-unit id="5036991421517255667" datatype="html"> |
8510 | <source>Cannot load more videos. Try again later.</source> | 8584 | <source>Cannot load more videos. Try again later.</source> |
8511 | <target state="translated">Non se poden cargar máis vídeo, inténtao máis tarde.</target> | 8585 | <target state="translated">Non se poden cargar máis vídeo, inténtao máis tarde.</target> |
8512 | 8586 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">225</context></context-group> | |
8513 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">225</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">127</context></context-group></trans-unit> | 8587 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">127</context></context-group> |
8514 | 8588 | </trans-unit> | |
8515 | <trans-unit id="4873149362496451858" datatype="html"> | 8589 | <trans-unit id="4873149362496451858" datatype="html"> |
8516 | <source>Last 7 days</source> | 8590 | <source>Last 7 days</source> |
8517 | <target state="translated">Últimos 7 días</target> | 8591 | <target state="translated">Últimos 7 días</target> |
@@ -8571,9 +8645,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8571 | <trans-unit id="2123659921722214537" datatype="html"> | 8645 | <trans-unit id="2123659921722214537" datatype="html"> |
8572 | <source>Views</source> | 8646 | <source>Views</source> |
8573 | <target state="translated">Visualizacións</target> | 8647 | <target state="translated">Visualizacións</target> |
8574 | 8648 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">94</context></context-group> | |
8575 | 8649 | </trans-unit> | |
8576 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit> | ||
8577 | <trans-unit id="3208627574396957172" datatype="html"> | 8650 | <trans-unit id="3208627574396957172" datatype="html"> |
8578 | <source>Search index is unavailable. Retrying with instance results instead.</source> | 8651 | <source>Search index is unavailable. Retrying with instance results instead.</source> |
8579 | <target state="translated">Non está dispoñible a busca no índice, intentándoo cos resultados na instancia.</target> | 8652 | <target state="translated">Non está dispoñible a busca no índice, intentándoo cos resultados na instancia.</target> |
@@ -9350,14 +9423,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9350 | <source>PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</source> | 9423 | <source>PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</source> |
9351 | <target state="translated">PeerTube non pode procesar este tipo de ficheiro. Permítese <x id="PH"/>}.</target> | 9424 | <target state="translated">PeerTube non pode procesar este tipo de ficheiro. Permítese <x id="PH"/>}.</target> |
9352 | <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> | 9425 | <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> |
9353 | </trans-unit><trans-unit id="3393133458004181121" datatype="html"> | 9426 | </trans-unit> |
9354 | <source>All categories</source><target state="new">All categories</target> | 9427 | <trans-unit id="3393133458004181121" datatype="html"> |
9428 | <source>All categories</source> | ||
9429 | <target state="translated">Tódalas categorías</target> | ||
9355 | <context-group purpose="location"> | 9430 | <context-group purpose="location"> |
9356 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.ts</context> | 9431 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.ts</context> |
9357 | <context context-type="linenumber">24</context> | 9432 | <context context-type="linenumber">24</context> |
9358 | </context-group> | 9433 | </context-group> |
9359 | </trans-unit><trans-unit id="3999967345340145904" datatype="html"> | 9434 | </trans-unit> |
9360 | <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> | 9435 | <trans-unit id="3999967345340145904" datatype="html"> |
9436 | <source>You can't select more than <x id="PH" equiv-text="this.maxItems"/> items</source> | ||
9437 | <target state="translated">Podes seleccionar más de <x id="PH" equiv-text="this.maxItems"/> elementos</target> | ||
9361 | <context-group purpose="location"> | 9438 | <context-group purpose="location"> |
9362 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox-all.component.ts</context> | 9439 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox-all.component.ts</context> |
9363 | <context context-type="linenumber">81</context> | 9440 | <context context-type="linenumber">81</context> |
@@ -9366,8 +9443,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9366 | <trans-unit id="6708273825233539746" datatype="html"> | 9443 | <trans-unit id="6708273825233539746" datatype="html"> |
9367 | <source>Add a new option</source> | 9444 | <source>Add a new option</source> |
9368 | <target state="translated">Engade unha nova opción</target> | 9445 | <target state="translated">Engade unha nova opción</target> |
9369 | 9446 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.ts</context><context context-type="linenumber">27</context></context-group> | |
9370 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.ts</context><context context-type="linenumber">27</context></context-group></trans-unit> | 9447 | </trans-unit> |
9371 | <trans-unit id="4076995379551303829" datatype="html"> | 9448 | <trans-unit id="4076995379551303829" datatype="html"> |
9372 | <source>Custom value...</source> | 9449 | <source>Custom value...</source> |
9373 | <target state="translated">Valor personalizado...</target> | 9450 | <target state="translated">Valor personalizado...</target> |
@@ -9646,9 +9723,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9646 | <trans-unit id="40119547597591062" datatype="html"> | 9723 | <trans-unit id="40119547597591062" datatype="html"> |
9647 | <source>All languages</source> | 9724 | <source>All languages</source> |
9648 | <target state="translated">Tódolos idiomas</target> | 9725 | <target state="translated">Tódolos idiomas</target> |
9649 | 9726 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">180</context></context-group> | |
9650 | 9727 | <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> | |
9651 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">180</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> | 9728 | </trans-unit> |
9652 | <trans-unit id="996392855508119363" datatype="html"> | 9729 | <trans-unit id="996392855508119363" datatype="html"> |
9653 | <source>Hidden</source> | 9730 | <source>Hidden</source> |
9654 | <target state="translated">Agochado</target> | 9731 | <target state="translated">Agochado</target> |
@@ -9662,8 +9739,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9662 | <trans-unit id="8929218224642530466" datatype="html"> | 9739 | <trans-unit id="8929218224642530466" datatype="html"> |
9663 | <source>Displayed</source> | 9740 | <source>Displayed</source> |
9664 | <target state="translated">Amosado</target> | 9741 | <target state="translated">Amosado</target> |
9665 | 9742 | <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> | |
9666 | <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">227</context></context-group></trans-unit> | 9743 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">227</context></context-group> |
9744 | </trans-unit> | ||
9667 | <trans-unit id="6291055174438137560" datatype="html"> | 9745 | <trans-unit id="6291055174438137560" datatype="html"> |
9668 | <source>~ 1 minute</source> | 9746 | <source>~ 1 minute</source> |
9669 | <target state="translated">~ 1 minuto</target> | 9747 | <target state="translated">~ 1 minuto</target> |
@@ -9692,16 +9770,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9692 | <trans-unit id="6952960992592445535" datatype="html"> | 9770 | <trans-unit id="6952960992592445535" datatype="html"> |
9693 | <source><x id="PH"/> (channel page) </source> | 9771 | <source><x id="PH"/> (channel page) </source> |
9694 | <target state="translated"><x id="PH"/> (páxina da canle) </target> | 9772 | <target state="translated"><x id="PH"/> (páxina da canle) </target> |
9695 | 9773 | <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">19</context></context-group> | |
9696 | 9774 | <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> | |
9697 | 9775 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">113</context></context-group> | |
9698 | <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">19</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">113</context></context-group></trans-unit> | 9776 | </trans-unit> |
9699 | <trans-unit id="1209500590333005801" datatype="html"> | 9777 | <trans-unit id="1209500590333005801" datatype="html"> |
9700 | <source><x id="PH"/> (account page) </source> | 9778 | <source><x id="PH"/> (account page) </source> |
9701 | <target state="translated"><x id="PH"/> (páxina da conta) </target> | 9779 | <target state="translated"><x id="PH"/> (páxina da conta) </target> |
9702 | 9780 | <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> | |
9703 | 9781 | <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> | |
9704 | <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">39</context></context-group></trans-unit> | 9782 | </trans-unit> |
9705 | <trans-unit id="2516633974298697807" datatype="html"> | 9783 | <trans-unit id="2516633974298697807" datatype="html"> |
9706 | <source>Emphasis</source> | 9784 | <source>Emphasis</source> |
9707 | <target state="translated">Énfase</target> | 9785 | <target state="translated">Énfase</target> |
@@ -9730,8 +9808,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9730 | <trans-unit id="6853170548960328665" datatype="html"> | 9808 | <trans-unit id="6853170548960328665" datatype="html"> |
9731 | <source>Close search</source> | 9809 | <source>Close search</source> |
9732 | <target state="translated">Pechar busca</target> | 9810 | <target state="translated">Pechar busca</target> |
9733 | 9811 | <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> | |
9734 | <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> | 9812 | </trans-unit> |
9735 | <trans-unit id="5708680277917691451" datatype="html"> | 9813 | <trans-unit id="5708680277917691451" datatype="html"> |
9736 | <source><x id="PH"/> users banned. </source> | 9814 | <source><x id="PH"/> users banned. </source> |
9737 | <target state="translated"><x id="PH"/> usuarias vetadas. </target> | 9815 | <target state="translated"><x id="PH"/> usuarias vetadas. </target> |
@@ -10097,8 +10175,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10097 | <trans-unit id="4968151111061046122" datatype="html"> | 10175 | <trans-unit id="4968151111061046122" datatype="html"> |
10098 | <source>Moderator</source> | 10176 | <source>Moderator</source> |
10099 | <target state="translated">Moderadora</target> | 10177 | <target state="translated">Moderadora</target> |
10100 | 10178 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group> | |
10101 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group></trans-unit> | 10179 | </trans-unit> |
10102 | <trans-unit id="2279527393438260622" datatype="html"> | 10180 | <trans-unit id="2279527393438260622" datatype="html"> |
10103 | <source>Search videos, playlists, channels…</source> | 10181 | <source>Search videos, playlists, channels…</source> |
10104 | <target state="translated">Busca vídeos, listaxes, canles…</target> | 10182 | <target state="translated">Busca vídeos, listaxes, canles…</target> |
@@ -10250,9 +10328,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10250 | <trans-unit id="7672331870004528654" datatype="html"> | 10328 | <trans-unit id="7672331870004528654" datatype="html"> |
10251 | <source>Display live information</source> | 10329 | <source>Display live information</source> |
10252 | <target state="translated">Mostrar información do directo</target> | 10330 | <target state="translated">Mostrar información do directo</target> |
10253 | 10331 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">174</context></context-group> | |
10254 | 10332 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">278</context></context-group> | |
10255 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">174</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">278</context></context-group></trans-unit> | 10333 | </trans-unit> |
10256 | <trans-unit id="4021752662928002901" datatype="html"> | 10334 | <trans-unit id="4021752662928002901" datatype="html"> |
10257 | <source>Update</source> | 10335 | <source>Update</source> |
10258 | <target state="translated">Actualizar</target> | 10336 | <target state="translated">Actualizar</target> |
@@ -10404,8 +10482,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10404 | <source>To import</source> | 10482 | <source>To import</source> |
10405 | <target state="translated">Importar</target> | 10483 | <target state="translated">Importar</target> |
10406 | <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> | 10484 | <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> |
10407 | </trans-unit><trans-unit id="8492933894084361602" datatype="html"> | 10485 | </trans-unit> |
10408 | <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> | 10486 | <trans-unit id="8492933894084361602" datatype="html"> |
10487 | <source>Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</source> | ||
10488 | <target state="translated">Subscríbete á fonte RSS "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</target> | ||
10409 | <context-group purpose="location"> | 10489 | <context-group purpose="location"> |
10410 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context> | 10490 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context> |
10411 | <context context-type="linenumber">8</context> | 10491 | <context context-type="linenumber">8</context> |
@@ -10437,23 +10517,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10437 | <trans-unit id="2439066254855913806" datatype="html"> | 10517 | <trans-unit id="2439066254855913806" datatype="html"> |
10438 | <source>Only I can see this video</source> | 10518 | <source>Only I can see this video</source> |
10439 | <target state="translated">Só eu podo ver o vídeo</target> | 10519 | <target state="translated">Só eu podo ver o vídeo</target> |
10440 | 10520 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">325</context></context-group> | |
10441 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">325</context></context-group></trans-unit> | 10521 | </trans-unit> |
10442 | <trans-unit id="6767380569816110388" datatype="html"> | 10522 | <trans-unit id="6767380569816110388" datatype="html"> |
10443 | <source>Only shareable via a private link</source> | 10523 | <source>Only shareable via a private link</source> |
10444 | <target state="translated">Compartido só a través de ligazón privada</target> | 10524 | <target state="translated">Compartido só a través de ligazón privada</target> |
10445 | 10525 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">326</context></context-group> | |
10446 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">326</context></context-group></trans-unit> | 10526 | </trans-unit> |
10447 | <trans-unit id="6828965264297239528" datatype="html"> | 10527 | <trans-unit id="6828965264297239528" datatype="html"> |
10448 | <source>Anyone can see this video</source> | 10528 | <source>Anyone can see this video</source> |
10449 | <target state="translated">Calquera pode ver o vídeo</target> | 10529 | <target state="translated">Calquera pode ver o vídeo</target> |
10450 | 10530 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">327</context></context-group> | |
10451 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">327</context></context-group></trans-unit> | 10531 | </trans-unit> |
10452 | <trans-unit id="1425933035739773115" datatype="html"> | 10532 | <trans-unit id="1425933035739773115" datatype="html"> |
10453 | <source>Only users of this instance can see this video</source> | 10533 | <source>Only users of this instance can see this video</source> |
10454 | <target state="translated">Só as usuarias desta instancia poden ver o vídeo</target> | 10534 | <target state="translated">Só as usuarias desta instancia poden ver o vídeo</target> |
10455 | 10535 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">328</context></context-group> | |
10456 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">328</context></context-group></trans-unit> | 10536 | </trans-unit> |
10457 | <trans-unit id="ngb.alert.close" datatype="html"> | 10537 | <trans-unit id="ngb.alert.close" datatype="html"> |
10458 | <source>Close</source> | 10538 | <source>Close</source> |
10459 | <target state="translated">Pechar</target> | 10539 | <target state="translated">Pechar</target> |
@@ -10629,32 +10709,32 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10629 | <source>Your video was uploaded to your account and is private.</source> | 10709 | <source>Your video was uploaded to your account and is private.</source> |
10630 | <target state="translated">O vídeo subeuse á túa conta e é privado.</target> | 10710 | <target state="translated">O vídeo subeuse á túa conta e é privado.</target> |
10631 | 10711 | ||
10632 | <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">118</context></context-group></trans-unit> | 10712 | <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">125</context></context-group></trans-unit> |
10633 | <trans-unit id="5699822024600815733" datatype="html"> | 10713 | <trans-unit id="5699822024600815733" datatype="html"> |
10634 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10714 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10635 | <target state="translated">Pero os datos asociados (etiquetas, descrición...) perderanse, queres saír igualmente desta páxina?</target> | 10715 | <target state="translated">Pero os datos asociados (etiquetas, descrición...) perderanse, queres saír igualmente desta páxina?</target> |
10636 | 10716 | ||
10637 | <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">119</context></context-group></trans-unit> | 10717 | <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> |
10638 | <trans-unit id="1219739004043110649" datatype="html"> | 10718 | <trans-unit id="1219739004043110649" datatype="html"> |
10639 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10719 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10640 | <target state="translated">O vídeo aínda non se subiu, desexas realmente saír desta páxina?</target> | 10720 | <target state="translated">O vídeo aínda non se subiu, desexas realmente saír desta páxina?</target> |
10641 | 10721 | ||
10642 | <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">121</context></context-group></trans-unit> | 10722 | <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">128</context></context-group></trans-unit> |
10643 | <trans-unit id="6932865105766151309" datatype="html"> | 10723 | <trans-unit id="6932865105766151309" datatype="html"> |
10644 | <source>Upload</source> | 10724 | <source>Upload</source> |
10645 | <target state="translated">Subir</target> | 10725 | <target state="translated">Subir</target> |
10646 | 10726 | ||
10647 | <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">227</context></context-group></trans-unit> | 10727 | <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">234</context></context-group></trans-unit> |
10648 | <trans-unit id="8278735427925094503" datatype="html"> | 10728 | <trans-unit id="8278735427925094503" datatype="html"> |
10649 | <source>Upload <x id="PH"/> </source> | 10729 | <source>Upload <x id="PH"/> </source> |
10650 | <target state="translated">Subir <x id="PH"/> </target> | 10730 | <target state="translated">Subir <x id="PH"/> </target> |
10651 | 10731 | ||
10652 | <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">229</context></context-group></trans-unit> | 10732 | <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">236</context></context-group></trans-unit> |
10653 | <trans-unit id="5981816353437801748" datatype="html"> | 10733 | <trans-unit id="5981816353437801748" datatype="html"> |
10654 | <source>Video published.</source> | 10734 | <source>Video published.</source> |
10655 | <target state="translated">Vídeo publicado.</target> | 10735 | <target state="translated">Vídeo publicado.</target> |
10656 | 10736 | ||
10657 | <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">251</context></context-group></trans-unit> | 10737 | <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">258</context></context-group></trans-unit> |
10658 | <trans-unit id="764164089183618119" datatype="html"> | 10738 | <trans-unit id="764164089183618119" datatype="html"> |
10659 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 10739 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
10660 | <target state="translated">Tes cambios sen gardar! Se saes perderás os cambios.</target> | 10740 | <target state="translated">Tes cambios sen gardar! Se saes perderás os cambios.</target> |
@@ -10806,16 +10886,14 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10806 | <trans-unit id="2431286785954354122" datatype="html"> | 10886 | <trans-unit id="2431286785954354122" datatype="html"> |
10807 | <source>Recently added</source> | 10887 | <source>Recently added</source> |
10808 | <target state="translated">Engadidos recentemente</target> | 10888 | <target state="translated">Engadidos recentemente</target> |
10809 | 10889 | <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> | |
10810 | 10890 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">137</context></context-group> | |
10811 | <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> | 10891 | </trans-unit> |
10812 | <trans-unit id="12646164819555880" datatype="html"> | 10892 | <trans-unit id="12646164819555880" datatype="html"> |
10813 | <source>Videos from your subscriptions</source> | 10893 | <source>Videos from your subscriptions</source> |
10814 | <target state="translated">Vídeos das túas subscricións</target> | 10894 | <target state="translated">Vídeos das túas subscricións</target> |
10815 | 10895 | <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> | |
10816 | <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> | 10896 | </trans-unit> |
10817 | |||
10818 | |||
10819 | <trans-unit id="1812379335568847528" datatype="html"> | 10897 | <trans-unit id="1812379335568847528" datatype="html"> |
10820 | <source>Subscriptions</source> | 10898 | <source>Subscriptions</source> |
10821 | <target state="translated">Subscricións</target> | 10899 | <target state="translated">Subscricións</target> |
@@ -10839,12 +10917,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10839 | <trans-unit id="8681933925782924101" datatype="html"> | 10917 | <trans-unit id="8681933925782924101" datatype="html"> |
10840 | <source>Local videos</source> | 10918 | <source>Local videos</source> |
10841 | <target state="translated">Vídeos locais</target> | 10919 | <target state="translated">Vídeos locais</target> |
10842 | 10920 | <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> | |
10843 | 10921 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">142</context></context-group> | |
10844 | 10922 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">143</context></context-group> | |
10845 | 10923 | </trans-unit> | |
10846 | <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="3037358578603095196" datatype="html"> | 10924 | <trans-unit id="3037358578603095196" datatype="html"> |
10847 | <source>Only videos uploaded on this instance are displayed</source><target state="new">Only videos uploaded on this instance are displayed</target> | 10925 | <source>Only videos uploaded on this instance are displayed</source> |
10926 | <target state="translated">Só se mostrarán vídeos subidos a esta instancia</target> | ||
10848 | <context-group purpose="location"> | 10927 | <context-group purpose="location"> |
10849 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> | 10928 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> |
10850 | <context context-type="linenumber">190</context> | 10929 | <context context-type="linenumber">190</context> |
@@ -10853,21 +10932,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10853 | <trans-unit id="4668975178372693951" datatype="html"> | 10932 | <trans-unit id="4668975178372693951" datatype="html"> |
10854 | <source>Discover videos</source> | 10933 | <source>Discover videos</source> |
10855 | <target state="translated">Descubrir vídeos</target> | 10934 | <target state="translated">Descubrir vídeos</target> |
10856 | 10935 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">19</context></context-group> | |
10857 | 10936 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">124</context></context-group> | |
10858 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">19</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> | 10937 | </trans-unit> |
10859 | <trans-unit id="8067135025051844577" datatype="html"> | 10938 | <trans-unit id="8067135025051844577" datatype="html"> |
10860 | <source>Trending videos</source> | 10939 | <source>Trending videos</source> |
10861 | <target state="translated">Vídeos tendencia</target> | 10940 | <target state="translated">Vídeos tendencia</target> |
10862 | 10941 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">130</context></context-group> | |
10863 | 10942 | </trans-unit> | |
10864 | <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> | ||
10865 | <trans-unit id="664221386829541948" datatype="html"> | 10943 | <trans-unit id="664221386829541948" datatype="html"> |
10866 | <source>Recently added videos</source> | 10944 | <source>Recently added videos</source> |
10867 | <target state="translated">Vídeos recentemente engadidos</target> | 10945 | <target state="translated">Vídeos recentemente engadidos</target> |
10868 | 10946 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">136</context></context-group> | |
10869 | 10947 | </trans-unit> | |
10870 | <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> | ||
10871 | <trans-unit id="8212906256415538361" datatype="html"> | 10948 | <trans-unit id="8212906256415538361" datatype="html"> |
10872 | <source>Upload a video</source> | 10949 | <source>Upload a video</source> |
10873 | <target state="translated">Subir un vídeo</target> | 10950 | <target state="translated">Subir un vídeo</target> |
diff --git a/client/src/locale/angular.hu-HU.xlf b/client/src/locale/angular.hu-HU.xlf index a9e6ac290..7e2877bd2 100644 --- a/client/src/locale/angular.hu-HU.xlf +++ b/client/src/locale/angular.hu-HU.xlf | |||
@@ -5,13 +5,13 @@ | |||
5 | <trans-unit id="219462505467671767" datatype="html"> | 5 | <trans-unit id="219462505467671767" datatype="html"> |
6 | <source>Close the left menu</source> | 6 | <source>Close the left menu</source> |
7 | <target state="translated">A bal oldali menü bezárása</target> | 7 | <target state="translated">A bal oldali menü bezárása</target> |
8 | 8 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">133</context></context-group> | |
9 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit> | 9 | </trans-unit> |
10 | <trans-unit id="3455550526898419928" datatype="html"> | 10 | <trans-unit id="3455550526898419928" datatype="html"> |
11 | <source>Open the left menu</source> | 11 | <source>Open the left menu</source> |
12 | <target state="translated">A bal oldali menü bezárása</target> | 12 | <target state="translated">A bal oldali menü bezárása</target> |
13 | 13 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">135</context></context-group> | |
14 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit> | 14 | </trans-unit> |
15 | <trans-unit id="9075761896562520962"> | 15 | <trans-unit id="9075761896562520962"> |
16 | <source>You don't have notifications.</source> | 16 | <source>You don't have notifications.</source> |
17 | <target>Nincsenek értesítései.</target> | 17 | <target>Nincsenek értesítései.</target> |
@@ -128,7 +128,7 @@ | |||
128 | </trans-unit> | 128 | </trans-unit> |
129 | <trans-unit id="363592786729553688" datatype="html"> | 129 | <trans-unit id="363592786729553688" datatype="html"> |
130 | <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> | 130 | <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> |
131 | <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> | 131 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.pluginUrl" [queryParams]="notification.pluginQueryParams">"/>A(z) <x id="INTERPOLATION" equiv-text="{{ notification.plugin.name }}"/> bővítmény vagy téma új verziója érhető el: <x id="INTERPOLATION_1" equiv-text="{{ notification.plugin.latestVersion }}"/> </target> |
132 | <context-group purpose="location"> | 132 | <context-group purpose="location"> |
133 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 133 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
134 | <context context-type="linenumber">198,199</context> | 134 | <context context-type="linenumber">198,199</context> |
@@ -136,7 +136,7 @@ | |||
136 | </trans-unit> | 136 | </trans-unit> |
137 | <trans-unit id="5055099158245592648" datatype="html"> | 137 | <trans-unit id="5055099158245592648" datatype="html"> |
138 | <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> | 138 | <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> |
139 | <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> | 139 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [href]="notification.peertubeVersionLink" target="_blank" rel="noopener noreferer">"/>Egy új PeerTube verzió <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> érhető el: <x id="INTERPOLATION" equiv-text="{{ notification.peertube.latestVersion }}"/> </target> |
140 | <context-group purpose="location"> | 140 | <context-group purpose="location"> |
141 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 141 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
142 | <context context-type="linenumber">206,207</context> | 142 | <context context-type="linenumber">206,207</context> |
@@ -162,13 +162,24 @@ | |||
162 | <target state="translated"> | 162 | <target state="translated"> |
163 | <x id="INTERPOLATION" equiv-text="{{ action.label }}"/> | 163 | <x id="INTERPOLATION" equiv-text="{{ action.label }}"/> |
164 | </target> | 164 | </target> |
165 | 165 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">77</context></context-group> | |
166 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">77</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><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-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> | 166 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">105</context></context-group> |
167 | <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> | ||
168 | <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> | ||
169 | <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> | ||
170 | <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> | ||
171 | <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> | ||
172 | <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> | ||
173 | <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> | ||
174 | <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> | ||
175 | <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> | ||
176 | </trans-unit> | ||
167 | <trans-unit id="1486537403020619891" datatype="html"> | 177 | <trans-unit id="1486537403020619891" datatype="html"> |
168 | <source>My watch history</source> | 178 | <source>My watch history</source> |
169 | <target state="translated">Saját megtekintési előzmények</target> | 179 | <target state="translated">Saját megtekintési előzmények</target> |
170 | 180 | <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> | |
171 | <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">68</context></context-group></trans-unit> | 181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">68</context></context-group> |
182 | </trans-unit> | ||
172 | <trans-unit id="5924559757556526785"> | 183 | <trans-unit id="5924559757556526785"> |
173 | <source>Save to</source> | 184 | <source>Save to</source> |
174 | <target>Mentés ide</target> | 185 | <target>Mentés ide</target> |
@@ -177,8 +188,8 @@ | |||
177 | <trans-unit id="8432562579042371182"> | 188 | <trans-unit id="8432562579042371182"> |
178 | <source>Options</source> | 189 | <source>Options</source> |
179 | <target>Beállítások</target> | 190 | <target>Beállítások</target> |
180 | 191 | <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> | |
181 | <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> | 192 | </trans-unit> |
182 | <trans-unit id="1394835141143590910"> | 193 | <trans-unit id="1394835141143590910"> |
183 | <source>Start at</source> | 194 | <source>Start at</source> |
184 | <target>Kezdés itt</target> | 195 | <target>Kezdés itt</target> |
@@ -231,24 +242,27 @@ | |||
231 | <trans-unit id="5674286808255988565"> | 242 | <trans-unit id="5674286808255988565"> |
232 | <source>Create</source> | 243 | <source>Create</source> |
233 | <target>Létrehozás</target> | 244 | <target>Létrehozás</target> |
234 | 245 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
235 | 246 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
236 | 247 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">102</context></context-group> | |
237 | 248 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
238 | 249 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
239 | 250 | <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> | |
240 | 251 | <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> | |
241 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/+my-library/+my-video-channels/my-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-channels/my-video-channel-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-channels/my-video-channel-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-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> | 252 | <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> |
253 | <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> | ||
254 | </trans-unit> | ||
242 | <trans-unit id="1006562256968398209" datatype="html"> | 255 | <trans-unit id="1006562256968398209" datatype="html"> |
243 | <source>video</source> | 256 | <source>video</source> |
244 | <target state="translated">videó</target> | 257 | <target state="translated">videó</target> |
245 | 258 | ||
246 | <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">294</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> | 259 | |
260 | <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">301</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> | ||
247 | <trans-unit id="6438815964972582865" datatype="html"> | 261 | <trans-unit id="6438815964972582865" datatype="html"> |
248 | <source>The following link contains a private token and should not be shared with anyone.</source> | 262 | <source>The following link contains a private token and should not be shared with anyone.</source> |
249 | <target state="new"> The following link contains a private token and should not be shared with anyone. </target> | 263 | <target state="translated">A következő hivatkozás egy személyes tokent tartalmaz, ezért nem szabad másokkal megosztani.</target> |
250 | 264 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group> | |
251 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 265 | </trans-unit> |
252 | <trans-unit id="187187500641108332" datatype="html"> | 266 | <trans-unit id="187187500641108332" datatype="html"> |
253 | <source><x id="INTERPOLATION" equiv-text="{{ file.resolution.label }}"/></source> | 267 | <source><x id="INTERPOLATION" equiv-text="{{ file.resolution.label }}"/></source> |
254 | <target state="new"><x id="INTERPOLATION" equiv-text="{{ file.resolution.label }}"/></target> | 268 | <target state="new"><x id="INTERPOLATION" equiv-text="{{ file.resolution.label }}"/></target> |
@@ -260,13 +274,13 @@ | |||
260 | <trans-unit id="5235042777215655908" datatype="html"> | 274 | <trans-unit id="5235042777215655908" datatype="html"> |
261 | <source>subtitles</source> | 275 | <source>subtitles</source> |
262 | <target state="translated">felirat</target> | 276 | <target state="translated">felirat</target> |
263 | 277 | <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> | |
264 | <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> | 278 | </trans-unit> |
265 | <trans-unit id="7513076467032912668" datatype="html"> | 279 | <trans-unit id="7513076467032912668" datatype="html"> |
266 | <source>Format</source> | 280 | <source>Format</source> |
267 | <target state="translated">Formátum</target> | 281 | <target state="translated">Formátum</target> |
268 | 282 | <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> | |
269 | <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> | 283 | </trans-unit> |
270 | <trans-unit id="187187500641108332" datatype="html"> | 284 | <trans-unit id="187187500641108332" datatype="html"> |
271 | <source><x id="INTERPOLATION" equiv-text="{{ item.value.label }}"/> </source> | 285 | <source><x id="INTERPOLATION" equiv-text="{{ item.value.label }}"/> </source> |
272 | <target state="translated"> | 286 | <target state="translated"> |
@@ -279,45 +293,49 @@ | |||
279 | <trans-unit id="7385834259346199883" datatype="html"> | 293 | <trans-unit id="7385834259346199883" datatype="html"> |
280 | <source>Video stream</source> | 294 | <source>Video stream</source> |
281 | <target state="translated">Video-adatfolyam</target> | 295 | <target state="translated">Video-adatfolyam</target> |
282 | 296 | <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> | |
283 | <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> | 297 | </trans-unit> |
284 | <trans-unit id="5496771215105419189" datatype="html"> | 298 | <trans-unit id="5496771215105419189" datatype="html"> |
285 | <source>Audio stream</source> | 299 | <source>Audio stream</source> |
286 | <target state="translated">Hangadatfolyam</target> | 300 | <target state="translated">Hangadatfolyam</target> |
287 | 301 | <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> | |
288 | <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> | 302 | </trans-unit> |
289 | <trans-unit id="6316149158173629264"> | 303 | <trans-unit id="6316149158173629264"> |
290 | <source>Direct download</source> | 304 | <source>Direct download</source> |
291 | <target>Közvetlen letöltés</target> | 305 | <target>Közvetlen letöltés</target> |
292 | 306 | <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> | |
293 | <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> | 307 | </trans-unit> |
294 | <trans-unit id="5910455707959454672"> | 308 | <trans-unit id="5910455707959454672"> |
295 | <source>Torrent (.torrent file)</source> | 309 | <source>Torrent (.torrent file)</source> |
296 | <target>Torrent (.torrent fájl)</target> | 310 | <target>Torrent (.torrent fájl)</target> |
297 | 311 | <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> | |
298 | <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> | 312 | </trans-unit> |
299 | <trans-unit id="5830517253429165613" datatype="html"> | 313 | <trans-unit id="5830517253429165613" datatype="html"> |
300 | <source>Advanced</source> | 314 | <source>Advanced</source> |
301 | <target state="new"> Advanced </target> | 315 | <target state="translated">Haladó</target> |
302 | 316 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">135</context></context-group> | |
303 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">135</context></context-group></trans-unit> | 317 | </trans-unit> |
304 | <trans-unit id="4493457595110310369" datatype="html"> | 318 | <trans-unit id="4493457595110310369" datatype="html"> |
305 | <source>Simple</source> | 319 | <source>Simple</source> |
306 | <target state="new"> Simple </target> | 320 | <target state="translated">Egyszerű</target> |
307 | 321 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">143</context></context-group> | |
308 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">143</context></context-group></trans-unit> | 322 | </trans-unit> |
309 | <trans-unit id="1006562256968398209" datatype="html"> | 323 | <trans-unit id="1006562256968398209" datatype="html"> |
310 | <source>video</source> | 324 | <source>video</source> |
311 | <target state="translated">videó</target> | 325 | <target state="translated">videó</target> |
326 | <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">289</context></context-group> | ||
327 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">54</context></context-group> | ||
328 | </trans-unit> | ||
329 | <trans-unit id="6995024616159044376" datatype="html"> | ||
330 | <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> | ||
331 | <target state="translated">Ezzel a videóval túllépte a videókvótáját (videó mérete: <x id="PH" equiv-text="videoSizeBytes"/>, felhasználva: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, kvóta: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> | ||
312 | 332 | ||
333 | <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">337</context></context-group></trans-unit> | ||
334 | <trans-unit id="7873395933409147217" datatype="html"> | ||
335 | <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> | ||
336 | <target state="translated">Ezzel a videóval átlépte a napi videó kvótáját (videó mérete: <x id="PH" equiv-text="videoSizeBytes"/>, felhasználva: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, kvóta: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> | ||
313 | 337 | ||
314 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> | 338 | <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">356</context></context-group></trans-unit> |
315 | <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> | ||
316 | |||
317 | <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">330</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> | ||
318 | <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> | ||
319 | |||
320 | <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">349</context></context-group></trans-unit> | ||
321 | <trans-unit id="5235042777215655908" datatype="html"> | 339 | <trans-unit id="5235042777215655908" datatype="html"> |
322 | <source>subtitles</source> | 340 | <source>subtitles</source> |
323 | <target state="translated">feliratok</target> | 341 | <target state="translated">feliratok</target> |
@@ -327,13 +345,15 @@ | |||
327 | <source>Cancel</source> | 345 | <source>Cancel</source> |
328 | <target>Mégse</target> | 346 | <target>Mégse</target> |
329 | 347 | ||
330 | <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">48</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> | 348 | |
349 | <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">48</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">23</context></context-group></trans-unit> | ||
331 | <trans-unit id="3099741642167775297"> | 350 | <trans-unit id="3099741642167775297"> |
332 | <source>Download</source> | 351 | <source>Download</source> |
333 | <target>Letöltés</target> | 352 | <target>Letöltés</target> |
334 | 353 | <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> | |
335 | 354 | <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> | |
336 | <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><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> | 355 | <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> |
356 | </trans-unit> | ||
337 | <trans-unit id="6325096236207614377"> | 357 | <trans-unit id="6325096236207614377"> |
338 | <source>Reason...</source> | 358 | <source>Reason...</source> |
339 | <target>Indok…</target> | 359 | <target>Indok…</target> |
@@ -347,8 +367,10 @@ | |||
347 | <trans-unit id="834805431202576194" datatype="html"> | 367 | <trans-unit id="834805431202576194" datatype="html"> |
348 | <source>No results.</source> | 368 | <source>No results.</source> |
349 | <target state="new">No results.</target> | 369 | <target state="new">No results.</target> |
350 | 370 | <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> | |
351 | <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> | 371 | <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> |
372 | <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> | ||
373 | </trans-unit> | ||
352 | <trans-unit id="935187492052582731"> | 374 | <trans-unit id="935187492052582731"> |
353 | <source>Submit</source> | 375 | <source>Submit</source> |
354 | <target>Elküldés</target> | 376 | <target>Elküldés</target> |
@@ -358,8 +380,10 @@ | |||
358 | <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> | 380 | <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> |
359 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">96</context></context-group> | 381 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">96</context></context-group> |
360 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">42</context></context-group> | 382 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">42</context></context-group> |
361 | </trans-unit><trans-unit id="8343217707114977013" datatype="html"> | 383 | </trans-unit> |
362 | <source>The contact form is not enabled on this instance.</source><target state="new">The contact form is not enabled on this instance.</target> | 384 | <trans-unit id="8343217707114977013" datatype="html"> |
385 | <source>The contact form is not enabled on this instance.</source> | ||
386 | <target state="translated">A kapcsolatfelvételi űrlap nem érhető el ezen a példányon.</target> | ||
363 | <context-group purpose="location"> | 387 | <context-group purpose="location"> |
364 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> | 388 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> |
365 | <context context-type="linenumber">56</context> | 389 | <context context-type="linenumber">56</context> |
@@ -386,8 +410,10 @@ | |||
386 | <source>Blocking this live will automatically terminate the live stream.</source> | 410 | <source>Blocking this live will automatically terminate the live stream.</source> |
387 | <target state="translated">Ezen élő közvetítés blokkolása automatikusan megszakítja a közvetítést.</target> | 411 | <target state="translated">Ezen élő közvetítés blokkolása automatikusan megszakítja a közvetítést.</target> |
388 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">33</context></context-group> | 412 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">33</context></context-group> |
389 | </trans-unit><trans-unit id="2466846716878254816" datatype="html"> | 413 | </trans-unit> |
390 | <source>Element <x id="PH" equiv-text="param"/> not found</source><target state="new">Element <x id="PH" equiv-text="param"/> not found</target> | 414 | <trans-unit id="2466846716878254816" datatype="html"> |
415 | <source>Element <x id="PH" equiv-text="param"/> not found</source> | ||
416 | <target state="translated">Elem <x id="PH" equiv-text="param"/> nem található</target> | ||
391 | <context-group purpose="location"> | 417 | <context-group purpose="location"> |
392 | <context context-type="sourcefile">src/app/shared/shared-search/find-in-bulk.service.ts</context> | 418 | <context context-type="sourcefile">src/app/shared/shared-search/find-in-bulk.service.ts</context> |
393 | <context context-type="linenumber">80</context> | 419 | <context context-type="linenumber">80</context> |
@@ -401,26 +427,31 @@ | |||
401 | <trans-unit id="7539427273132299890"> | 427 | <trans-unit id="7539427273132299890"> |
402 | <source>Unlisted</source> | 428 | <source>Unlisted</source> |
403 | <target>Nem listázott</target> | 429 | <target>Nem listázott</target> |
404 | 430 | <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> | |
405 | 431 | <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> | |
406 | <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> | 432 | </trans-unit> |
407 | <trans-unit id="3686284950598311784"> | 433 | <trans-unit id="3686284950598311784"> |
408 | <source>Private</source> | 434 | <source>Private</source> |
409 | <target>Személyes</target> | 435 | <target>Személyes</target> |
410 | 436 | <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> | |
411 | 437 | <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> | |
412 | 438 | <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">33</context></context-group> | |
413 | <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">33</context></context-group></trans-unit> | 439 | </trans-unit> |
414 | <trans-unit id="7688104409544625220" datatype="html"> | 440 | <trans-unit id="7688104409544625220" datatype="html"> |
415 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> | 441 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> |
416 | <target state="translated">{VAR_PLURAL, plural, =1 {1 megtekintés} other { <x id="INTERPOLATION"/> megtekintés} }</target> | 442 | <target state="translated">{VAR_PLURAL, plural, =1 {1 megtekintés} other { <x id="INTERPOLATION"/> megtekintés} }</target> |
417 | <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> | 443 | <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> |
418 | </trans-unit> | 444 | </trans-unit> |
419 | <trans-unit id="8856905278208146821" datatype="html"> | 445 | <trans-unit id="8856905278208146821" datatype="html"> |
420 | <source> <x id="ICU" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 videos} other {{{ getTotalVideosOf(videoChannel) }} videos}}"/> </source> | 446 | <source><x id="ICU" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 videos} other {{{ getTotalVideosOf(videoChannel) }} videos}}"/> </source> |
421 | <target state="translated"><x id="ICU" equiv-text="{video.views, plural, =1 {1 megtekintés} other {{{ video.views | myNumberFormatter }} megtekintés}} "/> </target> | 447 | <target state="translated"><x id="ICU" equiv-text="{video.views, plural, =1 {1 megtekintés} other {{{ video.views | myNumberFormatter }} megtekintés}} "/> </target> |
422 | 448 | <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> | |
423 | <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">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">76</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><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><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit> | 449 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">41</context></context-group> |
450 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">76</context></context-group> | ||
451 | <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> | ||
452 | <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> | ||
453 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">7</context></context-group> | ||
454 | </trans-unit> | ||
424 | <trans-unit id="8562063050145802350" datatype="html"> | 455 | <trans-unit id="8562063050145802350" datatype="html"> |
425 | <source>{VAR_PLURAL, plural, =1 {1 viewer} other {<x id="INTERPOLATION"/> viewers}}</source> | 456 | <source>{VAR_PLURAL, plural, =1 {1 viewer} other {<x id="INTERPOLATION"/> viewers}}</source> |
426 | <target state="translated">{VAR_PLURAL, plural, =1 {1 néző} other {<x id="INTERPOLATION"/> néző}}</target> | 457 | <target state="translated">{VAR_PLURAL, plural, =1 {1 néző} other {<x id="INTERPOLATION"/> néző}}</target> |
@@ -439,36 +470,37 @@ | |||
439 | </trans-unit> | 470 | </trans-unit> |
440 | <trans-unit id="3267631941074558910" datatype="html"> | 471 | <trans-unit id="3267631941074558910" datatype="html"> |
441 | <source>Cannot fetch information of this remote account</source> | 472 | <source>Cannot fetch information of this remote account</source> |
442 | <target state="new">Cannot fetch information of this remote account</target> | 473 | <target state="translated">Nem sikerült a távoli fiók adatainak betöltése</target> |
443 | 474 | <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> | |
444 | <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> | 475 | </trans-unit> |
445 | <trans-unit id="9081463435738465430" datatype="html"> | 476 | <trans-unit id="9081463435738465430" datatype="html"> |
446 | <source>Blocked</source> | 477 | <source>Blocked</source> |
447 | <target state="translated">Letiltva</target> | 478 | <target state="translated">Letiltva</target> |
448 | 479 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">57</context></context-group> | |
449 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> | 480 | </trans-unit> |
450 | <trans-unit id="3514509630940272440" datatype="html"> | 481 | <trans-unit id="3514509630940272440" datatype="html"> |
451 | <source>Sensitive</source> | 482 | <source>Sensitive</source> |
452 | <target state="translated">Érzékeny</target> | 483 | <target state="translated">Érzékeny</target> |
453 | 484 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">62</context></context-group> | |
454 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 485 | </trans-unit> |
455 | <trans-unit id="7766488542631150871"> | 486 | <trans-unit id="7766488542631150871"> |
456 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 487 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
457 | <target>{VAR_PLURAL, plural, =0 {Nincs videó} =1 {1 videó} other { <x id="INTERPOLATION"/> videó} }</target> | 488 | <target>{VAR_PLURAL, plural, =0 {Nincs videó} =1 {1 videó} other { <x id="INTERPOLATION"/> videó} }</target> |
458 | 489 | <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">32</context></context-group> | |
459 | <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">32</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> | 490 | <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> |
491 | </trans-unit> | ||
460 | <trans-unit id="7708270344948043036" datatype="html"> | 492 | <trans-unit id="7708270344948043036" datatype="html"> |
461 | <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> | 493 | <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> |
462 | <target state="translated"> | 494 | <target state="translated"> |
463 | <x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> | 495 | <x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> |
464 | </target> | 496 | </target> |
465 | 497 | <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> | |
466 | <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> | 498 | </trans-unit> |
467 | <trans-unit id="3044142083883783523"> | 499 | <trans-unit id="3044142083883783523"> |
468 | <source>Updated <x id="INTERPOLATION"/></source> | 500 | <source>Updated <x id="INTERPOLATION"/></source> |
469 | <target><x id="INTERPOLATION"/> frissítve</target> | 501 | <target><x id="INTERPOLATION"/> frissítve</target> |
470 | 502 | <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> | |
471 | <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> | 503 | </trans-unit> |
472 | <trans-unit id="5643561794785412000" datatype="html"> | 504 | <trans-unit id="5643561794785412000" datatype="html"> |
473 | <source>Unavailable</source> | 505 | <source>Unavailable</source> |
474 | <target state="translated">Nem érhető el</target> | 506 | <target state="translated">Nem érhető el</target> |
@@ -477,10 +509,10 @@ | |||
477 | <trans-unit id="6381490568322624964" datatype="html"> | 509 | <trans-unit id="6381490568322624964" datatype="html"> |
478 | <source>Deleted</source> | 510 | <source>Deleted</source> |
479 | <target state="translated">Törölve</target> | 511 | <target state="translated">Törölve</target> |
480 | 512 | <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> | |
481 | 513 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">91</context></context-group> | |
482 | 514 | <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">34</context></context-group> | |
483 | <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-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">91</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">34</context></context-group></trans-unit> | 515 | </trans-unit> |
484 | <trans-unit id="5263519165976128456" datatype="html"> | 516 | <trans-unit id="5263519165976128456" datatype="html"> |
485 | <source>Edit starts/stops at</source> | 517 | <source>Edit starts/stops at</source> |
486 | <target state="translated">A szerkesztés itt kezdődik vagy végződik</target> | 518 | <target state="translated">A szerkesztés itt kezdődik vagy végződik</target> |
@@ -489,13 +521,11 @@ | |||
489 | <trans-unit id="3768927257183755959"> | 521 | <trans-unit id="3768927257183755959"> |
490 | <source>Save</source> | 522 | <source>Save</source> |
491 | <target>Mentés</target> | 523 | <target>Mentés</target> |
492 | 524 | <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> | |
493 | 525 | <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> | |
494 | 526 | <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> | |
495 | 527 | <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">82</context></context-group> | |
496 | 528 | </trans-unit> | |
497 | |||
498 | <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">82</context></context-group></trans-unit> | ||
499 | <trans-unit id="8890926675057871150"> | 529 | <trans-unit id="8890926675057871150"> |
500 | <source>Delete from <x id="INTERPOLATION"/></source> | 530 | <source>Delete from <x id="INTERPOLATION"/></source> |
501 | <target>Törlés innen: <x id="INTERPOLATION"/></target> | 531 | <target>Törlés innen: <x id="INTERPOLATION"/></target> |
@@ -513,21 +543,42 @@ | |||
513 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> | 543 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> |
514 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> | 544 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> |
515 | </trans-unit> | 545 | </trans-unit> |
516 | |||
517 | <trans-unit id="3594371452042277118" datatype="html"> | 546 | <trans-unit id="3594371452042277118" datatype="html"> |
518 | <source>Videos with the most interactions for recent videos, minus user history</source> | 547 | <source>Videos with the most interactions for recent videos, minus user history</source> |
519 | <target state="new">Videos with the most interactions for recent videos, minus user history</target> | 548 | <target state="translated">A legtöbb interakcióval rendelkező friss videók, kivéve a megnézettek</target> |
520 | 549 | <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> | |
521 | <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> | 550 | </trans-unit> |
522 | <trans-unit id="7022070615528435141"> | 551 | <trans-unit id="7022070615528435141"> |
523 | <source>Delete</source> | 552 | <source>Delete</source> |
524 | <target>Törlés</target> | 553 | <target>Törlés</target> |
525 | 554 | <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> | |
526 | 555 | <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">88</context></context-group> | |
527 | <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">88</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">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">164</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">81</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">195</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">117</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">144</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">185</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">178</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">145</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">388</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">423</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-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">87</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">208</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">308</context></context-group></trans-unit> | 556 | <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">92</context></context-group> |
557 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">95</context></context-group> | ||
558 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">164</context></context-group> | ||
559 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">81</context></context-group> | ||
560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">195</context></context-group> | ||
561 | <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> | ||
562 | <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> | ||
563 | <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> | ||
564 | <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> | ||
565 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">117</context></context-group> | ||
566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">144</context></context-group> | ||
567 | <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> | ||
568 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">178</context></context-group> | ||
569 | <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> | ||
570 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">145</context></context-group> | ||
571 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">388</context></context-group> | ||
572 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">423</context></context-group> | ||
573 | <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> | ||
574 | <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> | ||
575 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">87</context></context-group> | ||
576 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">208</context></context-group> | ||
577 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">308</context></context-group> | ||
578 | </trans-unit> | ||
528 | <trans-unit id="158575725114802951" datatype="html"> | 579 | <trans-unit id="158575725114802951" datatype="html"> |
529 | <source>Only live videos</source> | 580 | <source>Only live videos</source> |
530 | <target state="new">Only live videos</target> | 581 | <target state="translated">Csak élő közvetítések</target> |
531 | <context-group purpose="location"> | 582 | <context-group purpose="location"> |
532 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context> | 583 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context> |
533 | <context context-type="linenumber">53</context> | 584 | <context context-type="linenumber">53</context> |
@@ -536,17 +587,17 @@ | |||
536 | <trans-unit id="7585826646011739428"> | 587 | <trans-unit id="7585826646011739428"> |
537 | <source>Edit</source> | 588 | <source>Edit</source> |
538 | <target>Szerkesztés</target> | 589 | <target>Szerkesztés</target> |
539 | 590 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
540 | 591 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
541 | 592 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
542 | 593 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
543 | 594 | <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> | |
544 | 595 | <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> | |
545 | 596 | <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> | |
546 | 597 | <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> | |
547 | 598 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">270</context></context-group> | |
548 | 599 | <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> | |
549 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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-channels/my-video-channel-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-channels/my-video-channel-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">270</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> | 600 | </trans-unit> |
550 | <trans-unit id="5293515551330482519"> | 601 | <trans-unit id="5293515551330482519"> |
551 | <source>Truncated preview</source> | 602 | <source>Truncated preview</source> |
552 | <target>Megvágott előnézet</target> | 603 | <target>Megvágott előnézet</target> |
@@ -555,13 +606,18 @@ | |||
555 | <trans-unit id="8461609631969932886" datatype="html"> | 606 | <trans-unit id="8461609631969932886" datatype="html"> |
556 | <source>Hide</source> | 607 | <source>Hide</source> |
557 | <target state="new">Hide</target> | 608 | <target state="new">Hide</target> |
558 | 609 | <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> | |
559 | <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/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> | 610 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.html</context><context context-type="linenumber">11</context></context-group> |
611 | <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> | ||
612 | <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> | ||
613 | <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> | ||
614 | </trans-unit> | ||
560 | <trans-unit id="8461842260159597706" datatype="html"> | 615 | <trans-unit id="8461842260159597706" datatype="html"> |
561 | <source>Show</source> | 616 | <source>Show</source> |
562 | <target state="new">Show</target> | 617 | <target state="new">Show</target> |
563 | 618 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.html</context><context context-type="linenumber">10</context></context-group> | |
564 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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> | 619 | <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> |
620 | </trans-unit> | ||
565 | <trans-unit id="80730865601179554"> | 621 | <trans-unit id="80730865601179554"> |
566 | <source>Complete preview</source> | 622 | <source>Complete preview</source> |
567 | <target>Teljes előnézet</target> | 623 | <target>Teljes előnézet</target> |
@@ -584,7 +640,7 @@ | |||
584 | </trans-unit> | 640 | </trans-unit> |
585 | <trans-unit id="3372646000533908418" datatype="html"> | 641 | <trans-unit id="3372646000533908418" datatype="html"> |
586 | <source>Subscribe with a remote account:</source> | 642 | <source>Subscribe with a remote account:</source> |
587 | <target state="new">Subscribe with a remote account:</target> | 643 | <target state="translated">Feliratkozás egy távoli fiókkal:</target> |
588 | <context-group purpose="location"> | 644 | <context-group purpose="location"> |
589 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> | 645 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> |
590 | <context context-type="linenumber">62</context> | 646 | <context context-type="linenumber">62</context> |
@@ -600,7 +656,6 @@ | |||
600 | <target>Feliratkozás a helyi fiókjával</target> | 656 | <target>Feliratkozás a helyi fiókjával</target> |
601 | <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> | 657 | <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> |
602 | </trans-unit> | 658 | </trans-unit> |
603 | |||
604 | <trans-unit id="7639191791633609999" datatype="html"> | 659 | <trans-unit id="7639191791633609999" datatype="html"> |
605 | <source>The live stream will be automatically terminated.</source> | 660 | <source>The live stream will be automatically terminated.</source> |
606 | <target state="translated">Az élő közvetítés automatikusan véget fog érni.</target> | 661 | <target state="translated">Az élő közvetítés automatikusan véget fog érni.</target> |
@@ -628,7 +683,7 @@ | |||
628 | </trans-unit> | 683 | </trans-unit> |
629 | <trans-unit id="6462281745850371027" datatype="html"> | 684 | <trans-unit id="6462281745850371027" datatype="html"> |
630 | <source>You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> | 685 | <source>You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> |
631 | <target state="new"> You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | 686 | <target state="translated">A csatornára bármilyen ActivityPub kompatibilis fediverzum példányról feliratkozhat (például PeerTube, Mastodon vagy Pleroma).</target> |
632 | <context-group purpose="location"> | 687 | <context-group purpose="location"> |
633 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> | 688 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> |
634 | <context context-type="linenumber">18,19</context> | 689 | <context context-type="linenumber">18,19</context> |
@@ -636,7 +691,7 @@ | |||
636 | </trans-unit> | 691 | </trans-unit> |
637 | <trans-unit id="20374890400263257" datatype="html"> | 692 | <trans-unit id="20374890400263257" datatype="html"> |
638 | <source>You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> | 693 | <source>You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> |
639 | <target state="new"> You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | 694 | <target state="translated">Bármelyik ActivityPub kompatibilis fediverzum példányról végezhet műveleteket (például PeerTube, Mastodon vagy Pleroma).</target> |
640 | <context-group purpose="location"> | 695 | <context-group purpose="location"> |
641 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> | 696 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> |
642 | <context context-type="linenumber">26,27</context> | 697 | <context context-type="linenumber">26,27</context> |
@@ -670,7 +725,7 @@ | |||
670 | </trans-unit> | 725 | </trans-unit> |
671 | <trans-unit id="330610135077253864" datatype="html"> | 726 | <trans-unit id="330610135077253864" datatype="html"> |
672 | <source>Live streaming enabled</source> | 727 | <source>Live streaming enabled</source> |
673 | <target state="translated">Elő közvetítés engedélyezve</target> | 728 | <target state="translated">Élő közvetítés engedélyezve</target> |
674 | <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> | 729 | <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> |
675 | </trans-unit> | 730 | </trans-unit> |
676 | <trans-unit id="8135461567542503937" datatype="html"> | 731 | <trans-unit id="8135461567542503937" datatype="html"> |
@@ -701,10 +756,11 @@ | |||
701 | <trans-unit id="2602586221576511475"> | 756 | <trans-unit id="2602586221576511475"> |
702 | <source>Video quota</source> | 757 | <source>Video quota</source> |
703 | <target>Videokvóta</target> | 758 | <target>Videokvóta</target> |
704 | 759 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> | |
705 | 760 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> | |
706 | 761 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">113</context></context-group> | |
707 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/users/user-list/user-list.component.ts</context><context context-type="linenumber">113</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> | 762 | <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> |
763 | </trans-unit> | ||
708 | <trans-unit id="1502595455339510144"> | 764 | <trans-unit id="1502595455339510144"> |
709 | <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 765 | <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
710 | <target>Korlátlan <x id="START_TAG_NG_CONTAINER"/>(napi <x id="INTERPOLATION"/>)<x id="CLOSE_TAG_NG-CONTAINER"/></target> | 766 | <target>Korlátlan <x id="START_TAG_NG_CONTAINER"/>(napi <x id="INTERPOLATION"/>)<x id="CLOSE_TAG_NG-CONTAINER"/></target> |
@@ -750,8 +806,9 @@ | |||
750 | <trans-unit id="2906587845957718064"> | 806 | <trans-unit id="2906587845957718064"> |
751 | <source>Local</source> | 807 | <source>Local</source> |
752 | <target>Helyi</target> | 808 | <target>Helyi</target> |
753 | 809 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">4</context></context-group> | |
754 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.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-filters.model.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> | 810 | <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> |
811 | </trans-unit> | ||
755 | <trans-unit id="1670306451865226564" datatype="html"> | 812 | <trans-unit id="1670306451865226564" datatype="html"> |
756 | <source>users</source> | 813 | <source>users</source> |
757 | <target state="translated">felhasználó</target> | 814 | <target state="translated">felhasználó</target> |
@@ -782,9 +839,12 @@ | |||
782 | <trans-unit id="8564701209009684429" datatype="html"> | 839 | <trans-unit id="8564701209009684429" datatype="html"> |
783 | <source>Federation</source> | 840 | <source>Federation</source> |
784 | <target state="translated">Föderáció</target> | 841 | <target state="translated">Föderáció</target> |
785 | 842 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</context></context-group> | |
786 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit><trans-unit id="8726138323871139597" datatype="html"> | 843 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">58</context></context-group> |
787 | <source>Following</source><target state="new">Following</target> | 844 | </trans-unit> |
845 | <trans-unit id="8726138323871139597" datatype="html"> | ||
846 | <source>Following</source> | ||
847 | <target state="translated">Követés</target> | ||
788 | <context-group purpose="location"> | 848 | <context-group purpose="location"> |
789 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | 849 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> |
790 | <context context-type="linenumber">29</context> | 850 | <context context-type="linenumber">29</context> |
@@ -797,8 +857,10 @@ | |||
797 | <context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context> | 857 | <context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context> |
798 | <context context-type="linenumber">28</context> | 858 | <context context-type="linenumber">28</context> |
799 | </context-group> | 859 | </context-group> |
800 | </trans-unit><trans-unit id="4914577418256256836" datatype="html"> | 860 | </trans-unit> |
801 | <source>Followers</source><target state="new">Followers</target> | 861 | <trans-unit id="4914577418256256836" datatype="html"> |
862 | <source>Followers</source> | ||
863 | <target state="translated">Követők</target> | ||
802 | <context-group purpose="location"> | 864 | <context-group purpose="location"> |
803 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | 865 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> |
804 | <context context-type="linenumber">34</context> | 866 | <context context-type="linenumber">34</context> |
@@ -820,37 +882,43 @@ | |||
820 | </trans-unit> | 882 | </trans-unit> |
821 | <trans-unit id="2605931708025789621" datatype="html"> | 883 | <trans-unit id="2605931708025789621" datatype="html"> |
822 | <source>The upload failed</source> | 884 | <source>The upload failed</source> |
823 | <target state="new">The upload failed</target> | 885 | <target state="translated">A feltöltés nem sikerült</target> |
824 | 886 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">12</context></context-group> | |
825 | <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> | 887 | </trans-unit> |
826 | <trans-unit id="1447760976255144968" datatype="html"> | 888 | <trans-unit id="1447760976255144968" datatype="html"> |
827 | <source>The connection was interrupted</source> | 889 | <source>The connection was interrupted</source> |
828 | <target state="new">The connection was interrupted</target> | 890 | <target state="translated">A kapcsolat megszakadt</target> |
829 | 891 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">16</context></context-group> | |
830 | <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"> | 892 | </trans-unit> |
831 | <source>The server encountered an error</source><target state="new">The server encountered an error</target> | 893 | <trans-unit id="4499233456830047129" datatype="html"> |
832 | 894 | <source>The server encountered an error</source> | |
833 | <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> | 895 | <target state="translated">A kiszolgáló hibára futott</target> |
896 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">19</context></context-group> | ||
897 | </trans-unit> | ||
834 | <trans-unit id="3334825601859787496" datatype="html"> | 898 | <trans-unit id="3334825601859787496" datatype="html"> |
835 | <source>Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</source> | 899 | <source>Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</source> |
836 | <target state="new">Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</target> | 900 | <target state="translated">A <x id="PH" equiv-text="name"/> fájl áttöltése nem sikerült a beállított határidőn belül (általában 10 perc)</target> |
837 | 901 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">22</context></context-group> | |
838 | <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> | 902 | </trans-unit> |
839 | <trans-unit id="8530934870279569179" datatype="html"> | 903 | <trans-unit id="8530934870279569179" datatype="html"> |
840 | <source>Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</source> | 904 | <source>Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</source> |
841 | <target state="new">Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</target> | 905 | <target state="translated">A <x id="PH" equiv-text="name"/> fájl túl nagy volt (max. méret: <x id="PH_1" equiv-text="maxFileSize"/>)</target> |
842 | 906 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">26</context></context-group> | |
843 | <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> | 907 | </trans-unit> |
844 | <trans-unit id="2392488717875840729" datatype="html"> | 908 | <trans-unit id="2392488717875840729" datatype="html"> |
845 | <source>User</source> | 909 | <source>User</source> |
846 | <target state="translated">Felhasználó</target> | 910 | <target state="translated">Felhasználó</target> |
847 | 911 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group> | |
848 | <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">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group></trans-unit> | 912 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">27</context></context-group> |
913 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group> | ||
914 | </trans-unit> | ||
849 | <trans-unit id="4209525355702493436"> | 915 | <trans-unit id="4209525355702493436"> |
850 | <source>Ban</source> | 916 | <source>Ban</source> |
851 | <target>Kitiltás</target> | 917 | <target>Kitiltás</target> |
852 | 918 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">87</context></context-group> | |
853 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">87</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-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">271</context></context-group></trans-unit> | 919 | <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> |
920 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">271</context></context-group> | ||
921 | </trans-unit> | ||
854 | <trans-unit id="7908493851025027368"> | 922 | <trans-unit id="7908493851025027368"> |
855 | <source>A banned user will no longer be able to login.</source> | 923 | <source>A banned user will no longer be able to login.</source> |
856 | <target>Egy kitiltott felhasználó többé nem fog tudni bejelentkezni.</target> | 924 | <target>Egy kitiltott felhasználó többé nem fog tudni bejelentkezni.</target> |
@@ -859,24 +927,26 @@ | |||
859 | <trans-unit id="2159130950882492111"> | 927 | <trans-unit id="2159130950882492111"> |
860 | <source>Cancel</source> | 928 | <source>Cancel</source> |
861 | <target>Mégse</target> | 929 | <target>Mégse</target> |
862 | 930 | <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> | |
863 | 931 | <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> | |
864 | 932 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">121</context></context-group> | |
865 | 933 | <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> | |
866 | 934 | <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> | |
867 | 935 | <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> | |
868 | 936 | <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> | |
869 | 937 | <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> | |
870 | 938 | <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> | |
871 | 939 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">416</context></context-group> | |
872 | 940 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.html</context><context context-type="linenumber">20</context></context-group> | |
873 | 941 | <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> | |
874 | 942 | <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> | |
875 | 943 | <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> | |
876 | 944 | <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> | |
877 | 945 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">92</context></context-group> | |
878 | 946 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">26</context></context-group> | |
879 | <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">121</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-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/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">416</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">92</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">26</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">38</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> | 947 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">38</context></context-group> |
948 | <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> | ||
949 | </trans-unit> | ||
880 | <trans-unit id="3616223838716839702"> | 950 | <trans-unit id="3616223838716839702"> |
881 | <source>Ban this user</source> | 951 | <source>Ban this user</source> |
882 | <target>Felhasználó kitiltása</target> | 952 | <target>Felhasználó kitiltása</target> |
@@ -941,14 +1011,14 @@ | |||
941 | </trans-unit> | 1011 | </trans-unit> |
942 | <trans-unit id="7252854992688790751" datatype="html"> | 1012 | <trans-unit id="7252854992688790751" datatype="html"> |
943 | <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> | 1013 | <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> |
944 | <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> | 1014 | <target state="translated">Ez a példány lehetőséget biztosít regisztrációra. De kérjük, olvassa el a <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Feltételeket<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>"/> egy új fiók létrehozása előtt. Kereshet egy, az igényeinek pontosan megfelelő példányt: <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> |
945 | 1015 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">64</context></context-group> | |
946 | <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> | 1016 | </trans-unit> |
947 | <trans-unit id="7215649348148521605" datatype="html"> | 1017 | <trans-unit id="7215649348148521605" datatype="html"> |
948 | <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> | 1018 | <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> |
949 | <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> | 1019 | <target state="translated">Jelenleg ez a példány nem biztosít lehetőséget regisztrációra, de tovább információkért megnézheti a <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Feltételeket<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> vagy kereshet egy másik példányt amelyen lehetséges a regisztráció és feltöltheti a videóit. Böngésszen az elérhető példányok közt: <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> |
950 | 1020 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">69</context></context-group> | |
951 | <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> | 1021 | </trans-unit> |
952 | <trans-unit id="2392488717875840729"> | 1022 | <trans-unit id="2392488717875840729"> |
953 | <source>User</source> | 1023 | <source>User</source> |
954 | <target>Felhasználó</target> | 1024 | <target>Felhasználó</target> |
@@ -959,8 +1029,10 @@ | |||
959 | <source>Username or email address</source> | 1029 | <source>Username or email address</source> |
960 | <target>Felhasználónév vagy e-mail-cím</target> | 1030 | <target>Felhasználónév vagy e-mail-cím</target> |
961 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">23</context></context-group> | 1031 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">23</context></context-group> |
962 | </trans-unit><trans-unit id="1758058452376026925" datatype="html"> | 1032 | </trans-unit> |
963 | <source> ⚠️ Most email addresses do not include capital letters. </source><target state="new"> ⚠️ Most email addresses do not include capital letters. </target> | 1033 | <trans-unit id="1758058452376026925" datatype="html"> |
1034 | <source>⚠️ Most email addresses do not include capital letters.</source> | ||
1035 | <target state="translated">⚠️ A legtöbb e-mailcímben nincsenek nagybetűk.</target> | ||
964 | <context-group purpose="location"> | 1036 | <context-group purpose="location"> |
965 | <context context-type="sourcefile">src/app/+login/login.component.html</context> | 1037 | <context context-type="sourcefile">src/app/+login/login.component.html</context> |
966 | <context context-type="linenumber">33,34</context> | 1038 | <context context-type="linenumber">33,34</context> |
@@ -969,56 +1041,57 @@ | |||
969 | <trans-unit id="1431416938026210429"> | 1041 | <trans-unit id="1431416938026210429"> |
970 | <source>Password</source> | 1042 | <source>Password</source> |
971 | <target>Jelszó</target> | 1043 | <target>Jelszó</target> |
972 | 1044 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">117</context></context-group> | |
973 | 1045 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">117</context></context-group> | |
974 | 1046 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">38</context></context-group> | |
975 | 1047 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">40</context></context-group> | |
976 | 1048 | <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> | |
977 | 1049 | <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> | |
978 | 1050 | <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> | |
979 | 1051 | <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> | |
980 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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> | 1052 | </trans-unit> |
981 | <trans-unit id="8715156686857791956" datatype="html"> | 1053 | <trans-unit id="8715156686857791956" datatype="html"> |
982 | <source>Click here to reset your password</source> | 1054 | <source>Click here to reset your password</source> |
983 | <target state="translated">Kattintson ide a jelszava visszaállításához</target> | 1055 | <target state="translated">Kattintson ide a jelszava visszaállításához</target> |
984 | 1056 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">51</context></context-group> | |
985 | <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> | 1057 | </trans-unit> |
986 | <trans-unit id="892063502898494584" datatype="html"> | 1058 | <trans-unit id="892063502898494584" datatype="html"> |
987 | <source>I forgot my password</source> | 1059 | <source>I forgot my password</source> |
988 | <target state="new">I forgot my password</target> | 1060 | <target state="translated">Elfelejtettem a jelszavam</target> |
989 | 1061 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">51</context></context-group> | |
990 | <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> | 1062 | </trans-unit> |
991 | <trans-unit id="2101170466365500913" datatype="html"> | 1063 | <trans-unit id="2101170466365500913" datatype="html"> |
992 | <source>Logging into an account lets you publish content</source> | 1064 | <source>Logging into an account lets you publish content</source> |
993 | <target state="new"> Logging into an account lets you publish content </target> | 1065 | <target state="translated">Egy fiókba való belépéssel tartalmakat tehet közzé</target> |
994 | 1066 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">60</context></context-group> | |
995 | <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> | 1067 | </trans-unit> |
996 | <trans-unit id="2454050363478003966"> | 1068 | <trans-unit id="2454050363478003966"> |
997 | <source>Login</source> | 1069 | <source>Login</source> |
998 | <target>Bejelentkezés</target> | 1070 | <target>Bejelentkezés</target> |
999 | 1071 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login-routing.module.ts</context><context context-type="linenumber">12</context></context-group> | |
1000 | 1072 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">48</context></context-group> | |
1001 | <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">99</context></context-group></trans-unit> | 1073 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">99</context></context-group> |
1074 | </trans-unit> | ||
1002 | <trans-unit id="3183213940445113677" datatype="html"> | 1075 | <trans-unit id="3183213940445113677" datatype="html"> |
1003 | <source>Or sign in with</source> | 1076 | <source>Or sign in with</source> |
1004 | <target state="translated">Vagy jelentkezzen be ezzel:</target> | 1077 | <target state="translated">Vagy jelentkezzen be ezzel:</target> |
1005 | 1078 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">76</context></context-group> | |
1006 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> | 1079 | </trans-unit> |
1007 | <trans-unit id="3238209155172574367"> | 1080 | <trans-unit id="3238209155172574367"> |
1008 | <source>Forgot your password</source> | 1081 | <source>Forgot your password</source> |
1009 | <target>Elfelejtett jelszó</target> | 1082 | <target>Elfelejtett jelszó</target> |
1010 | 1083 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">95</context></context-group> | |
1011 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit> | 1084 | </trans-unit> |
1012 | <trans-unit id="87327320394367488" datatype="html"> | 1085 | <trans-unit id="87327320394367488" datatype="html"> |
1013 | <source>We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</source> | 1086 | <source>We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</source> |
1014 | <target state="translated">Sajnáljuk, de nem tudja helyreállítani a jelszavát, mert a példány rendszergazdája nem állította be a PeerTube levelezőrendszerét.</target> | 1087 | <target state="translated">Sajnáljuk, de nem tudja helyreállítani a jelszavát, mert a példány rendszergazdája nem állította be a PeerTube levelezőrendszerét.</target> |
1015 | 1088 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">103</context></context-group> | |
1016 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">103</context></context-group></trans-unit> | 1089 | </trans-unit> |
1017 | <trans-unit id="3188014010833256853" datatype="html"> | 1090 | <trans-unit id="3188014010833256853" datatype="html"> |
1018 | <source>Enter your email address and we will send you a link to reset your password.</source> | 1091 | <source>Enter your email address and we will send you a link to reset your password.</source> |
1019 | <target state="new"> Enter your email address and we will send you a link to reset your password. </target> | 1092 | <target state="translated">Adja meg az e-mail címét és küldünk egy hivatkozást a jelszó visszaállítására.</target> |
1020 | 1093 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">107</context></context-group> | |
1021 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> | 1094 | </trans-unit> |
1022 | <trans-unit id="1190256911880544559" datatype="html"> | 1095 | <trans-unit id="1190256911880544559" datatype="html"> |
1023 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. | 1096 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. |
1024 | The link will expire within 1 hour.</source> | 1097 | The link will expire within 1 hour.</source> |
@@ -1028,26 +1101,27 @@ The link will expire within 1 hour.</source> | |||
1028 | <trans-unit id="4768749765465246664"> | 1101 | <trans-unit id="4768749765465246664"> |
1029 | <source>Email</source> | 1102 | <source>Email</source> |
1030 | <target>E-mail</target> | 1103 | <target>E-mail</target> |
1031 | 1104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group> | |
1032 | 1105 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group> | |
1033 | 1106 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">112</context></context-group> | |
1034 | 1107 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">111</context></context-group> | |
1035 | 1108 | <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> | |
1036 | 1109 | <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> | |
1037 | 1110 | <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> | |
1038 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/users/user-list/user-list.component.ts</context><context context-type="linenumber">112</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">111</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/+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> | 1111 | <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> |
1112 | </trans-unit> | ||
1039 | <trans-unit id="3967269098753656610"> | 1113 | <trans-unit id="3967269098753656610"> |
1040 | <source>Email address</source> | 1114 | <source>Email address</source> |
1041 | <target>E-mail-cím</target> | 1115 | <target>E-mail-cím</target> |
1042 | 1116 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">113</context></context-group> | |
1043 | 1117 | <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> | |
1044 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">113</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> | 1118 | </trans-unit> |
1045 | <trans-unit id="7808756054397155068" datatype="html"> | 1119 | <trans-unit id="7808756054397155068" datatype="html"> |
1046 | <source>Reset</source> | 1120 | <source>Reset</source> |
1047 | <target state="new">Reset</target> | 1121 | <target state="translated">Visszaállítás</target> |
1048 | <note priority="1" from="description">Password reset button</note> | 1122 | <note priority="1" from="description">Password reset button</note> |
1049 | 1123 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">126</context></context-group> | |
1050 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1124 | </trans-unit> |
1051 | <trans-unit id="4319634264526091601" datatype="html"> | 1125 | <trans-unit id="4319634264526091601" datatype="html"> |
1052 | <source>on this instance</source> | 1126 | <source>on this instance</source> |
1053 | <target state="translated">ezen a példányon</target> | 1127 | <target state="translated">ezen a példányon</target> |
@@ -1060,7 +1134,7 @@ The link will expire within 1 hour.</source> | |||
1060 | </trans-unit> | 1134 | </trans-unit> |
1061 | <trans-unit id="8434369348784683733" datatype="html"> | 1135 | <trans-unit id="8434369348784683733" datatype="html"> |
1062 | <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> | 1136 | <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> |
1063 | <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> | 1137 | <target state="translated">erre: <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> |
1064 | <context-group purpose="location"> | 1138 | <context-group purpose="location"> |
1065 | <context context-type="sourcefile">src/app/+search/search.component.html</context> | 1139 | <context context-type="sourcefile">src/app/+search/search.component.html</context> |
1066 | <context context-type="linenumber">10</context> | 1140 | <context context-type="linenumber">10</context> |
@@ -1088,7 +1162,7 @@ The link will expire within 1 hour.</source> | |||
1088 | </trans-unit> | 1162 | </trans-unit> |
1089 | <trans-unit id="8890553633144307762" datatype="html"> | 1163 | <trans-unit id="8890553633144307762" datatype="html"> |
1090 | <source>Back</source> | 1164 | <source>Back</source> |
1091 | <target state="new">Back</target> | 1165 | <target state="translated">Vissza</target> |
1092 | <context-group purpose="location"> | 1166 | <context-group purpose="location"> |
1093 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> | 1167 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> |
1094 | <context context-type="linenumber">41</context> | 1168 | <context context-type="linenumber">41</context> |
@@ -1097,7 +1171,7 @@ The link will expire within 1 hour.</source> | |||
1097 | </trans-unit> | 1171 | </trans-unit> |
1098 | <trans-unit id="3885497195825665706" datatype="html"> | 1172 | <trans-unit id="3885497195825665706" datatype="html"> |
1099 | <source>Next</source> | 1173 | <source>Next</source> |
1100 | <target state="new">Next</target> | 1174 | <target state="translated">Következő</target> |
1101 | <context-group purpose="location"> | 1175 | <context-group purpose="location"> |
1102 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> | 1176 | <context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context> |
1103 | <context context-type="linenumber">42</context> | 1177 | <context context-type="linenumber">42</context> |
@@ -1106,10 +1180,10 @@ The link will expire within 1 hour.</source> | |||
1106 | </trans-unit> | 1180 | </trans-unit> |
1107 | <trans-unit id="5018804994794983050" datatype="html"> | 1181 | <trans-unit id="5018804994794983050" datatype="html"> |
1108 | <source>Signup</source> | 1182 | <source>Signup</source> |
1109 | <target state="new">Signup</target> | 1183 | <target state="translated">Regisztráció</target> |
1110 | |||
1111 | <note priority="1" from="description">Button on the registration form to finalize the account and channel creation</note> | 1184 | <note priority="1" from="description">Button on the registration form to finalize the account and channel creation</note> |
1112 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 1185 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">67</context></context-group> |
1186 | </trans-unit> | ||
1113 | <trans-unit id="5340005218109333045"> | 1187 | <trans-unit id="5340005218109333045"> |
1114 | <source>Filters <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> | 1188 | <source>Filters <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> |
1115 | <target>Szűrők <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></target> | 1189 | <target>Szűrők <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></target> |
@@ -1120,93 +1194,98 @@ The link will expire within 1 hour.</source> | |||
1120 | <target> | 1194 | <target> |
1121 | Nincs találat | 1195 | Nincs találat |
1122 | </target> | 1196 | </target> |
1123 | 1197 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">33</context></context-group> | |
1124 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 1198 | </trans-unit> |
1125 | <trans-unit id="5500467336262464724"> | 1199 | <trans-unit id="5500467336262464724"> |
1126 | <source><x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> subscribers </source> | 1200 | <source><x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> subscribers </source> |
1127 | <target> | 1201 | <target> |
1128 | <x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> feliratkozó | 1202 | <x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> feliratkozó |
1129 | </target> | 1203 | </target> |
1130 | 1204 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">25</context></context-group> | |
1131 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/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> | 1205 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">55</context></context-group> |
1206 | <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> | ||
1207 | </trans-unit> | ||
1132 | <trans-unit id="1516969129397662377" datatype="html"> | 1208 | <trans-unit id="1516969129397662377" datatype="html"> |
1133 | <source>Welcome to PeerTube, dear administrator!</source> | 1209 | <source>Welcome to PeerTube, dear administrator!</source> |
1134 | <target state="translated">Üdvözöli a PeerTube, kedves rendszergazda!</target> | 1210 | <target state="translated">Üdvözöli a PeerTube, kedves rendszergazda!</target> |
1135 | 1211 | <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> | |
1136 | <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> | 1212 | </trans-unit> |
1137 | <trans-unit id="807030720531713957" datatype="html"> | 1213 | <trans-unit id="807030720531713957" datatype="html"> |
1138 | <source>CLI documentation</source> | 1214 | <source>CLI documentation</source> |
1139 | <target state="translated">CLI dokumentáció</target> | 1215 | <target state="translated">CLI dokumentáció</target> |
1140 | 1216 | <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> | |
1141 | <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> | 1217 | </trans-unit> |
1142 | <trans-unit id="199127249622290422" datatype="html"> | 1218 | <trans-unit id="199127249622290422" datatype="html"> |
1143 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> | 1219 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> |
1144 | <target state="translated">Videók feltöltése vagy importálása, naplók feldolgozása, tárolókönyvtárak kitörlése, felhasználó jelszavának visszaállítása…</target> | 1220 | <target state="translated">Videók feltöltése vagy importálása, naplók feldolgozása, tárolókönyvtárak kitörlése, felhasználó jelszavának visszaállítása…</target> |
1145 | 1221 | <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> | |
1146 | <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> | 1222 | </trans-unit> |
1147 | <trans-unit id="249453844439446209" datatype="html"> | 1223 | <trans-unit id="249453844439446209" datatype="html"> |
1148 | <source>Administer documentation</source> | 1224 | <source>Administer documentation</source> |
1149 | <target state="translated">Rendszergazda dokumentáció</target> | 1225 | <target state="translated">Rendszergazda dokumentáció</target> |
1150 | 1226 | <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> | |
1151 | <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> | 1227 | </trans-unit> |
1152 | <trans-unit id="5910950876330656326" datatype="html"> | 1228 | <trans-unit id="5910950876330656326" datatype="html"> |
1153 | <source>Managing users, following other instances, dealing with spammers...</source> | 1229 | <source>Managing users, following other instances, dealing with spammers...</source> |
1154 | <target state="translated">Felhasználók kezelése, más példányok követése, kéretlen üzenetek küldőinek kezelése…</target> | 1230 | <target state="translated">Felhasználók kezelése, más példányok követése, kéretlen üzenetek küldőinek kezelése…</target> |
1155 | 1231 | <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> | |
1156 | <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> | 1232 | </trans-unit> |
1157 | <trans-unit id="879127294610588497" datatype="html"> | 1233 | <trans-unit id="879127294610588497" datatype="html"> |
1158 | <source>Use documentation</source> | 1234 | <source>Use documentation</source> |
1159 | <target state="translated">Dokumentáció használata</target> | 1235 | <target state="translated">Dokumentáció használata</target> |
1160 | 1236 | <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> | |
1161 | <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> | 1237 | </trans-unit> |
1162 | <trans-unit id="3848077896245199337" datatype="html"> | 1238 | <trans-unit id="3848077896245199337" datatype="html"> |
1163 | <source>Setup your account, managing video playlists, discover third-party applications...</source> | 1239 | <source>Setup your account, managing video playlists, discover third-party applications...</source> |
1164 | <target state="translated">Fiók beállítása, videolejátszási listák kezelése, harmadik féltől származó alkalmazások felfedezése…</target> | 1240 | <target state="translated">Fiók beállítása, videolejátszási listák kezelése, harmadik féltől származó alkalmazások felfedezése…</target> |
1165 | 1241 | <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> | |
1166 | <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> | 1242 | </trans-unit> |
1167 | <trans-unit id="6284442506490785579" datatype="html"> | 1243 | <trans-unit id="6284442506490785579" datatype="html"> |
1168 | <source>Useful links</source> | 1244 | <source>Useful links</source> |
1169 | <target state="translated">Hasznos hivatkozások</target> | 1245 | <target state="translated">Hasznos hivatkozások</target> |
1170 | 1246 | <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> | |
1171 | <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> | 1247 | </trans-unit> |
1172 | <trans-unit id="5170617864166788170" datatype="html"> | 1248 | <trans-unit id="5170617864166788170" datatype="html"> |
1173 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> | 1249 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> |
1174 | <target state="translated">Hivatalos PeerTube weboldal (hírek, támogatás, közreműködés…): <x id="START_LINK"/>https://joinpeertube.org <x id="CLOSE_LINK"/></target> | 1250 | <target state="translated">Hivatalos PeerTube weboldal (hírek, támogatás, közreműködés…): <x id="START_LINK"/>https://joinpeertube.org <x id="CLOSE_LINK"/></target> |
1175 | 1251 | <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> | |
1176 | <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> | 1252 | </trans-unit> |
1177 | <trans-unit id="4614992717645869756" datatype="html"> | 1253 | <trans-unit id="4614992717645869756" datatype="html"> |
1178 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> | 1254 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> |
1179 | <target state="translated">Saját példány elhelyezése a nyilvános PeerTube jegyzékbe: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></target> | 1255 | <target state="translated">Saját példány elhelyezése a nyilvános PeerTube jegyzékbe: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></target> |
1180 | 1256 | <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> | |
1181 | <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> | 1257 | </trans-unit> |
1182 | <trans-unit id="2081626998027585315" datatype="html"> | 1258 | <trans-unit id="2081626998027585315" datatype="html"> |
1183 | <source>It's time to configure your instance!</source> | 1259 | <source>It's time to configure your instance!</source> |
1184 | <target state="translated">Itt az ideje beállítani a példányát!</target> | 1260 | <target state="translated">Itt az ideje beállítani a példányát!</target> |
1185 | 1261 | <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> | |
1186 | <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> | 1262 | </trans-unit> |
1187 | <trans-unit id="5083058563861587027" datatype="html"> | 1263 | <trans-unit id="5083058563861587027" datatype="html"> |
1188 | <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> | 1264 | <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> |
1189 | <target state="translated">A <x id="START_TAG_STRONG"/>példány nevének <x id="CLOSE_TAG_STRONG"/> kiválasztása, <x id="START_TAG_STRONG"/>a leírás megadása <x id="CLOSE_TAG_STRONG"/>, annak meghatározása, <x id="START_TAG_STRONG"/>hogy Ön kicsoda <x id="CLOSE_TAG_STRONG"/>, miért <x id="START_TAG_STRONG"/>hozta létre a példányát <x id="CLOSE_TAG_STRONG"/> és <x id="START_TAG_STRONG"/>meddig <x id="CLOSE_TAG_STRONG"/> tervezi <x id="START_TAG_STRONG"/>fenntartani <x id="CLOSE_TAG_STRONG"/>, nagyon fontosak a látogatóknak, hogy megértsék, milyen típusú példányon is vannak. </target> | 1265 | <target state="translated">A <x id="START_TAG_STRONG"/>példány nevének <x id="CLOSE_TAG_STRONG"/> kiválasztása, <x id="START_TAG_STRONG"/>a leírás megadása <x id="CLOSE_TAG_STRONG"/>, annak meghatározása, <x id="START_TAG_STRONG"/>hogy Ön kicsoda <x id="CLOSE_TAG_STRONG"/>, miért <x id="START_TAG_STRONG"/>hozta létre a példányát <x id="CLOSE_TAG_STRONG"/> és <x id="START_TAG_STRONG"/>meddig <x id="CLOSE_TAG_STRONG"/> tervezi <x id="START_TAG_STRONG"/>fenntartani <x id="CLOSE_TAG_STRONG"/>, nagyon fontosak a látogatóknak, hogy megértsék, milyen típusú példányon is vannak. </target> |
1190 | 1266 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">58</context></context-group> | |
1191 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 1267 | </trans-unit> |
1192 | <trans-unit id="5329436244765769292" datatype="html"> | 1268 | <trans-unit id="5329436244765769292" datatype="html"> |
1193 | <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> | 1269 | <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> |
1194 | <target state="translated">Ha meg akarja nyitni a regisztrációt, akkor dönteni kell a <x id="START_TAG_STRONG"/>moderációs szabályokról<x id="CLOSE_TAG_STRONG"/> és <x id="START_TAG_STRONG"/>a példány szolgáltatási feltételeiről<x id="CLOSE_TAG_STRONG"/>, valamint meg kell adni a kategóriákat, és a moderátorok által beszélt nyelveket. Így segíthet a felhasználóknak abban, hogy a <x id="START_TAG_STRONG"/>megfelelő<x id="CLOSE_TAG_STRONG"/> PeerTube példányra regisztráljanak. </target> | 1270 | <target state="translated">Ha meg akarja nyitni a regisztrációt, akkor dönteni kell a <x id="START_TAG_STRONG"/>moderációs szabályokról<x id="CLOSE_TAG_STRONG"/> és <x id="START_TAG_STRONG"/>a példány szolgáltatási feltételeiről<x id="CLOSE_TAG_STRONG"/>, valamint meg kell adni a kategóriákat, és a moderátorok által beszélt nyelveket. Így segíthet a felhasználóknak abban, hogy a <x id="START_TAG_STRONG"/>megfelelő<x id="CLOSE_TAG_STRONG"/> PeerTube példányra regisztráljanak. </target> |
1195 | 1271 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">64</context></context-group> | |
1196 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 1272 | </trans-unit> |
1197 | <trans-unit id="5704345824323933019" datatype="html"> | 1273 | <trans-unit id="5704345824323933019" datatype="html"> |
1198 | <source>Remind me later</source> | 1274 | <source>Remind me later</source> |
1199 | <target state="translated">Emlékeztessen később</target> | 1275 | <target state="translated">Emlékeztessen később</target> |
1200 | 1276 | <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> | |
1201 | <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/admin-welcome-modal.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit><trans-unit id="7997432701743294657" datatype="html"> | 1277 | <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> |
1202 | <source> Set up </source><target state="new"> Set up </target> | 1278 | </trans-unit> |
1203 | 1279 | <trans-unit id="7997432701743294657" datatype="html"> | |
1204 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 1280 | <source>Set up</source> |
1281 | <target state="translated">Beállítás</target> | ||
1282 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">35</context></context-group> | ||
1283 | </trans-unit> | ||
1205 | <trans-unit id="9202089339019827574" datatype="html"> | 1284 | <trans-unit id="9202089339019827574" datatype="html"> |
1206 | <source>Configure my instance</source> | 1285 | <source>Configure my instance</source> |
1207 | <target state="translated">Példányom beállítása</target> | 1286 | <target state="translated">Példányom beállítása</target> |
1208 | 1287 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">81</context></context-group> | |
1209 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit> | 1288 | </trans-unit> |
1210 | <trans-unit id="9005121595859995793" datatype="html"> | 1289 | <trans-unit id="9005121595859995793" datatype="html"> |
1211 | <source>Configuration warning!</source> | 1290 | <source>Configuration warning!</source> |
1212 | <target state="translated">Beállítási figyelmeztetés!</target> | 1291 | <target state="translated">Beállítási figyelmeztetés!</target> |
@@ -1239,7 +1318,7 @@ The link will expire within 1 hour.</source> | |||
1239 | </trans-unit> | 1318 | </trans-unit> |
1240 | <trans-unit id="1909672990242291785" datatype="html"> | 1319 | <trans-unit id="1909672990242291785" datatype="html"> |
1241 | <source>How you plan to pay for keeping your instance running</source> | 1320 | <source>How you plan to pay for keeping your instance running</source> |
1242 | <target state="new">How you plan to pay for keeping your instance running</target> | 1321 | <target state="translated">Hogy kíván fizetni, hogy a példánya tovább működhessen</target> |
1243 | <context-group purpose="location"> | 1322 | <context-group purpose="location"> |
1244 | <context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context> | 1323 | <context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context> |
1245 | <context context-type="linenumber">18</context> | 1324 | <context context-type="linenumber">18</context> |
@@ -1257,13 +1336,13 @@ The link will expire within 1 hour.</source> | |||
1257 | </trans-unit> | 1336 | </trans-unit> |
1258 | <trans-unit id="4116024528500133384" datatype="html"> | 1337 | <trans-unit id="4116024528500133384" datatype="html"> |
1259 | <source>My settings</source> | 1338 | <source>My settings</source> |
1260 | <target state="new">My settings</target> | 1339 | <target state="translated">Saját beállítások</target> |
1261 | 1340 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">119</context></context-group> | |
1262 | 1341 | <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> | |
1263 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">119</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> | 1342 | </trans-unit> |
1264 | <trans-unit id="1420294365005204590" datatype="html"> | 1343 | <trans-unit id="1420294365005204590" datatype="html"> |
1265 | <source>These settings apply only to your session on this instance.</source> | 1344 | <source>These settings apply only to your session on this instance.</source> |
1266 | <target state="new">These settings apply only to your session on this instance.</target> | 1345 | <target state="translated">Ezek a beállítások csak erre a munkafolyamatra vonatkoznak, ezen a példányon.</target> |
1267 | <context-group purpose="location"> | 1346 | <context-group purpose="location"> |
1268 | <context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context> | 1347 | <context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context> |
1269 | <context context-type="linenumber">8</context> | 1348 | <context context-type="linenumber">8</context> |
@@ -1308,176 +1387,190 @@ The link will expire within 1 hour.</source> | |||
1308 | <trans-unit id="5464118521750361406" datatype="html"> | 1387 | <trans-unit id="5464118521750361406" datatype="html"> |
1309 | <source>Public profile</source> | 1388 | <source>Public profile</source> |
1310 | <target state="translated">Nyilvános profil</target> | 1389 | <target state="translated">Nyilvános profil</target> |
1311 | 1390 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">28</context></context-group> | |
1312 | <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> | 1391 | </trans-unit> |
1313 | <trans-unit id="7773271640656013365" datatype="html"> | 1392 | <trans-unit id="7773271640656013365" datatype="html"> |
1314 | <source>Interface:</source> | 1393 | <source>Interface:</source> |
1315 | <target state="translated">Felület:</target> | 1394 | <target state="translated">Felület:</target> |
1316 | 1395 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">35</context></context-group> | |
1317 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 1396 | </trans-unit> |
1318 | <trans-unit id="1674139713929545659" datatype="html"> | 1397 | <trans-unit id="1674139713929545659" datatype="html"> |
1319 | <source>Videos:</source> | 1398 | <source>Videos:</source> |
1320 | <target state="translated">Videók:</target> | 1399 | <target state="translated">Videók:</target> |
1321 | 1400 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group> | |
1322 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1401 | </trans-unit> |
1323 | <trans-unit id="9156407045661257130" datatype="html"> | 1402 | <trans-unit id="9156407045661257130" datatype="html"> |
1324 | <source>Sensitive:</source> | 1403 | <source>Sensitive:</source> |
1325 | <target state="translated">Érzékeny:</target> | 1404 | <target state="translated">Érzékeny:</target> |
1326 | 1405 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">52</context></context-group> | |
1327 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 1406 | </trans-unit> |
1328 | <trans-unit id="3430483831942247060" datatype="html"> | 1407 | <trans-unit id="3430483831942247060" datatype="html"> |
1329 | <source>Help share videos</source> | 1408 | <source>Help share videos</source> |
1330 | <target state="translated">Segítség videók megosztásában</target> | 1409 | <target state="translated">Segítség videók megosztásában</target> |
1331 | 1410 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">58</context></context-group> | |
1332 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 1411 | </trans-unit> |
1333 | <trans-unit id="7005745151564974365" datatype="html"> | 1412 | <trans-unit id="7005745151564974365" datatype="html"> |
1334 | <source>Keyboard shortcuts</source> | 1413 | <source>Keyboard shortcuts</source> |
1335 | <target state="translated">Gyorsbillentyűk</target> | 1414 | <target state="translated">Gyorsbillentyűk</target> |
1336 | 1415 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">67</context></context-group> | |
1337 | 1416 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">141</context></context-group> | |
1338 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">67</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> | 1417 | </trans-unit> |
1339 | <trans-unit id="6307374733149824815" datatype="html"> | 1418 | <trans-unit id="6307374733149824815" datatype="html"> |
1340 | <source>powered by PeerTube - CopyLeft 2015-2021</source> | 1419 | <source>powered by PeerTube - CopyLeft 2015-2021</source> |
1341 | <target state="new">powered by PeerTube - CopyLeft 2015-2021</target> | 1420 | <target state="translated">PeerTube motorral - CopyLeft 2015-2021</target> |
1342 | 1421 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group> | |
1343 | <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> | 1422 | </trans-unit> |
1344 | <trans-unit id="7911416166208830577" datatype="html"> | 1423 | <trans-unit id="7911416166208830577" datatype="html"> |
1345 | <source>Help</source> | 1424 | <source>Help</source> |
1346 | <target state="translated">Súgó</target> | 1425 | <target state="translated">Súgó</target> |
1347 | 1426 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">137</context></context-group> | |
1348 | <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> | 1427 | </trans-unit> |
1349 | <trans-unit id="8378304669563824772" datatype="html"> | 1428 | <trans-unit id="8378304669563824772" datatype="html"> |
1350 | <source>Get help using PeerTube</source> | 1429 | <source>Get help using PeerTube</source> |
1351 | <target state="translated">Segítségkérés a PeerTube használatához</target> | 1430 | <target state="translated">Segítségkérés a PeerTube használatához</target> |
1352 | 1431 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">137</context></context-group> | |
1353 | <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> | 1432 | </trans-unit> |
1354 | <trans-unit id="2497681082724639563" datatype="html"> | 1433 | <trans-unit id="2497681082724639563" datatype="html"> |
1355 | <source>powered by PeerTube</source> | 1434 | <source>powered by PeerTube</source> |
1356 | <target state="translated">a gépházban: PeerTube</target> | 1435 | <target state="translated">a gépházban: PeerTube</target> |
1357 | 1436 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">147</context></context-group> | |
1358 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">147</context></context-group></trans-unit> | 1437 | </trans-unit> |
1359 | <trans-unit id="7507948636555938109"> | 1438 | <trans-unit id="7507948636555938109"> |
1360 | <source>Log out</source> | 1439 | <source>Log out</source> |
1361 | <target>Kijelentkezés</target> | 1440 | <target>Kijelentkezés</target> |
1362 | 1441 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group> | |
1363 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> | 1442 | </trans-unit> |
1364 | <trans-unit id="8893390761160292681" datatype="html"> | 1443 | <trans-unit id="8893390761160292681" datatype="html"> |
1365 | <source>My account</source> | 1444 | <source>My account</source> |
1366 | <target state="new">My account</target> | 1445 | <target state="translated">Saját fiók</target> |
1367 | 1446 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">83</context></context-group> | |
1368 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 1447 | </trans-unit> |
1369 | <trans-unit id="6371572688505952303" datatype="html"> | 1448 | <trans-unit id="6371572688505952303" datatype="html"> |
1370 | <source>My library</source> | 1449 | <source>My library</source> |
1371 | <target state="new">My library</target> | 1450 | <target state="translated">Saját könyvtár</target> |
1372 | 1451 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group> | |
1373 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> | 1452 | </trans-unit> |
1374 | <trans-unit id="2308975396733519902"> | 1453 | <trans-unit id="2308975396733519902"> |
1375 | <source>Create an account</source> | 1454 | <source>Create an account</source> |
1376 | <target>Fiók létrehozása</target> | 1455 | <target>Fiók létrehozása</target> |
1377 | 1456 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">54</context></context-group> | |
1378 | 1457 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">100</context></context-group> | |
1379 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">100</context></context-group></trans-unit> | 1458 | </trans-unit> |
1380 | |||
1381 | <trans-unit id="3058024914967508975" datatype="html"> | 1459 | <trans-unit id="3058024914967508975" datatype="html"> |
1382 | <source>My videos</source> | 1460 | <source>My videos</source> |
1383 | <target state="translated">Saját videók</target> | 1461 | <target state="translated">Saját videók</target> |
1384 | 1462 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">76</context></context-group> | |
1385 | 1463 | <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> | |
1386 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">76</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">71</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> | 1464 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">71</context></context-group> |
1465 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">77</context></context-group> | ||
1466 | </trans-unit> | ||
1387 | <trans-unit id="3108704604266608109" datatype="html"> | 1467 | <trans-unit id="3108704604266608109" datatype="html"> |
1388 | <source>My video imports</source> | 1468 | <source>My video imports</source> |
1389 | <target state="new">My video imports</target> | 1469 | <target state="translated">Saját importált videók</target> |
1390 | 1470 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">89</context></context-group> | |
1391 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">89</context></context-group></trans-unit> | 1471 | </trans-unit> |
1392 | <trans-unit id="7545420287297803988" datatype="html"> | 1472 | <trans-unit id="7545420287297803988" datatype="html"> |
1393 | <source>My playlists</source> | 1473 | <source>My playlists</source> |
1394 | <target state="translated">Saját lejátszólisták</target> | 1474 | <target state="translated">Saját lejátszólisták</target> |
1395 | 1475 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">39</context></context-group> | |
1396 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">39</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> | 1476 | <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> |
1477 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">86</context></context-group> | ||
1478 | </trans-unit> | ||
1397 | <trans-unit id="949618577357088829" datatype="html"> | 1479 | <trans-unit id="949618577357088829" datatype="html"> |
1398 | <source>Create a new playlist</source> | 1480 | <source>Create a new playlist</source> |
1399 | <target state="new">Create a new playlist</target> | 1481 | <target state="translated">Új lejátszólista létrehozása</target> |
1400 | 1482 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">48</context></context-group> | |
1401 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 1483 | </trans-unit> |
1402 | <trans-unit id="2527931602940887636" datatype="html"> | 1484 | <trans-unit id="2527931602940887636" datatype="html"> |
1403 | <source>My subscriptions</source> | 1485 | <source>My subscriptions</source> |
1404 | <target state="translated">Feliratkozások</target> | 1486 | <target state="translated">Feliratkozások</target> |
1405 | 1487 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">98</context></context-group> | |
1406 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">98</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">4</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> | 1488 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">4</context></context-group> |
1489 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">92</context></context-group> | ||
1490 | </trans-unit> | ||
1407 | <trans-unit id="8936704404804793618"> | 1491 | <trans-unit id="8936704404804793618"> |
1408 | <source>Videos</source> | 1492 | <source>Videos</source> |
1409 | <target>Videók</target> | 1493 | <target>Videók</target> |
1410 | 1494 | <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> | |
1411 | <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/+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/+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> | 1495 | <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> |
1496 | <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> | ||
1497 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">76</context></context-group> | ||
1498 | </trans-unit> | ||
1412 | <trans-unit id="2689878465089314112" datatype="html"> | 1499 | <trans-unit id="2689878465089314112" datatype="html"> |
1413 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> | 1500 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> |
1414 | <target state="new">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | 1501 | <target state="translated">Felület: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> |
1415 | 1502 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group> | |
1416 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> | 1503 | </trans-unit> |
1417 | <trans-unit id="1823843876735462104"> | 1504 | <trans-unit id="1823843876735462104"> |
1418 | <source>Playlists</source> | 1505 | <source>Playlists</source> |
1419 | <target>Lejátszási listák</target> | 1506 | <target>Lejátszási listák</target> |
1420 | 1507 | <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> | |
1421 | <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/core/menu/menu.service.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> | 1508 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">85</context></context-group> |
1509 | </trans-unit> | ||
1422 | <trans-unit id="1812379335568847528"> | 1510 | <trans-unit id="1812379335568847528"> |
1423 | <source>Subscriptions</source> | 1511 | <source>Subscriptions</source> |
1424 | <target>Feliratkozások</target> | 1512 | <target>Feliratkozások</target> |
1425 | 1513 | <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> | |
1426 | <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><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">58</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> | 1514 | <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> |
1515 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">58</context></context-group> | ||
1516 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">91</context></context-group> | ||
1517 | </trans-unit> | ||
1427 | <trans-unit id="186236568870281953"> | 1518 | <trans-unit id="186236568870281953"> |
1428 | <source>History</source> | 1519 | <source>History</source> |
1429 | <target>Előzmények</target> | 1520 | <target>Előzmények</target> |
1430 | 1521 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">69</context></context-group> | |
1431 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">69</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> | 1522 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">97</context></context-group> |
1523 | </trans-unit> | ||
1432 | <trans-unit id="1504521795586863905" datatype="html"> | 1524 | <trans-unit id="1504521795586863905" datatype="html"> |
1433 | <source>VIDEOS</source> | 1525 | <source>VIDEOS</source> |
1434 | <target state="translated">VIDEÓK</target> | 1526 | <target state="translated">VIDEÓK</target> |
1435 | 1527 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">82</context></context-group> | |
1436 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">82</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">215</context></context-group><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></trans-unit> | 1528 | <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">215</context></context-group> |
1529 | <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> | ||
1530 | </trans-unit> | ||
1437 | <trans-unit id="667372110624203230" datatype="html"> | 1531 | <trans-unit id="667372110624203230" datatype="html"> |
1438 | <source>Import jobs concurrency</source> | 1532 | <source>Import jobs concurrency</source> |
1439 | <target state="new">Import jobs concurrency</target> | 1533 | <target state="translated">Importálási folyamat konkurencia</target> |
1440 | 1534 | <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">225</context></context-group> | |
1441 | <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">225</context></context-group></trans-unit> | 1535 | </trans-unit> |
1442 | <trans-unit id="2184839376696112704" datatype="html"> | 1536 | <trans-unit id="2184839376696112704" datatype="html"> |
1443 | <source>allows to import multiple videos in parallel. ⚠️ Requires a PeerTube restart.</source> | 1537 | <source>allows to import multiple videos in parallel. ⚠️ Requires a PeerTube restart.</source> |
1444 | <target state="new">allows to import multiple videos in parallel. ⚠️ Requires a PeerTube restart.</target> | 1538 | <target state="translated">lehetővé teszi egyszerre több videó importálását. ⚠️ A PeerTube újraindítása szükséges.</target> |
1445 | 1539 | <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> | |
1446 | <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> | 1540 | </trans-unit> |
1447 | <trans-unit id="780513172839038392" datatype="html"> | 1541 | <trans-unit id="780513172839038392" datatype="html"> |
1448 | <source>jobs in parallel</source> | 1542 | <source>jobs in parallel</source> |
1449 | <target state="new">jobs in parallel</target> | 1543 | <target state="translated">párhuzamos folyamatok</target> |
1450 | 1544 | <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">230</context></context-group> | |
1451 | 1545 | <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> | |
1452 | <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">230</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> | 1546 | </trans-unit> |
1453 | <trans-unit id="5997625369044180192" datatype="html"> | 1547 | <trans-unit id="5997625369044180192" datatype="html"> |
1454 | <source>Allow import with HTTP URL (e.g. YouTube)</source> | 1548 | <source>Allow import with HTTP URL (e.g. YouTube)</source> |
1455 | <target state="new">Allow import with HTTP URL (e.g. YouTube)</target> | 1549 | <target state="translated">Importálás engedélyezése HTTP URL-ről (pl. YouTube)</target> |
1456 | 1550 | <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">239</context></context-group> | |
1457 | <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">239</context></context-group></trans-unit> | 1551 | </trans-unit> |
1458 | <trans-unit id="7627544798203088407" datatype="html"> | 1552 | <trans-unit id="7627544798203088407" datatype="html"> |
1459 | <source>Discover</source> | 1553 | <source>Discover</source> |
1460 | <target state="translated">Felfedezés</target> | 1554 | <target state="translated">Felfedezés</target> |
1461 | 1555 | <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> | |
1462 | 1556 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">125</context></context-group> | |
1463 | <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> | 1557 | </trans-unit> |
1464 | |||
1465 | |||
1466 | <trans-unit id="7844706011418789951"> | 1558 | <trans-unit id="7844706011418789951"> |
1467 | <source>Administration</source> | 1559 | <source>Administration</source> |
1468 | <target>Adminisztráció</target> | 1560 | <target>Adminisztráció</target> |
1469 | 1561 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">93</context></context-group> | |
1470 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">93</context></context-group></trans-unit> | 1562 | </trans-unit> |
1471 | <trans-unit id="1726363342938046830"> | 1563 | <trans-unit id="1726363342938046830"> |
1472 | <source>About</source> | 1564 | <source>About</source> |
1473 | <target>Névjegy</target> | 1565 | <target>Névjegy</target> |
1474 | 1566 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">124</context></context-group> | |
1475 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">124</context></context-group></trans-unit> | 1567 | </trans-unit> |
1476 | <trans-unit id="7922989125096435449" datatype="html"> | 1568 | <trans-unit id="7922989125096435449" datatype="html"> |
1477 | <source>Contact</source> | 1569 | <source>Contact</source> |
1478 | <target state="translated">Partner</target> | 1570 | <target state="translated">Partner</target> |
1479 | 1571 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">36</context></context-group> | |
1480 | <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">136</context></context-group></trans-unit> | 1572 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">136</context></context-group> |
1573 | </trans-unit> | ||
1481 | <trans-unit id="403762424689874454"> | 1574 | <trans-unit id="403762424689874454"> |
1482 | <source>View your notifications</source> | 1575 | <source>View your notifications</source> |
1483 | <target>Értesítések megtekintése</target> | 1576 | <target>Értesítések megtekintése</target> |
@@ -1488,9 +1581,11 @@ The link will expire within 1 hour.</source> | |||
1488 | <trans-unit id="5851560788527570644"> | 1581 | <trans-unit id="5851560788527570644"> |
1489 | <source>Notifications</source> | 1582 | <source>Notifications</source> |
1490 | <target>Értesítések</target> | 1583 | <target>Értesítések</target> |
1491 | 1584 | <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> | |
1492 | 1585 | <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> | |
1493 | <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> | 1586 | <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> |
1587 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">22</context></context-group> | ||
1588 | </trans-unit> | ||
1494 | <trans-unit id="2333314224059826550" datatype="html"> | 1589 | <trans-unit id="2333314224059826550" datatype="html"> |
1495 | <source>Mark all as read</source> | 1590 | <source>Mark all as read</source> |
1496 | <target state="translated">Összes megjelölése olvasottként</target> | 1591 | <target state="translated">Összes megjelölése olvasottként</target> |
@@ -1507,23 +1602,35 @@ The link will expire within 1 hour.</source> | |||
1507 | <source>See all your notifications</source> | 1602 | <source>See all your notifications</source> |
1508 | <target>Összes értesítés megtekintése</target> | 1603 | <target>Összes értesítés megtekintése</target> |
1509 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">49</context></context-group> | 1604 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">49</context></context-group> |
1510 | </trans-unit><trans-unit id="5108072242786374364" datatype="html"> | 1605 | </trans-unit> |
1511 | <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> | 1606 | <trans-unit id="5108072242786374364" datatype="html"> |
1512 | 1607 | <source>Welcome to <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, dear user!</source> | |
1513 | <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"> | 1608 | <target state="translated">Üdvözli a <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, kedves felhasználónk!</target> |
1514 | <source>It's time to set up your account profile!</source><target state="new">It's time to set up your account profile!</target> | 1609 | <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> |
1515 | 1610 | </trans-unit> | |
1516 | <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"> | 1611 | <trans-unit id="8821712929823045567" datatype="html"> |
1517 | <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> | 1612 | <source>It's time to set up your account profile!</source> |
1518 | 1613 | <target state="translated">Érdemes most beállítania a fiókját!</target> | |
1519 | <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"> | 1614 | <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> |
1520 | <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> | 1615 | </trans-unit> |
1521 | 1616 | <trans-unit id="7239874680342223476" datatype="html"> | |
1522 | <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"> | 1617 | <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> |
1523 | <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> | 1618 | <target state="translated">Segítsen a moderátoroknak és a felhasználóknak <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>megismerni önt<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> ezáltal:</target> |
1524 | 1619 | <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> | |
1525 | <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"> | 1620 | </trans-unit> |
1526 | <source>Don't show me this anymore</source><target state="new">Don't show me this anymore</target> | 1621 | <trans-unit id="5856432243446401016" datatype="html"> |
1622 | <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> | ||
1623 | <target state="translated">Egy <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>profilkép<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> feltöltésével</target> | ||
1624 | <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> | ||
1625 | </trans-unit> | ||
1626 | <trans-unit id="3221645359464920754" datatype="html"> | ||
1627 | <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> | ||
1628 | <target state="translated">Egy <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>leírás<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> megadásával</target> | ||
1629 | <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> | ||
1630 | </trans-unit> | ||
1631 | <trans-unit id="2218100934178971211" datatype="html"> | ||
1632 | <source>Don't show me this anymore</source> | ||
1633 | <target state="translated">Ne jelenjen meg többet</target> | ||
1527 | <context-group purpose="location"> | 1634 | <context-group purpose="location"> |
1528 | <context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context> | 1635 | <context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context> |
1529 | <context context-type="linenumber">23</context> | 1636 | <context context-type="linenumber">23</context> |
@@ -1531,12 +1638,12 @@ The link will expire within 1 hour.</source> | |||
1531 | </trans-unit> | 1638 | </trans-unit> |
1532 | <trans-unit id="4424964105331349857" datatype="html"> | 1639 | <trans-unit id="4424964105331349857" datatype="html"> |
1533 | <source>I'm a teapot</source> | 1640 | <source>I'm a teapot</source> |
1534 | <target state="new">I'm a teapot</target> | 1641 | <target state="translated">Teáskanna vagyok</target> |
1535 | 1642 | <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> | |
1536 | <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> | 1643 | </trans-unit> |
1537 | <trans-unit id="1597262876035959248" datatype="html"> | 1644 | <trans-unit id="1597262876035959248" datatype="html"> |
1538 | <source>That's an error.</source> | 1645 | <source>That's an error.</source> |
1539 | <target state="new">That's an error.</target> | 1646 | <target state="translated">Az egy hiba.</target> |
1540 | <context-group purpose="location"> | 1647 | <context-group purpose="location"> |
1541 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1648 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1542 | <context context-type="linenumber">4</context> | 1649 | <context context-type="linenumber">4</context> |
@@ -1544,7 +1651,7 @@ The link will expire within 1 hour.</source> | |||
1544 | </trans-unit> | 1651 | </trans-unit> |
1545 | <trans-unit id="3343007694071351756" datatype="html"> | 1652 | <trans-unit id="3343007694071351756" datatype="html"> |
1546 | <source>We couldn't find any video tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</source> | 1653 | <source>We couldn't find any video tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</source> |
1547 | <target state="new">We couldn't find any video tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</target> | 1654 | <target state="translated">Nem található videó ehhez az URL-hez <x id="INTERPOLATION" equiv-text="{{ pathname }}"/>, amelyet felkeresett volna.</target> |
1548 | <context-group purpose="location"> | 1655 | <context-group purpose="location"> |
1549 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1656 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1550 | <context context-type="linenumber">7</context> | 1657 | <context context-type="linenumber">7</context> |
@@ -1552,7 +1659,7 @@ The link will expire within 1 hour.</source> | |||
1552 | </trans-unit> | 1659 | </trans-unit> |
1553 | <trans-unit id="7366678433039425999" datatype="html"> | 1660 | <trans-unit id="7366678433039425999" datatype="html"> |
1554 | <source>We couldn't find any resource tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</source> | 1661 | <source>We couldn't find any resource tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</source> |
1555 | <target state="new">We couldn't find any resource tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</target> | 1662 | <target state="translated">Nem található erőforrás ehhez az URL-hez <x id="INTERPOLATION" equiv-text="{{ pathname }}"/>, amelyet felkeresett volna.</target> |
1556 | <context-group purpose="location"> | 1663 | <context-group purpose="location"> |
1557 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1664 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1558 | <context context-type="linenumber">8</context> | 1665 | <context context-type="linenumber">8</context> |
@@ -1560,18 +1667,18 @@ The link will expire within 1 hour.</source> | |||
1560 | </trans-unit> | 1667 | </trans-unit> |
1561 | <trans-unit id="3522707340816553139" datatype="html"> | 1668 | <trans-unit id="3522707340816553139" datatype="html"> |
1562 | <source>Possible reasons:</source> | 1669 | <source>Possible reasons:</source> |
1563 | <target state="new">Possible reasons:</target> | 1670 | <target state="translated">Lehetséges okok:</target> |
1564 | <note priority="1" from="description">Possible reasons preceding a list of reasons a `Not Found` error page may occur</note> | 1671 | <note priority="1" from="description">Possible reasons preceding a list of reasons a `Not Found` error page may occur</note> |
1565 | <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> | 1672 | <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> |
1566 | </trans-unit> | 1673 | </trans-unit> |
1567 | <trans-unit id="6925335998927745197" datatype="html"> | 1674 | <trans-unit id="6925335998927745197" datatype="html"> |
1568 | <source>You may have used an outdated or broken link</source> | 1675 | <source>You may have used an outdated or broken link</source> |
1569 | <target state="new">You may have used an outdated or broken link</target> | 1676 | <target state="translated">Egy elavult vagy hibás hivatkozásra kattintott</target> |
1570 | <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> | 1677 | <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> |
1571 | </trans-unit> | 1678 | </trans-unit> |
1572 | <trans-unit id="1171455174603388942" datatype="html"> | 1679 | <trans-unit id="1171455174603388942" datatype="html"> |
1573 | <source>The video may have been moved or deleted</source> | 1680 | <source>The video may have been moved or deleted</source> |
1574 | <target state="new">The video may have been moved or deleted</target> | 1681 | <target state="translated">A videót áthelyezték vagy törölték</target> |
1575 | <context-group purpose="location"> | 1682 | <context-group purpose="location"> |
1576 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1683 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1577 | <context context-type="linenumber">17</context> | 1684 | <context context-type="linenumber">17</context> |
@@ -1579,7 +1686,7 @@ The link will expire within 1 hour.</source> | |||
1579 | </trans-unit> | 1686 | </trans-unit> |
1580 | <trans-unit id="2213348264902218064" datatype="html"> | 1687 | <trans-unit id="2213348264902218064" datatype="html"> |
1581 | <source>The resource may have been moved or deleted</source> | 1688 | <source>The resource may have been moved or deleted</source> |
1582 | <target state="new">The resource may have been moved or deleted</target> | 1689 | <target state="translated">Az erőforrást áthelyezték vagy törölték</target> |
1583 | <context-group purpose="location"> | 1690 | <context-group purpose="location"> |
1584 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1691 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1585 | <context context-type="linenumber">18</context> | 1692 | <context context-type="linenumber">18</context> |
@@ -1587,17 +1694,17 @@ The link will expire within 1 hour.</source> | |||
1587 | </trans-unit> | 1694 | </trans-unit> |
1588 | <trans-unit id="3209594685692897380" datatype="html"> | 1695 | <trans-unit id="3209594685692897380" datatype="html"> |
1589 | <source>You may have typed the address or URL incorrectly</source> | 1696 | <source>You may have typed the address or URL incorrectly</source> |
1590 | <target state="new">You may have typed the address or URL incorrectly</target> | 1697 | <target state="translated">Hibásan írta be a címet vagy URL-t</target> |
1591 | <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> | 1698 | <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> |
1592 | </trans-unit> | 1699 | </trans-unit> |
1593 | <trans-unit id="3290262698447971494" datatype="html"> | 1700 | <trans-unit id="3290262698447971494" datatype="html"> |
1594 | <source>You are not authorized here.</source> | 1701 | <source>You are not authorized here.</source> |
1595 | <target state="new">You are not authorized here.</target> | 1702 | <target state="translated">Nincs itt jogosultsága.</target> |
1596 | <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> | 1703 | <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> |
1597 | </trans-unit> | 1704 | </trans-unit> |
1598 | <trans-unit id="6209939621665316894" datatype="html"> | 1705 | <trans-unit id="6209939621665316894" datatype="html"> |
1599 | <source>You might need to check your account is allowed by the video or instance owner.</source> | 1706 | <source>You might need to check your account is allowed by the video or instance owner.</source> |
1600 | <target state="new">You might need to check your account is allowed by the video or instance owner.</target> | 1707 | <target state="translated">Esetleg ellenőrizze, hogy a videó vagy a példány tulajdonosa biztosít-e elérést a fiókjának.</target> |
1601 | <context-group purpose="location"> | 1708 | <context-group purpose="location"> |
1602 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1709 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1603 | <context context-type="linenumber">30</context> | 1710 | <context context-type="linenumber">30</context> |
@@ -1605,7 +1712,7 @@ The link will expire within 1 hour.</source> | |||
1605 | </trans-unit> | 1712 | </trans-unit> |
1606 | <trans-unit id="3543381263966122204" datatype="html"> | 1713 | <trans-unit id="3543381263966122204" datatype="html"> |
1607 | <source>You might need to check your account is allowed by the resource or instance owner.</source> | 1714 | <source>You might need to check your account is allowed by the resource or instance owner.</source> |
1608 | <target state="new">You might need to check your account is allowed by the resource or instance owner.</target> | 1715 | <target state="translated">Esetleg ellenőrizze, hogy az erőforrás vagy a példány tulajdonosa biztosít-e elérést a fiókjának.</target> |
1609 | <context-group purpose="location"> | 1716 | <context-group purpose="location"> |
1610 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1717 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1611 | <context context-type="linenumber">31</context> | 1718 | <context context-type="linenumber">31</context> |
@@ -1619,16 +1726,15 @@ The link will expire within 1 hour.</source> | |||
1619 | </trans-unit> | 1726 | </trans-unit> |
1620 | <trans-unit id="2933819425721221134" datatype="html"> | 1727 | <trans-unit id="2933819425721221134" datatype="html"> |
1621 | <source>Sepia seems to like it.</source> | 1728 | <source>Sepia seems to like it.</source> |
1622 | <target state="new">Sepia seems to like it.</target> | 1729 | <target state="translated">Úgy tűnik Sepia szereti.</target> |
1623 | <note priority="1" from="description">This is about Sepia's tea</note> | 1730 | <note priority="1" from="description">This is about Sepia's tea</note> |
1624 | <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> | 1731 | <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> |
1625 | </trans-unit> | 1732 | </trans-unit> |
1626 | <trans-unit id="2971365540217107489" datatype="html"> | 1733 | <trans-unit id="2971365540217107489" datatype="html"> |
1627 | <source>Media is too large for the server. Please contact you administrator if you want to increase the limit size.</source> | 1734 | <source>Media is too large for the server. Please contact you administrator if you want to increase the limit size.</source> |
1628 | <target state="translated">A média túl nagy ehhez a kiszolgálóhoz. Lépjen kapcsolatba a rendszergazdával, ha növelni szeretné a méretkorlátot.</target> | 1735 | <target state="translated">A média túl nagy ehhez a kiszolgálóhoz. Lépjen kapcsolatba a rendszergazdával, ha növelni szeretné a méretkorlátot.</target> |
1629 | 1736 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">65</context></context-group> | |
1630 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">65</context></context-group></trans-unit> | 1737 | </trans-unit> |
1631 | |||
1632 | <trans-unit id="5131854469652959713" datatype="html"> | 1738 | <trans-unit id="5131854469652959713" datatype="html"> |
1633 | <source>GLOBAL SEARCH</source> | 1739 | <source>GLOBAL SEARCH</source> |
1634 | <target state="translated">GLOBÁLIS KERESÉS</target> | 1740 | <target state="translated">GLOBÁLIS KERESÉS</target> |
@@ -1646,7 +1752,7 @@ The link will expire within 1 hour.</source> | |||
1646 | </trans-unit> | 1752 | </trans-unit> |
1647 | <trans-unit id="2807610143550376912" datatype="html"> | 1753 | <trans-unit id="2807610143550376912" datatype="html"> |
1648 | <source>Your query will be matched against video names or descriptions, channel names.</source> | 1754 | <source>Your query will be matched against video names or descriptions, channel names.</source> |
1649 | <target state="new">Your query will be matched against video names or descriptions, channel names.</target> | 1755 | <target state="translated">A keresés videók nevére, leírásra és csatornák nevére működik.</target> |
1650 | <context-group purpose="location"> | 1756 | <context-group purpose="location"> |
1651 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> | 1757 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> |
1652 | <context context-type="linenumber">37</context> | 1758 | <context context-type="linenumber">37</context> |
@@ -1706,122 +1812,143 @@ The link will expire within 1 hour.</source> | |||
1706 | <trans-unit id="5478121364779850827" datatype="html"> | 1812 | <trans-unit id="5478121364779850827" datatype="html"> |
1707 | <source>Reset</source> | 1813 | <source>Reset</source> |
1708 | <target state="translated">Visszaállítás</target> | 1814 | <target state="translated">Visszaállítás</target> |
1709 | 1815 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">9</context></context-group> | |
1710 | 1816 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">23</context></context-group> | |
1711 | 1817 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">42</context></context-group> | |
1712 | 1818 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">61</context></context-group> | |
1713 | 1819 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">75</context></context-group> | |
1714 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">9</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">61</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">75</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">110</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">123</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">136</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">149</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">164</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">172</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></trans-unit><trans-unit id="4540121094340493564" datatype="html"> | 1820 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">110</context></context-group> |
1715 | <source>Display only</source><target state="new">Display only</target> | 1821 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">123</context></context-group> |
1822 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">136</context></context-group> | ||
1823 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">149</context></context-group> | ||
1824 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">164</context></context-group> | ||
1825 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">172</context></context-group> | ||
1826 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">205</context></context-group> | ||
1827 | </trans-unit> | ||
1828 | <trans-unit id="4540121094340493564" datatype="html"> | ||
1829 | <source>Display only</source> | ||
1830 | <target state="translated">Csak ezek megjelenítése</target> | ||
1716 | <context-group purpose="location"> | 1831 | <context-group purpose="location"> |
1717 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> | 1832 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> |
1718 | <context context-type="linenumber">21</context> | 1833 | <context context-type="linenumber">21</context> |
1719 | </context-group> | 1834 | </context-group> |
1720 | </trans-unit><trans-unit id="2180217594100853008" datatype="html"> | 1835 | </trans-unit> |
1721 | <source>Live videos</source><target state="new">Live videos</target> | 1836 | <trans-unit id="2180217594100853008" datatype="html"> |
1722 | 1837 | <source>Live videos</source> | |
1723 | <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/+search/search-filters.component.ts</context><context context-type="linenumber">64</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">158</context></context-group></trans-unit><trans-unit id="2392481201920342009" datatype="html"> | 1838 | <target state="new">Live videos</target> |
1724 | <source>VOD videos</source><target state="new">VOD videos</target> | 1839 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">29</context></context-group> |
1725 | 1840 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">64</context></context-group> | |
1726 | <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/+search/search-filters.component.ts</context><context context-type="linenumber">60</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">164</context></context-group></trans-unit> | 1841 | <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> |
1842 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">158</context></context-group> | ||
1843 | </trans-unit> | ||
1844 | <trans-unit id="2392481201920342009" datatype="html"> | ||
1845 | <source>VOD videos</source> | ||
1846 | <target state="new">VOD videos</target> | ||
1847 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">34</context></context-group> | ||
1848 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">60</context></context-group> | ||
1849 | <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> | ||
1850 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">164</context></context-group> | ||
1851 | </trans-unit> | ||
1727 | <trans-unit id="7970752988844762769"> | 1852 | <trans-unit id="7970752988844762769"> |
1728 | <source>Published date</source> | 1853 | <source>Published date</source> |
1729 | <target>Közzététel dátuma</target> | 1854 | <target>Közzététel dátuma</target> |
1730 | 1855 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">59</context></context-group> | |
1731 | <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> | 1856 | </trans-unit> |
1732 | <trans-unit id="5038188980760269298" datatype="html"> | 1857 | <trans-unit id="5038188980760269298" datatype="html"> |
1733 | <source>Original publication year</source> | 1858 | <source>Original publication year</source> |
1734 | <target state="translated">Eredeti közzétételi év</target> | 1859 | <target state="translated">Eredeti közzétételi év</target> |
1735 | 1860 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">73</context></context-group> | |
1736 | <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> | 1861 | </trans-unit> |
1737 | <trans-unit id="2316758236788716819" datatype="html"> | 1862 | <trans-unit id="2316758236788716819" datatype="html"> |
1738 | <source>After...</source> | 1863 | <source>After...</source> |
1739 | <target state="translated">Után…</target> | 1864 | <target state="translated">Után…</target> |
1740 | 1865 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">85</context></context-group> | |
1741 | <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> | 1866 | </trans-unit> |
1742 | <trans-unit id="5418443214217152433" datatype="html"> | 1867 | <trans-unit id="5418443214217152433" datatype="html"> |
1743 | <source>Before...</source> | 1868 | <source>Before...</source> |
1744 | <target state="translated">Előtt…</target> | 1869 | <target state="translated">Előtt…</target> |
1745 | 1870 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">95</context></context-group> | |
1746 | <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> | 1871 | </trans-unit> |
1747 | <trans-unit id="7410432243549869948"> | 1872 | <trans-unit id="7410432243549869948"> |
1748 | <source>Duration</source> | 1873 | <source>Duration</source> |
1749 | <target>Időtartam</target> | 1874 | <target>Időtartam</target> |
1750 | 1875 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">108</context></context-group> | |
1751 | 1876 | <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> | |
1752 | <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> | 1877 | </trans-unit> |
1753 | <trans-unit id="3589238979642505685"> | 1878 | <trans-unit id="3589238979642505685"> |
1754 | <source>Display sensitive content</source> | 1879 | <source>Display sensitive content</source> |
1755 | <target>Érzékeny tartalom megjelenítése</target> | 1880 | <target>Érzékeny tartalom megjelenítése</target> |
1756 | 1881 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">40</context></context-group> | |
1757 | <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> | 1882 | </trans-unit> |
1758 | <trans-unit id="2807800733729323332"> | 1883 | <trans-unit id="2807800733729323332"> |
1759 | <source>Yes</source> | 1884 | <source>Yes</source> |
1760 | <target>Igen</target> | 1885 | <target>Igen</target> |
1761 | 1886 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">48</context></context-group> | |
1762 | <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> | 1887 | </trans-unit> |
1763 | <trans-unit id="3542042671420335679"> | 1888 | <trans-unit id="3542042671420335679"> |
1764 | <source>No</source> | 1889 | <source>No</source> |
1765 | <target>Nem</target> | 1890 | <target>Nem</target> |
1766 | 1891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">53</context></context-group> | |
1767 | <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> | 1892 | </trans-unit> |
1768 | <trans-unit id="1806667489382256324"> | 1893 | <trans-unit id="1806667489382256324"> |
1769 | <source>Category</source> | 1894 | <source>Category</source> |
1770 | <target>Kategória</target> | 1895 | <target>Kategória</target> |
1771 | 1896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">121</context></context-group> | |
1772 | 1897 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">63</context></context-group> | |
1773 | 1898 | <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> | |
1774 | <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">63</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> | 1899 | </trans-unit> |
1775 | <trans-unit id="5478121364779850827" datatype="html"> | 1900 | <trans-unit id="5478121364779850827" datatype="html"> |
1776 | <source>Reset</source> | 1901 | <source>Reset</source> |
1777 | <target state="translated">Visszaállítás</target> | 1902 | <target state="translated">Visszaállítás</target> |
1778 | 1903 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">123</context></context-group> | |
1779 | 1904 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">136</context></context-group> | |
1780 | 1905 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">149</context></context-group> | |
1781 | 1906 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">164</context></context-group> | |
1782 | 1907 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">172</context></context-group> | |
1783 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">123</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">136</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">149</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">164</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">172</context></context-group></trans-unit> | 1908 | </trans-unit> |
1784 | <trans-unit id="2199290266269383925" datatype="html"> | 1909 | <trans-unit id="2199290266269383925" datatype="html"> |
1785 | <source>Display all categories</source> | 1910 | <source>Display all categories</source> |
1786 | <target state="translated">Összes kategória megjelenítése</target> | 1911 | <target state="translated">Összes kategória megjelenítése</target> |
1787 | 1912 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">127</context></context-group> | |
1788 | <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> | 1913 | </trans-unit> |
1789 | <trans-unit id="9065795501872450602"> | 1914 | <trans-unit id="9065795501872450602"> |
1790 | <source>Licence</source> | 1915 | <source>Licence</source> |
1791 | <target>Licenc</target> | 1916 | <target>Licenc</target> |
1792 | 1917 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">134</context></context-group> | |
1793 | 1918 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">74</context></context-group> | |
1794 | 1919 | <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> | |
1795 | <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">74</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> | 1920 | </trans-unit> |
1796 | <trans-unit id="4184995865179898060" datatype="html"> | 1921 | <trans-unit id="4184995865179898060" datatype="html"> |
1797 | <source>Display all licenses</source> | 1922 | <source>Display all licenses</source> |
1798 | <target state="translated">Összes licenc megjelenítése</target> | 1923 | <target state="translated">Összes licenc megjelenítése</target> |
1799 | 1924 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">140</context></context-group> | |
1800 | <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> | 1925 | </trans-unit> |
1801 | <trans-unit id="2826581353496868063"> | 1926 | <trans-unit id="2826581353496868063"> |
1802 | <source>Language</source> | 1927 | <source>Language</source> |
1803 | <target>Nyelv</target> | 1928 | <target>Nyelv</target> |
1804 | 1929 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">147</context></context-group> | |
1805 | 1930 | <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> | |
1806 | 1931 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">94</context></context-group> | |
1807 | 1932 | <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> | |
1808 | <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">94</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> | 1933 | </trans-unit> |
1809 | <trans-unit id="7904142744051432458" datatype="html"> | 1934 | <trans-unit id="7904142744051432458" datatype="html"> |
1810 | <source>Display all languages</source> | 1935 | <source>Display all languages</source> |
1811 | <target state="translated">Összes nyelv megjelenítése</target> | 1936 | <target state="translated">Összes nyelv megjelenítése</target> |
1812 | 1937 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">153</context></context-group> | |
1813 | <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> | 1938 | </trans-unit> |
1814 | <trans-unit id="2252476112877289102"> | 1939 | <trans-unit id="2252476112877289102"> |
1815 | <source>All of these tags</source> | 1940 | <source>All of these tags</source> |
1816 | <target>Ezen címkék mindegyike</target> | 1941 | <target>Ezen címkék mindegyike</target> |
1817 | 1942 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">162</context></context-group> | |
1818 | <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> | 1943 | </trans-unit> |
1819 | <trans-unit id="4413784616961145955"> | 1944 | <trans-unit id="4413784616961145955"> |
1820 | <source>One of these tags</source> | 1945 | <source>One of these tags</source> |
1821 | <target>Ezen címkék egyike</target> | 1946 | <target>Ezen címkék egyike</target> |
1822 | 1947 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">170</context></context-group> | |
1823 | <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"> | 1948 | </trans-unit> |
1824 | <source>PeerTube instance host</source><target state="new">PeerTube instance host</target> | 1949 | <trans-unit id="5143793904897598509" datatype="html"> |
1950 | <source>PeerTube instance host</source> | ||
1951 | <target state="translated">PeerTube példány kiszolgáló</target> | ||
1825 | <context-group purpose="location"> | 1952 | <context-group purpose="location"> |
1826 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> | 1953 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> |
1827 | <context context-type="linenumber">178</context> | 1954 | <context context-type="linenumber">178</context> |
@@ -1830,23 +1957,23 @@ The link will expire within 1 hour.</source> | |||
1830 | <trans-unit id="283421392567624698" datatype="html"> | 1957 | <trans-unit id="283421392567624698" datatype="html"> |
1831 | <source>Search target</source> | 1958 | <source>Search target</source> |
1832 | <target state="translated">Keresési cél</target> | 1959 | <target state="translated">Keresési cél</target> |
1833 | 1960 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">187</context></context-group> | |
1834 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">187</context></context-group></trans-unit> | 1961 | </trans-unit> |
1835 | <trans-unit id="2489767671380266270" datatype="html"> | 1962 | <trans-unit id="2489767671380266270" datatype="html"> |
1836 | <source>Vidiverse</source> | 1963 | <source>Vidiverse</source> |
1837 | <target state="translated">Vidiverzum</target> | 1964 | <target state="translated">Vidiverzum</target> |
1838 | 1965 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">197</context></context-group> | |
1839 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">197</context></context-group></trans-unit> | 1966 | </trans-unit> |
1840 | <trans-unit id="5478121364779850827" datatype="html"> | 1967 | <trans-unit id="5478121364779850827" datatype="html"> |
1841 | <source>Reset</source> | 1968 | <source>Reset</source> |
1842 | <target state="translated">Visszaállítás</target> | 1969 | <target state="translated">Visszaállítás</target> |
1843 | 1970 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">197</context></context-group> | |
1844 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">197</context></context-group></trans-unit> | 1971 | </trans-unit> |
1845 | <trans-unit id="8829497237648100098"> | 1972 | <trans-unit id="8829497237648100098"> |
1846 | <source>Filter</source> | 1973 | <source>Filter</source> |
1847 | <target>Szűrő</target> | 1974 | <target>Szűrő</target> |
1848 | 1975 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">208</context></context-group> | |
1849 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">208</context></context-group></trans-unit> | 1976 | </trans-unit> |
1850 | <trans-unit id="6479885129995567639" datatype="html"> | 1977 | <trans-unit id="6479885129995567639" datatype="html"> |
1851 | <source>Video channels</source> | 1978 | <source>Video channels</source> |
1852 | <target state="translated">Videócsatornák</target> | 1979 | <target state="translated">Videócsatornák</target> |
@@ -1880,9 +2007,9 @@ The link will expire within 1 hour.</source> | |||
1880 | <trans-unit id="7886570921510760899"> | 2007 | <trans-unit id="7886570921510760899"> |
1881 | <source>Tags</source> | 2008 | <source>Tags</source> |
1882 | <target>Címkék</target> | 2009 | <target>Címkék</target> |
1883 | 2010 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">19</context></context-group> | |
1884 | 2011 | <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> | |
1885 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">19</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> | 2012 | </trans-unit> |
1886 | <trans-unit id="354332809647287722" datatype="html"> | 2013 | <trans-unit id="354332809647287722" datatype="html"> |
1887 | <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> | 2014 | <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> |
1888 | <target state="translated">A címkék releváns ajánlások javaslatához használhatók. <x id="LINE_BREAK"/> Legfeljebb 5 címke lehet. <x id="LINE_BREAK"/> Kattintson az <x id="START_TAG_KBD"/>Enterre<x id="CLOSE_TAG_KBD"/> egy új címke hozzáadásához. </target> | 2015 | <target state="translated">A címkék releváns ajánlások javaslatához használhatók. <x id="LINE_BREAK"/> Legfeljebb 5 címke lehet. <x id="LINE_BREAK"/> Kattintson az <x id="START_TAG_KBD"/>Enterre<x id="CLOSE_TAG_KBD"/> egy új címke hozzáadásához. </target> |
@@ -1895,76 +2022,89 @@ The link will expire within 1 hour.</source> | |||
1895 | </trans-unit> | 2022 | </trans-unit> |
1896 | <trans-unit id="6179532215548637839" datatype="html"> | 2023 | <trans-unit id="6179532215548637839" datatype="html"> |
1897 | <source>extensions</source> | 2024 | <source>extensions</source> |
1898 | <target state="new">extensions</target> | 2025 | <target state="translated">kiterjesztések</target> |
1899 | 2026 | <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> | |
1900 | <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> | 2027 | </trans-unit> |
1901 | <trans-unit id="8054921481196967348" datatype="html"> | 2028 | <trans-unit id="8054921481196967348" datatype="html"> |
1902 | <source>This image is too large.</source> | 2029 | <source>This image is too large.</source> |
1903 | <target state="new">This image is too large.</target> | 2030 | <target state="translated">Ez a kép túl nagy.</target> |
1904 | 2031 | <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> | |
1905 | 2032 | <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> | |
1906 | <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> | 2033 | </trans-unit> |
1907 | <trans-unit id="6259523075362402245" datatype="html"> | 2034 | <trans-unit id="6259523075362402245" datatype="html"> |
1908 | <source>Upload a new banner</source> | 2035 | <source>Upload a new banner</source> |
1909 | <target state="new">Upload a new banner</target> | 2036 | <target state="translated">Új borítókép feltöltése</target> |
1910 | <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> | 2037 | <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> |
1911 | <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> | 2038 | <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> |
1912 | </trans-unit> | 2039 | </trans-unit> |
1913 | <trans-unit id="1117672957968812680" datatype="html"> | 2040 | <trans-unit id="1117672957968812680" datatype="html"> |
1914 | <source>Change your banner</source> | 2041 | <source>Change your banner</source> |
1915 | <target state="new">Change your banner</target> | 2042 | <target state="translated">Borítókép megváltoztatása</target> |
1916 | <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> | 2043 | <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> |
1917 | </trans-unit> | 2044 | </trans-unit> |
1918 | <trans-unit id="3394080812181176794" datatype="html"> | 2045 | <trans-unit id="3394080812181176794" datatype="html"> |
1919 | <source>Remove banner</source> | 2046 | <source>Remove banner</source> |
1920 | <target state="new">Remove banner</target> | 2047 | <target state="translated">Borítókép törlése</target> |
1921 | <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> | 2048 | <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> |
1922 | </trans-unit><trans-unit id="7306351600905511107" datatype="html"> | 2049 | </trans-unit> |
1923 | <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> | 2050 | <trans-unit id="7306351600905511107" datatype="html"> |
1924 | 2051 | <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> | |
1925 | <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> | 2052 | <target state="translated">arány 6:1, javasolt méret: 1920x317, max. méret: <x id="PH" equiv-text="getBytes(this.maxBannerSize)"/>, kiterjesztések: <x id="PH_1" equiv-text="this.bannerExtensions"/></target> |
1926 | 2053 | <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> | |
2054 | </trans-unit> | ||
1927 | <trans-unit id="3220184757632006830" datatype="html"> | 2055 | <trans-unit id="3220184757632006830" datatype="html"> |
1928 | <source>Account avatar</source> | 2056 | <source>Account avatar</source> |
1929 | <target state="new">Account avatar</target> | 2057 | <target state="translated">Fiók profilkép</target> |
1930 | 2058 | <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> | |
1931 | <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> | 2059 | </trans-unit> |
1932 | <trans-unit id="1138964882426023395" datatype="html"> | 2060 | <trans-unit id="1138964882426023395" datatype="html"> |
1933 | <source>Channel avatar</source> | 2061 | <source>Channel avatar</source> |
1934 | <target state="new">Channel avatar</target> | 2062 | <target state="translated">Csatorna profilkép</target> |
1935 | 2063 | <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> | |
1936 | <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"> | 2064 | </trans-unit> |
1937 | <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> | 2065 | <trans-unit id="1358902062258458923" datatype="html"> |
2066 | <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> | ||
2067 | <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 formázás támogatott<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> továbbá <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>egyedi PeerTube HTML címkék<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> | ||
1938 | <context-group purpose="location"> | 2068 | <context-group purpose="location"> |
1939 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/custom-markup-help.component.html</context> | 2069 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/custom-markup-help.component.html</context> |
1940 | <context context-type="linenumber">2</context> | 2070 | <context context-type="linenumber">2</context> |
1941 | </context-group> | 2071 | </context-group> |
1942 | </trans-unit><trans-unit id="7976591803735140601" datatype="html"> | 2072 | </trans-unit> |
1943 | <source>Latest published video</source><target state="new">Latest published video</target> | 2073 | <trans-unit id="7976591803735140601" datatype="html"> |
2074 | <source>Latest published video</source> | ||
2075 | <target state="translated">Legutóbb közzétett videó</target> | ||
1944 | <context-group purpose="location"> | 2076 | <context-group purpose="location"> |
1945 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context> | 2077 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context> |
1946 | <context context-type="linenumber">24</context> | 2078 | <context context-type="linenumber">24</context> |
1947 | </context-group> | 2079 | </context-group> |
1948 | </trans-unit><trans-unit id="283609029522452529" datatype="html"> | 2080 | </trans-unit> |
1949 | <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> | 2081 | <trans-unit id="283609029522452529" datatype="html"> |
2082 | <source>Error in channel miniature component: <x id="PH" equiv-text="err.message"/></source> | ||
2083 | <target state="translated">Hiba a csatorna miniatűr komponensénél: <x id="PH" equiv-text="err.message"/></target> | ||
1950 | <context-group purpose="location"> | 2084 | <context-group purpose="location"> |
1951 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts</context> | 2085 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts</context> |
1952 | <context context-type="linenumber">57</context> | 2086 | <context context-type="linenumber">57</context> |
1953 | </context-group> | 2087 | </context-group> |
1954 | </trans-unit><trans-unit id="3059355667050002541" datatype="html"> | 2088 | </trans-unit> |
1955 | <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> | 2089 | <trans-unit id="3059355667050002541" datatype="html"> |
2090 | <source>Error in playlist miniature component: <x id="PH" equiv-text="err.message"/></source> | ||
2091 | <target state="translated">Hiba a lejátszólista miniatűr komponensénél: <x id="PH" equiv-text="err.message"/></target> | ||
1956 | <context-group purpose="location"> | 2092 | <context-group purpose="location"> |
1957 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/playlist-miniature-markup.component.ts</context> | 2093 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/playlist-miniature-markup.component.ts</context> |
1958 | <context context-type="linenumber">47</context> | 2094 | <context context-type="linenumber">47</context> |
1959 | </context-group> | 2095 | </context-group> |
1960 | </trans-unit><trans-unit id="863691161959989717" datatype="html"> | 2096 | </trans-unit> |
1961 | <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> | 2097 | <trans-unit id="863691161959989717" datatype="html"> |
2098 | <source>Error in video miniature component: <x id="PH" equiv-text="err.message"/></source> | ||
2099 | <target state="translated">Hiba a videó miniatűr komponensénél: <x id="PH" equiv-text="err.message"/></target> | ||
1962 | <context-group purpose="location"> | 2100 | <context-group purpose="location"> |
1963 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts</context> | 2101 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts</context> |
1964 | <context context-type="linenumber">59</context> | 2102 | <context context-type="linenumber">59</context> |
1965 | </context-group> | 2103 | </context-group> |
1966 | </trans-unit><trans-unit id="1247256698916587400" datatype="html"> | 2104 | </trans-unit> |
1967 | <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> | 2105 | <trans-unit id="1247256698916587400" datatype="html"> |
2106 | <source>Error in videos list component: <x id="PH" equiv-text="err.message"/></source> | ||
2107 | <target state="translated">Hiba a videó lista komponensénél: <x id="PH" equiv-text="err.message"/></target> | ||
1968 | <context-group purpose="location"> | 2108 | <context-group purpose="location"> |
1969 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.ts</context> | 2109 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.ts</context> |
1970 | <context context-type="linenumber">77</context> | 2110 | <context context-type="linenumber">77</context> |
@@ -1972,7 +2112,7 @@ The link will expire within 1 hour.</source> | |||
1972 | </trans-unit> | 2112 | </trans-unit> |
1973 | <trans-unit id="1460134385691851101" datatype="html"> | 2113 | <trans-unit id="1460134385691851101" datatype="html"> |
1974 | <source>Advanced filters</source> | 2114 | <source>Advanced filters</source> |
1975 | <target state="new">Advanced filters</target> | 2115 | <target state="translated">Összetett szűrők</target> |
1976 | <context-group purpose="location"> | 2116 | <context-group purpose="location"> |
1977 | <context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.component.html</context> | 2117 | <context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.component.html</context> |
1978 | <context context-type="linenumber">8</context> | 2118 | <context context-type="linenumber">8</context> |
@@ -1999,59 +2139,60 @@ The link will expire within 1 hour.</source> | |||
1999 | <source>Video descriptions are truncated by default and require manual action to expand them.</source> | 2139 | <source>Video descriptions are truncated by default and require manual action to expand them.</source> |
2000 | <target state="translated">A videók leírásai alapértelmezetten meg lesznek vágva, és kézi művelet szükséges a kinyitásukhoz.</target> | 2140 | <target state="translated">A videók leírásai alapértelmezetten meg lesznek vágva, és kézi művelet szükséges a kinyitásukhoz.</target> |
2001 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">43</context></context-group> | 2141 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">43</context></context-group> |
2002 | </trans-unit><trans-unit id="2090254132451149776" datatype="html"> | 2142 | </trans-unit> |
2003 | <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> | 2143 | <trans-unit id="2090254132451149776" datatype="html"> |
2144 | <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> | ||
2145 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a href="https://chooser-beta.creativecommons.org/" target="_blank" rel="noopener noreferrer">"/>Válasszon<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> egy megfelelő licencet a munkájához. </target> | ||
2004 | <context-group purpose="location"> | 2146 | <context-group purpose="location"> |
2005 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> | 2147 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> |
2006 | <context context-type="linenumber">79,80</context> | 2148 | <context context-type="linenumber">79,80</context> |
2007 | </context-group> | 2149 | </context-group> |
2008 | </trans-unit> | 2150 | </trans-unit> |
2009 | |||
2010 | <trans-unit id="5462361983940693567"> | 2151 | <trans-unit id="5462361983940693567"> |
2011 | <source>Channel</source> | 2152 | <source>Channel</source> |
2012 | <target>Csatorna</target> | 2153 | <target>Csatorna</target> |
2013 | 2154 | <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> | |
2014 | 2155 | <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> | |
2015 | 2156 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">34</context></context-group> | |
2016 | 2157 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">58</context></context-group> | |
2017 | 2158 | <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> | |
2018 | 2159 | <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> | |
2019 | 2160 | <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> | |
2020 | 2161 | <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> | |
2021 | 2162 | </trans-unit> | |
2022 | <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">34</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">58</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> | ||
2023 | <trans-unit id="8440128775129354214"> | 2163 | <trans-unit id="8440128775129354214"> |
2024 | <source>Privacy</source> | 2164 | <source>Privacy</source> |
2025 | <target>Adatvédelem</target> | 2165 | <target>Adatvédelem</target> |
2026 | 2166 | <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> | |
2027 | 2167 | <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> | |
2028 | 2168 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">106</context></context-group> | |
2029 | 2169 | <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> | |
2030 | 2170 | <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> | |
2031 | 2171 | <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> | |
2032 | 2172 | <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> | |
2033 | 2173 | <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> | |
2034 | <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">106</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> | 2174 | <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> |
2175 | </trans-unit> | ||
2035 | <trans-unit id="2806917038528218276" datatype="html"> | 2176 | <trans-unit id="2806917038528218276" datatype="html"> |
2036 | <source>FAQ</source> | 2177 | <source>FAQ</source> |
2037 | <target state="translated">GYIK</target> | 2178 | <target state="translated">GYIK</target> |
2038 | 2179 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">138</context></context-group> | |
2039 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">138</context></context-group></trans-unit> | 2180 | </trans-unit> |
2040 | <trans-unit id="3620232640697554352" datatype="html"> | 2181 | <trans-unit id="3620232640697554352" datatype="html"> |
2041 | <source>Frequently asked questions about PeerTube</source> | 2182 | <source>Frequently asked questions about PeerTube</source> |
2042 | <target state="translated">Gyakori kérdések a PeerTube szoftverrel kapcsolatban</target> | 2183 | <target state="translated">Gyakori kérdések a PeerTube szoftverrel kapcsolatban</target> |
2043 | 2184 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">138</context></context-group> | |
2044 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">138</context></context-group></trans-unit> | 2185 | </trans-unit> |
2045 | <trans-unit id="8942351587754185907" datatype="html"> | 2186 | <trans-unit id="8942351587754185907" datatype="html"> |
2046 | <source>API</source> | 2187 | <source>API</source> |
2047 | <target state="translated">API</target> | 2188 | <target state="translated">API</target> |
2048 | 2189 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group> | |
2049 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 2190 | </trans-unit> |
2050 | <trans-unit id="3722967224215437913" datatype="html"> | 2191 | <trans-unit id="3722967224215437913" datatype="html"> |
2051 | <source>API documentation</source> | 2192 | <source>API documentation</source> |
2052 | <target state="translated">API dokumentáció</target> | 2193 | <target state="translated">API dokumentáció</target> |
2053 | 2194 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group> | |
2054 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 2195 | </trans-unit> |
2055 | <trans-unit id="9012879216268259096"> | 2196 | <trans-unit id="9012879216268259096"> |
2056 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 2197 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
2057 | <target>Közzététel ütemezése ( <x id="INTERPOLATION"/>)</target> | 2198 | <target>Közzététel ütemezése ( <x id="INTERPOLATION"/>)</target> |
@@ -2064,7 +2205,7 @@ The link will expire within 1 hour.</source> | |||
2064 | </trans-unit> | 2205 | </trans-unit> |
2065 | <trans-unit id="4850841867094321899" datatype="html"> | 2206 | <trans-unit id="4850841867094321899" datatype="html"> |
2066 | <source>Some instances hide videos containing mature or explicit content by default.</source> | 2207 | <source>Some instances hide videos containing mature or explicit content by default.</source> |
2067 | <target state="new">Some instances hide videos containing mature or explicit content by default.</target> | 2208 | <target state="translated">Bizonyos példányok alapértelmezetten elrejtik a felnőtt vagy szókimondó tartalmakat.</target> |
2068 | <context-group purpose="location"> | 2209 | <context-group purpose="location"> |
2069 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> | 2210 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> |
2070 | <context context-type="linenumber">135</context> | 2211 | <context context-type="linenumber">135</context> |
@@ -2132,12 +2273,12 @@ The link will expire within 1 hour.</source> | |||
2132 | </trans-unit> | 2273 | </trans-unit> |
2133 | <trans-unit id="6297019164970912850" datatype="html"> | 2274 | <trans-unit id="6297019164970912850" datatype="html"> |
2134 | <source>You can stream multiple times in a permanent live. The URL for your viewers won't change but you cannot save replays of your lives</source> | 2275 | <source>You can stream multiple times in a permanent live. The URL for your viewers won't change but you cannot save replays of your lives</source> |
2135 | <target state="new">You can stream multiple times in a permanent live. The URL for your viewers won't change but you cannot save replays of your lives</target> | 2276 | <target state="translated">A permanens élő közvetítésben többször is közvetíthet. Így az URL nem változik a nézőknek, viszont nem menthet le visszajátszásokat</target> |
2136 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">236</context></context-group> | 2277 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">236</context></context-group> |
2137 | </trans-unit> | 2278 | </trans-unit> |
2138 | <trans-unit id="3272292170221289235" datatype="html"> | 2279 | <trans-unit id="3272292170221289235" datatype="html"> |
2139 | <source>This is a permanent live</source> | 2280 | <source>This is a permanent live</source> |
2140 | <target state="new">This is a permanent live</target> | 2281 | <target state="translated">Ez egy permanens élő közvetítés</target> |
2141 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">232</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">232</context></context-group> |
2142 | </trans-unit> | 2283 | </trans-unit> |
2143 | <trans-unit id="1212376766715456139" datatype="html"> | 2284 | <trans-unit id="1212376766715456139" datatype="html"> |
@@ -2153,8 +2294,10 @@ The link will expire within 1 hour.</source> | |||
2153 | <trans-unit id="2602773901491715295"> | 2294 | <trans-unit id="2602773901491715295"> |
2154 | <source>Captions</source> | 2295 | <source>Captions</source> |
2155 | <target>Képaláírások</target> | 2296 | <target>Képaláírások</target> |
2156 | 2297 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">155</context></context-group> | |
2157 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">155</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">181</context></context-group></trans-unit> | 2298 | <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> |
2299 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">181</context></context-group> | ||
2300 | </trans-unit> | ||
2158 | <trans-unit id="1168086599577356916" datatype="html"> | 2301 | <trans-unit id="1168086599577356916" datatype="html"> |
2159 | <source>Video preview</source> | 2302 | <source>Video preview</source> |
2160 | <target state="translated">Videó előnézete</target> | 2303 | <target state="translated">Videó előnézete</target> |
@@ -2168,12 +2311,12 @@ The link will expire within 1 hour.</source> | |||
2168 | </trans-unit> | 2311 | </trans-unit> |
2169 | <trans-unit id="1359533927353954373" datatype="html"> | 2312 | <trans-unit id="1359533927353954373" datatype="html"> |
2170 | <source>View account</source> | 2313 | <source>View account</source> |
2171 | <target state="new">View account</target> | 2314 | <target state="translated">Fiók megjelenítése</target> |
2172 | <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> | 2315 | <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> |
2173 | </trans-unit> | 2316 | </trans-unit> |
2174 | <trans-unit id="3799746968259478616" datatype="html"> | 2317 | <trans-unit id="3799746968259478616" datatype="html"> |
2175 | <source>View account</source> | 2318 | <source>View account</source> |
2176 | <target state="new"> View account </target> | 2319 | <target state="translated">Fiók megjelenítése</target> |
2177 | <context-group purpose="location"> | 2320 | <context-group purpose="location"> |
2178 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> | 2321 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> |
2179 | <context context-type="linenumber">42,43</context> | 2322 | <context context-type="linenumber">42,43</context> |
@@ -2181,7 +2324,7 @@ The link will expire within 1 hour.</source> | |||
2181 | </trans-unit> | 2324 | </trans-unit> |
2182 | <trans-unit id="6778225321073009261" datatype="html"> | 2325 | <trans-unit id="6778225321073009261" datatype="html"> |
2183 | <source>View owner account</source> | 2326 | <source>View owner account</source> |
2184 | <target state="new"> View owner account </target> | 2327 | <target state="translated">Tulajdonos fiók megjelenítése</target> |
2185 | <context-group purpose="location"> | 2328 | <context-group purpose="location"> |
2186 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> | 2329 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> |
2187 | <context context-type="linenumber">46,47</context> | 2330 | <context context-type="linenumber">46,47</context> |
@@ -2189,7 +2332,7 @@ The link will expire within 1 hour.</source> | |||
2189 | </trans-unit> | 2332 | </trans-unit> |
2190 | <trans-unit id="8798391261676185924" datatype="html"> | 2333 | <trans-unit id="8798391261676185924" datatype="html"> |
2191 | <source>VIDEO CHANNEL</source> | 2334 | <source>VIDEO CHANNEL</source> |
2192 | <target state="new">VIDEO CHANNEL</target> | 2335 | <target state="translated">VIDEÓ CSATORNA</target> |
2193 | <context-group purpose="location"> | 2336 | <context-group purpose="location"> |
2194 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> | 2337 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> |
2195 | <context context-type="linenumber">55</context> | 2338 | <context context-type="linenumber">55</context> |
@@ -2197,7 +2340,7 @@ The link will expire within 1 hour.</source> | |||
2197 | </trans-unit> | 2340 | </trans-unit> |
2198 | <trans-unit id="5121874940679887597" datatype="html"> | 2341 | <trans-unit id="5121874940679887597" datatype="html"> |
2199 | <source>Copy channel handle</source> | 2342 | <source>Copy channel handle</source> |
2200 | <target state="new">Copy channel handle</target> | 2343 | <target state="translated">Csatorna nevének másolása</target> |
2201 | <context-group purpose="location"> | 2344 | <context-group purpose="location"> |
2202 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> | 2345 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> |
2203 | <context context-type="linenumber">66</context> | 2346 | <context context-type="linenumber">66</context> |
@@ -2206,11 +2349,14 @@ The link will expire within 1 hour.</source> | |||
2206 | <trans-unit id="3068011377000255023" datatype="html"> | 2349 | <trans-unit id="3068011377000255023" datatype="html"> |
2207 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> | 2350 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> |
2208 | <target state="new">{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</target> | 2351 | <target state="new">{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</target> |
2209 | 2352 | <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> | |
2210 | <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">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">76</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> | 2353 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">41</context></context-group> |
2354 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">76</context></context-group> | ||
2355 | <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> | ||
2356 | </trans-unit> | ||
2211 | <trans-unit id="8856905278208146821" datatype="html"> | 2357 | <trans-unit id="8856905278208146821" datatype="html"> |
2212 | <source><x id="ICU" equiv-text="{channelVideosCount, plural, =1 {1 videos} other {{{ channelVideosCount }} videos}}"/> </source> | 2358 | <source><x id="ICU" equiv-text="{channelVideosCount, plural, =1 {1 videos} other {{{ channelVideosCount }} videos}}"/> </source> |
2213 | <target state="new"> <x id="ICU" equiv-text="{channelVideosCount, plural, =1 {1 videos} other {{{ channelVideosCount }} videos}}"/> </target> | 2359 | <target state="translated"><x id="ICU" equiv-text="{channelVideosCount, plural, =1 {1 videó} other {{{ channelVideosCount }} videó}}"/> </target> |
2214 | <context-group purpose="location"> | 2360 | <context-group purpose="location"> |
2215 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> | 2361 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> |
2216 | <context context-type="linenumber">76,77</context> | 2362 | <context context-type="linenumber">76,77</context> |
@@ -2218,7 +2364,7 @@ The link will expire within 1 hour.</source> | |||
2218 | </trans-unit> | 2364 | </trans-unit> |
2219 | <trans-unit id="2486917589932345430" datatype="html"> | 2365 | <trans-unit id="2486917589932345430" datatype="html"> |
2220 | <source>OWNER ACCOUNT</source> | 2366 | <source>OWNER ACCOUNT</source> |
2221 | <target state="new">OWNER ACCOUNT</target> | 2367 | <target state="translated">TULAJDONOS FIÓK</target> |
2222 | <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> | 2368 | <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> |
2223 | </trans-unit> | 2369 | </trans-unit> |
2224 | <trans-unit id="1952020204339597057" datatype="html"> | 2370 | <trans-unit id="1952020204339597057" datatype="html"> |
@@ -2271,11 +2417,11 @@ The link will expire within 1 hour.</source> | |||
2271 | <trans-unit id="460353452916242022"> | 2417 | <trans-unit id="460353452916242022"> |
2272 | <source>Sorry, but something went wrong</source> | 2418 | <source>Sorry, but something went wrong</source> |
2273 | <target>Sajnáljuk, de valami elromlott</target> | 2419 | <target>Sajnáljuk, de valami elromlott</target> |
2274 | 2420 | <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">26</context></context-group> | |
2275 | 2421 | <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> | |
2276 | 2422 | <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> | |
2277 | 2423 | <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> | |
2278 | <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">26</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> | 2424 | </trans-unit> |
2279 | <trans-unit id="5359075917564707730"> | 2425 | <trans-unit id="5359075917564707730"> |
2280 | <source>Congratulations, the video behind <x id="INTERPOLATION"/> will be imported! You can already add information about this video. </source> | 2426 | <source>Congratulations, the video behind <x id="INTERPOLATION"/> will be imported! You can already add information about this video. </source> |
2281 | <target>Gratulálunk, a(z) <x id="INTERPOLATION"/> mögött lévő videó importálva lesz! Már megadhatja a videóval kapcsolatos információkat. </target> | 2427 | <target>Gratulálunk, a(z) <x id="INTERPOLATION"/> mögött lévő videó importálva lesz! Már megadhatja a videóval kapcsolatos információkat. </target> |
@@ -2284,12 +2430,17 @@ The link will expire within 1 hour.</source> | |||
2284 | <trans-unit id="4021752662928002901"> | 2430 | <trans-unit id="4021752662928002901"> |
2285 | <source>Update</source> | 2431 | <source>Update</source> |
2286 | <target>Frissítés</target> | 2432 | <target>Frissítés</target> |
2287 | 2433 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">180</context></context-group> | |
2288 | 2434 | <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> | |
2289 | 2435 | <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">45</context></context-group> | |
2290 | 2436 | <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> | |
2291 | 2437 | <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> | |
2292 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">180</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">45</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">18</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">284</context></context-group></trans-unit> | 2438 | <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> |
2439 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">18</context></context-group> | ||
2440 | <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> | ||
2441 | <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> | ||
2442 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">284</context></context-group> | ||
2443 | </trans-unit> | ||
2293 | <trans-unit id="6722765664648523978"> | 2444 | <trans-unit id="6722765664648523978"> |
2294 | <source>Select the file to upload</source> | 2445 | <source>Select the file to upload</source> |
2295 | <target>A feltöltendő fájl kiválasztása</target> | 2446 | <target>A feltöltendő fájl kiválasztása</target> |
@@ -2299,39 +2450,39 @@ The link will expire within 1 hour.</source> | |||
2299 | <trans-unit id="9172233176401579786"> | 2450 | <trans-unit id="9172233176401579786"> |
2300 | <source>Scheduled</source> | 2451 | <source>Scheduled</source> |
2301 | <target>Ütemezett</target> | 2452 | <target>Ütemezett</target> |
2302 | 2453 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">192</context></context-group> | |
2303 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">192</context></context-group></trans-unit> | 2454 | </trans-unit> |
2304 | <trans-unit id="1435317307066082710" datatype="html"> | 2455 | <trans-unit id="1435317307066082710" datatype="html"> |
2305 | <source>Hide the video until a specific date</source> | 2456 | <source>Hide the video until a specific date</source> |
2306 | <target state="translated">A videó elrejtése egy megadott dátumig</target> | 2457 | <target state="translated">A videó elrejtése egy megadott dátumig</target> |
2307 | 2458 | <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> | |
2308 | <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> | 2459 | </trans-unit> |
2309 | <trans-unit id="6148369758871787018" datatype="html"> | 2460 | <trans-unit id="6148369758871787018" datatype="html"> |
2310 | <source>Video background image</source> | 2461 | <source>Video background image</source> |
2311 | <target state="translated">Videó háttérképe</target> | 2462 | <target state="translated">Videó háttérképe</target> |
2312 | 2463 | <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> | |
2313 | <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> | 2464 | </trans-unit> |
2314 | <trans-unit id="7099631707196015765" datatype="html"> | 2465 | <trans-unit id="7099631707196015765" datatype="html"> |
2315 | <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> | 2466 | <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> |
2316 | <target state="translated">Egy kép, amely egyesítve lesz a hangfájllal. <x id="LINE_BREAK"/> A kiválasztott kép végleges lesz, és nem lehet módosítani. </target> | 2467 | <target state="translated">Egy kép, amely egyesítve lesz a hangfájllal. <x id="LINE_BREAK"/> A kiválasztott kép végleges lesz, és nem lehet módosítani. </target> |
2317 | 2468 | <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">37</context></context-group> | |
2318 | <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">37</context></context-group></trans-unit> | 2469 | </trans-unit> |
2319 | <trans-unit id="4626927731329688072" datatype="html"> | 2470 | <trans-unit id="4626927731329688072" datatype="html"> |
2320 | <source>Total video uploaded</source> | 2471 | <source>Total video uploaded</source> |
2321 | <target state="new">Total video uploaded</target> | 2472 | <target state="translated">Összes feltöltött videó</target> |
2322 | 2473 | <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> | |
2323 | <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> | 2474 | </trans-unit> |
2324 | <trans-unit id="1185207825965405436" datatype="html"> | 2475 | <trans-unit id="1185207825965405436" datatype="html"> |
2325 | <source>Processing…</source> | 2476 | <source>Processing…</source> |
2326 | <target state="translated">Feldolgozás…</target> | 2477 | <target state="translated">Feldolgozás…</target> |
2327 | 2478 | <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> | |
2328 | <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> | 2479 | </trans-unit> |
2329 | <trans-unit id="7934833136974560675" datatype="html"> | 2480 | <trans-unit id="7934833136974560675" datatype="html"> |
2330 | <source>Retry</source> | 2481 | <source>Retry</source> |
2331 | <target state="new">Retry</target> | 2482 | <target state="translated">Újra</target> |
2332 | <note priority="1" from="description">Retry failed upload of a video</note> | 2483 | <note priority="1" from="description">Retry failed upload of a video</note> |
2333 | 2484 | <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> | |
2334 | <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> | 2485 | </trans-unit> |
2335 | <trans-unit id="2127094963121208963" datatype="html"> | 2486 | <trans-unit id="2127094963121208963" datatype="html"> |
2336 | <source>Total video quota</source> | 2487 | <source>Total video quota</source> |
2337 | <target state="translated">Teljes videokvóta</target> | 2488 | <target state="translated">Teljes videokvóta</target> |
@@ -2341,40 +2492,48 @@ The link will expire within 1 hour.</source> | |||
2341 | <trans-unit id="1522676094837508187"> | 2492 | <trans-unit id="1522676094837508187"> |
2342 | <source>Congratulations! Your video is now available in your private library.</source> | 2493 | <source>Congratulations! Your video is now available in your private library.</source> |
2343 | <target>Gratulálunk! A videó most már elérhető a személyes könyvtárában.</target> | 2494 | <target>Gratulálunk! A videó most már elérhető a személyes könyvtárában.</target> |
2344 | 2495 | <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">91</context></context-group> | |
2345 | <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">91</context></context-group></trans-unit> | 2496 | </trans-unit> |
2346 | <trans-unit id="3768339632235914548"> | 2497 | <trans-unit id="3768339632235914548"> |
2347 | <source>Publish will be available when upload is finished</source> | 2498 | <source>Publish will be available when upload is finished</source> |
2348 | <target>A közzététel akkor lesz elérhető, ha a feltöltés befejeződött</target> | 2499 | <target>A közzététel akkor lesz elérhető, ha a feltöltés befejeződött</target> |
2349 | 2500 | <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> | |
2350 | <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> | 2501 | </trans-unit> |
2351 | <trans-unit id="7430416142942514215"> | 2502 | <trans-unit id="7430416142942514215"> |
2352 | <source>Publish</source> | 2503 | <source>Publish</source> |
2353 | <target>Közzététel</target> | 2504 | <target>Közzététel</target> |
2505 | <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> | ||
2506 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/header.component.html</context><context context-type="linenumber">5</context></context-group> | ||
2507 | </trans-unit> | ||
2508 | <trans-unit id="6161604372916832458" datatype="html"> | ||
2509 | <source>Upload on hold</source> | ||
2510 | <target state="translated">Feltöltés várakozik</target> | ||
2354 | 2511 | ||
2355 | 2512 | <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">174</context></context-group></trans-unit> | |
2356 | <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"> | ||
2357 | <source>Upload on hold</source><target state="new">Upload on hold</target> | ||
2358 | |||
2359 | <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">167</context></context-group></trans-unit> | ||
2360 | <trans-unit id="285180972645018518" datatype="html"> | 2513 | <trans-unit id="285180972645018518" datatype="html"> |
2361 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2514 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2362 | <target state="translated">Sajnáljuk, a feltöltési funkció tiltott a fiókjában. Ha videókat akar hozzáadni, akkor egy rendszergazdának fel kell oldania a kvótája zárolását.</target> | 2515 | <target state="translated">Sajnáljuk, a feltöltési funkció tiltott a fiókjában. Ha videókat akar hozzáadni, akkor egy rendszergazdának fel kell oldania a kvótája zárolását.</target> |
2363 | 2516 | <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> | |
2364 | <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"> | 2517 | </trans-unit> |
2365 | <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> | 2518 | <trans-unit id="1138810463037464722" datatype="html"> |
2519 | <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> | ||
2520 | <target state="translated">A feltöltött videóit ellenőrzik a megjelenés előtt. Ha szeretne ellenőrzés nélkül feltölteni, egy adminisztrátornak engedélyeznie kell kell ezt a fiókján.</target> | ||
2366 | <context-group purpose="location"> | 2521 | <context-group purpose="location"> |
2367 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 2522 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
2368 | <context context-type="linenumber">104</context> | 2523 | <context context-type="linenumber">104</context> |
2369 | </context-group> | 2524 | </context-group> |
2370 | </trans-unit><trans-unit id="438743381693904838" datatype="html"> | 2525 | </trans-unit> |
2371 | <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> | 2526 | <trans-unit id="438743381693904838" datatype="html"> |
2527 | <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> | ||
2528 | <target state="translated">Elfogyott a napi kvótája. Ha további videókat szeretne feltölteni, várnia kell 24 órát vagy egy adminisztrátornak meg kell növelnie a napi kvótáját.</target> | ||
2372 | <context-group purpose="location"> | 2529 | <context-group purpose="location"> |
2373 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 2530 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
2374 | <context context-type="linenumber">106</context> | 2531 | <context context-type="linenumber">106</context> |
2375 | </context-group> | 2532 | </context-group> |
2376 | </trans-unit><trans-unit id="6796692581512042469" datatype="html"> | 2533 | </trans-unit> |
2377 | <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> | 2534 | <trans-unit id="6796692581512042469" datatype="html"> |
2535 | <source>Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.</source> | ||
2536 | <target state="translated">Nem elegendő a videókvótája. Ha további videókat szeretne feltölteni, egy adminisztrátornak meg kell emelnie a kvótáját.</target> | ||
2378 | <context-group purpose="location"> | 2537 | <context-group purpose="location"> |
2379 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 2538 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
2380 | <context context-type="linenumber">108</context> | 2539 | <context context-type="linenumber">108</context> |
@@ -2383,8 +2542,8 @@ The link will expire within 1 hour.</source> | |||
2383 | <trans-unit id="2587226585711833549" datatype="html"> | 2542 | <trans-unit id="2587226585711833549" datatype="html"> |
2384 | <source>Read instance rules for help</source> | 2543 | <source>Read instance rules for help</source> |
2385 | <target state="translated">Súgóként olvassa el a példány szabályait</target> | 2544 | <target state="translated">Súgóként olvassa el a példány szabályait</target> |
2386 | 2545 | <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> | |
2387 | <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> | 2546 | </trans-unit> |
2388 | <trans-unit id="3455474330346212563"> | 2547 | <trans-unit id="3455474330346212563"> |
2389 | <source>Select the torrent to import</source> | 2548 | <source>Select the torrent to import</source> |
2390 | <target>Az importálandó torrent kiválasztása</target> | 2549 | <target>Az importálandó torrent kiválasztása</target> |
@@ -2405,25 +2564,27 @@ The link will expire within 1 hour.</source> | |||
2405 | <source>Congratulations, the video will be imported with BitTorrent! You can already add information about this video.</source> | 2564 | <source>Congratulations, the video will be imported with BitTorrent! You can already add information about this video.</source> |
2406 | <target>Gratulálunk, a videó importálva lesz BitTorrent használatával! Már megadhatja a videóval kapcsolatos információkat.</target> | 2565 | <target>Gratulálunk, a videó importálva lesz BitTorrent használatával! Már megadhatja a videóval kapcsolatos információkat.</target> |
2407 | <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">56</context></context-group> | 2566 | <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">56</context></context-group> |
2408 | </trans-unit><trans-unit id="4422946962830681102" datatype="html"> | 2567 | </trans-unit> |
2409 | <source>Torrents with only 1 file are supported.</source><target state="new">Torrents with only 1 file are supported.</target> | 2568 | <trans-unit id="4422946962830681102" datatype="html"> |
2410 | 2569 | <source>Torrents with only 1 file are supported.</source> | |
2411 | <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">120</context></context-group></trans-unit> | 2570 | <target state="translated">Csak egy fájlt tartalmazó torrent fájlok támogatottak.</target> |
2571 | <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">120</context></context-group> | ||
2572 | </trans-unit> | ||
2412 | <trans-unit id="7860848084471862305" datatype="html"> | 2573 | <trans-unit id="7860848084471862305" datatype="html"> |
2413 | <source>Cannot create live because this instance have too many created lives</source> | 2574 | <source>Cannot create live because this instance have too many created lives</source> |
2414 | <target state="translated">Több élő közvetítés nem hozható létre, mert a példányon már túl sok lett létrehozva</target> | 2575 | <target state="translated">Több élő közvetítés nem hozható létre, mert a példányon már túl sok lett létrehozva</target> |
2415 | 2576 | <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">101</context></context-group> | |
2416 | <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">101</context></context-group></trans-unit> | 2577 | </trans-unit> |
2417 | <trans-unit id="1278564497286613571" datatype="html"> | 2578 | <trans-unit id="1278564497286613571" datatype="html"> |
2418 | <source>Cannot create live because you created too many lives</source> | 2579 | <source>Cannot create live because you created too many lives</source> |
2419 | <target state="translated">Nem hozható létre élő közvetítés, mert már túl sokat hozott létre</target> | 2580 | <target state="translated">Nem hozható létre élő közvetítés, mert már túl sokat hozott létre</target> |
2420 | 2581 | <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> | |
2421 | <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> | 2582 | </trans-unit> |
2422 | <trans-unit id="2621043320678012413" datatype="html"> | 2583 | <trans-unit id="2621043320678012413" datatype="html"> |
2423 | <source>Live published.</source> | 2584 | <source>Live published.</source> |
2424 | <target state="translated">Élő közvetítés közzétéve.</target> | 2585 | <target state="translated">Élő közvetítés közzétéve.</target> |
2425 | 2586 | <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> | |
2426 | <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> | 2587 | </trans-unit> |
2427 | <trans-unit id="8218579597782287078" datatype="html"> | 2588 | <trans-unit id="8218579597782287078" datatype="html"> |
2428 | <source>Go Live</source> | 2589 | <source>Go Live</source> |
2429 | <target state="translated">Élő közvetítés</target> | 2590 | <target state="translated">Élő közvetítés</target> |
@@ -2437,53 +2598,53 @@ The link will expire within 1 hour.</source> | |||
2437 | <trans-unit id="2993949426196989262" datatype="html"> | 2598 | <trans-unit id="2993949426196989262" datatype="html"> |
2438 | <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> | 2599 | <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> |
2439 | <target state="translated">Azt ajánljuk, hogy ne használja a <x id="START_TAG_STRONG"/>root <x id="CLOSE_TAG_STRONG"/> felhasználót a videók közzétételéhez, mivel az a példány rendszergazda fiókja. <x id="LINE_BREAK"/> Ehelyett inkább <x id="START_LINK"/>hozzon létre egy külön fiókot <x id="CLOSE_LINK"/> a videói feltöltéséhez. </target> | 2600 | <target state="translated">Azt ajánljuk, hogy ne használja a <x id="START_TAG_STRONG"/>root <x id="CLOSE_TAG_STRONG"/> felhasználót a videók közzétételéhez, mivel az a példány rendszergazda fiókja. <x id="LINE_BREAK"/> Ehelyett inkább <x id="START_LINK"/>hozzon létre egy külön fiókot <x id="CLOSE_LINK"/> a videói feltöltéséhez. </target> |
2440 | 2601 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">34</context></context-group> | |
2441 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 2602 | </trans-unit> |
2442 | <trans-unit id="293476877021544115"> | 2603 | <trans-unit id="293476877021544115"> |
2443 | <source>Import <x id="INTERPOLATION"/></source> | 2604 | <source>Import <x id="INTERPOLATION"/></source> |
2444 | <target><x id="INTERPOLATION"/> importálása</target> | 2605 | <target><x id="INTERPOLATION"/> importálása</target> |
2445 | 2606 | <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> | |
2446 | <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> | 2607 | </trans-unit> |
2447 | <trans-unit id="4766833966971572147"> | 2608 | <trans-unit id="4766833966971572147"> |
2448 | <source>Upload <x id="INTERPOLATION"/></source> | 2609 | <source>Upload <x id="INTERPOLATION"/></source> |
2449 | <target><x id="INTERPOLATION"/> feltöltése</target> | 2610 | <target><x id="INTERPOLATION"/> feltöltése</target> |
2450 | 2611 | <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> | |
2451 | <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> | 2612 | </trans-unit> |
2452 | <trans-unit id="7003826819757856838"> | 2613 | <trans-unit id="7003826819757856838"> |
2453 | <source>Upload a file</source> | 2614 | <source>Upload a file</source> |
2454 | <target>Fájl feltöltése</target> | 2615 | <target>Fájl feltöltése</target> |
2455 | 2616 | <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> | |
2456 | <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> | 2617 | </trans-unit> |
2457 | <trans-unit id="2061223017941329156"> | 2618 | <trans-unit id="2061223017941329156"> |
2458 | <source>Import with URL</source> | 2619 | <source>Import with URL</source> |
2459 | <target>Importálás URL-lel</target> | 2620 | <target>Importálás URL-lel</target> |
2460 | 2621 | <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> | |
2461 | <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> | 2622 | </trans-unit> |
2462 | <trans-unit id="8740142697043012403"> | 2623 | <trans-unit id="8740142697043012403"> |
2463 | <source>Import with torrent</source> | 2624 | <source>Import with torrent</source> |
2464 | <target>Importálás torrenttel</target> | 2625 | <target>Importálás torrenttel</target> |
2465 | 2626 | <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> | |
2466 | <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> | 2627 | </trans-unit> |
2467 | <trans-unit id="6066940329544282265" datatype="html"> | 2628 | <trans-unit id="6066940329544282265" datatype="html"> |
2468 | <source>Go live</source> | 2629 | <source>Go live</source> |
2469 | <target state="translated">Élő közvetítés</target> | 2630 | <target state="translated">Élő közvetítés</target> |
2470 | 2631 | <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> | |
2471 | <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> | 2632 | </trans-unit> |
2472 | <trans-unit id="3907889591911208762" datatype="html"> | 2633 | <trans-unit id="3907889591911208762" datatype="html"> |
2473 | <source>Other videos</source> | 2634 | <source>Other videos</source> |
2474 | <target state="translated">Egyéb videók</target> | 2635 | <target state="translated">Egyéb videók</target> |
2475 | 2636 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html</context><context context-type="linenumber">5</context></context-group> | |
2476 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 2637 | </trans-unit> |
2477 | <trans-unit id="2913936134410914576" datatype="html"> | 2638 | <trans-unit id="2913936134410914576" datatype="html"> |
2478 | <source>AUTOPLAY</source> | 2639 | <source>AUTOPLAY</source> |
2479 | <target state="translated">AUTOMATIKUS LEJÁTSZÁS</target> | 2640 | <target state="translated">AUTOMATIKUS LEJÁTSZÁS</target> |
2480 | 2641 | <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> | |
2481 | <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> | 2642 | </trans-unit> |
2482 | <trans-unit id="4619111912751495491" datatype="html"> | 2643 | <trans-unit id="4619111912751495491" datatype="html"> |
2483 | <source>Report this comment</source> | 2644 | <source>Report this comment</source> |
2484 | <target state="translated">Hozzászólás jelentése</target> | 2645 | <target state="translated">Hozzászólás jelentése</target> |
2485 | 2646 | <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> | |
2486 | <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> | 2647 | </trans-unit> |
2487 | <trans-unit id="7419704019640008953"> | 2648 | <trans-unit id="7419704019640008953"> |
2488 | <source>Share</source> | 2649 | <source>Share</source> |
2489 | <target>Megosztás</target> | 2650 | <target>Megosztás</target> |
@@ -2540,7 +2701,7 @@ The link will expire within 1 hour.</source> | |||
2540 | </trans-unit> | 2701 | </trans-unit> |
2541 | <trans-unit id="1290987288288099212" datatype="html"> | 2702 | <trans-unit id="1290987288288099212" datatype="html"> |
2542 | <source>Support <x id="INTERPOLATION" equiv-text="{{ displayName }}"/></source> | 2703 | <source>Support <x id="INTERPOLATION" equiv-text="{{ displayName }}"/></source> |
2543 | <target state="new">Support <x id="INTERPOLATION" equiv-text="{{ displayName }}"/></target> | 2704 | <target state="translated">Támogatás: <x id="INTERPOLATION" equiv-text="{{ displayName }}"/></target> |
2544 | <context-group purpose="location"> | 2705 | <context-group purpose="location"> |
2545 | <context context-type="sourcefile">src/app/shared/shared-support-modal/support-modal.component.html</context> | 2706 | <context context-type="sourcefile">src/app/shared/shared-support-modal/support-modal.component.html</context> |
2546 | <context context-type="linenumber">3</context> | 2707 | <context context-type="linenumber">3</context> |
@@ -2595,64 +2756,58 @@ The link will expire within 1 hour.</source> | |||
2595 | <trans-unit id="8928816882866356838"> | 2756 | <trans-unit id="8928816882866356838"> |
2596 | <source>Public</source> | 2757 | <source>Public</source> |
2597 | <target>Nyilvános</target> | 2758 | <target>Nyilvános</target> |
2598 | 2759 | <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> | |
2599 | <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> | 2760 | </trans-unit> |
2600 | |||
2601 | |||
2602 | |||
2603 | |||
2604 | |||
2605 | <trans-unit id="4416005356063364306" datatype="html"> | 2761 | <trans-unit id="4416005356063364306" datatype="html"> |
2606 | <source>This video is blocked.</source> | 2762 | <source>This video is blocked.</source> |
2607 | <target state="translated">Ez a videó le van tiltva.</target> | 2763 | <target state="translated">Ez a videó le van tiltva.</target> |
2608 | 2764 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">26</context></context-group> | |
2609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 2765 | </trans-unit> |
2610 | <trans-unit id="2482137713226830428" datatype="html"> | 2766 | <trans-unit id="2482137713226830428" datatype="html"> |
2611 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source> | 2767 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source> |
2612 | <target state="new">Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></target> | 2768 | <target state="translated">Közzétéve <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></target> |
2613 | 2769 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">31</context></context-group> | |
2614 | 2770 | </trans-unit> | |
2615 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | ||
2616 | <trans-unit id="1813238393038053050" datatype="html"> | 2771 | <trans-unit id="1813238393038053050" datatype="html"> |
2617 | <source>SUPPORT</source> | 2772 | <source>SUPPORT</source> |
2618 | <target state="translated">TÁMOGATÁS</target> | 2773 | <target state="translated">TÁMOGATÁS</target> |
2619 | 2774 | <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> | |
2620 | <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> | 2775 | </trans-unit> |
2621 | <trans-unit id="9219888125536520293" datatype="html"> | 2776 | <trans-unit id="9219888125536520293" datatype="html"> |
2622 | <source>SHARE</source> | 2777 | <source>SHARE</source> |
2623 | <target state="translated">MEGOSZTÁS</target> | 2778 | <target state="translated">MEGOSZTÁS</target> |
2624 | 2779 | <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> | |
2625 | <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> | 2780 | </trans-unit> |
2626 | <trans-unit id="6671956963490165282" datatype="html"> | 2781 | <trans-unit id="6671956963490165282" datatype="html"> |
2627 | <source>SAVE</source> | 2782 | <source>SAVE</source> |
2628 | <target state="translated">MENTÉS</target> | 2783 | <target state="translated">MENTÉS</target> |
2629 | 2784 | <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> | |
2630 | <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> | 2785 | </trans-unit> |
2631 | <trans-unit id="647016352598204238" datatype="html"> | 2786 | <trans-unit id="647016352598204238" datatype="html"> |
2632 | <source>DOWNLOAD</source> | 2787 | <source>DOWNLOAD</source> |
2633 | <target state="translated">LETÖLTÉS</target> | 2788 | <target state="translated">LETÖLTÉS</target> |
2634 | 2789 | <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> | |
2635 | <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> | 2790 | </trans-unit> |
2636 | <trans-unit id="677619204556459328"> | 2791 | <trans-unit id="677619204556459328"> |
2637 | <source>Like this video</source> | 2792 | <source>Like this video</source> |
2638 | <target>Videó kedvelése</target> | 2793 | <target>Videó kedvelése</target> |
2639 | 2794 | <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> | |
2640 | <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> | 2795 | </trans-unit> |
2641 | <trans-unit id="1979134407801821102"> | 2796 | <trans-unit id="1979134407801821102"> |
2642 | <source>Dislike this video</source> | 2797 | <source>Dislike this video</source> |
2643 | <target>Videó nem kedvelése</target> | 2798 | <target>Videó nem kedvelése</target> |
2644 | 2799 | <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> | |
2645 | <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> | 2800 | </trans-unit> |
2646 | <trans-unit id="4001371302469308813" datatype="html"> | 2801 | <trans-unit id="4001371302469308813" datatype="html"> |
2647 | <source>Support options for this video</source> | 2802 | <source>Support options for this video</source> |
2648 | <target state="translated">A videó támogatási lehetőségei</target> | 2803 | <target state="translated">A videó támogatási lehetőségei</target> |
2649 | 2804 | <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">56</context></context-group> | |
2650 | <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">56</context></context-group></trans-unit> | 2805 | </trans-unit> |
2651 | <trans-unit id="687548610091961489"> | 2806 | <trans-unit id="687548610091961489"> |
2652 | <source>By <x id="INTERPOLATION"/></source> | 2807 | <source>By <x id="INTERPOLATION"/></source> |
2653 | <target><x id="INTERPOLATION"/> által</target> | 2808 | <target><x id="INTERPOLATION"/> által</target> |
2654 | 2809 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">71</context></context-group> | |
2655 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">71</context></context-group></trans-unit> | 2810 | </trans-unit> |
2656 | <trans-unit id="1144407473317535723" datatype="html"> | 2811 | <trans-unit id="1144407473317535723" datatype="html"> |
2657 | <source>Subscribe</source> | 2812 | <source>Subscribe</source> |
2658 | <target state="translated">Feliratkozás</target> | 2813 | <target state="translated">Feliratkozás</target> |
@@ -2676,19 +2831,21 @@ The link will expire within 1 hour.</source> | |||
2676 | <trans-unit id="7215101881367554791"> | 2831 | <trans-unit id="7215101881367554791"> |
2677 | <source>Show more</source> | 2832 | <source>Show more</source> |
2678 | <target>Több megjelenítése</target> | 2833 | <target>Több megjelenítése</target> |
2679 | 2834 | <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> | |
2680 | <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> | 2835 | </trans-unit> |
2681 | <trans-unit id="3517550046701184661"> | 2836 | <trans-unit id="3517550046701184661"> |
2682 | <source>Show less</source> | 2837 | <source>Show less</source> |
2683 | <target>Kevesebb megjelenítése</target> | 2838 | <target>Kevesebb megjelenítése</target> |
2684 | 2839 | <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> | |
2685 | <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> | 2840 | </trans-unit> |
2686 | <trans-unit id="66785722678644243" datatype="html"> | 2841 | <trans-unit id="66785722678644243" datatype="html"> |
2687 | <source>Origin</source> | 2842 | <source>Origin</source> |
2688 | <target state="new">Origin</target> | 2843 | <target state="translated">Eredet</target> |
2689 | 2844 | <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> | |
2690 | <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"> | 2845 | </trans-unit> |
2691 | <source>Open the video on the origin instance</source><target state="new">Open the video on the origin instance</target> | 2846 | <trans-unit id="6981359593518942576" datatype="html"> |
2847 | <source>Open the video on the origin instance</source> | ||
2848 | <target state="translated">Videó megnyitása az eredeti példányon</target> | ||
2692 | <context-group purpose="location"> | 2849 | <context-group purpose="location"> |
2693 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context> | 2850 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context> |
2694 | <context context-type="linenumber">14</context> | 2851 | <context context-type="linenumber">14</context> |
@@ -2697,27 +2854,27 @@ The link will expire within 1 hour.</source> | |||
2697 | <trans-unit id="5139892963394684487"> | 2854 | <trans-unit id="5139892963394684487"> |
2698 | <source>Originally published</source> | 2855 | <source>Originally published</source> |
2699 | <target>Eredetileg közzétéve</target> | 2856 | <target>Eredetileg közzétéve</target> |
2700 | 2857 | <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> | |
2701 | <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> | 2858 | </trans-unit> |
2702 | <trans-unit id="6402393085909200998" datatype="html"> | 2859 | <trans-unit id="6402393085909200998" datatype="html"> |
2703 | <source>Friendly Reminder:</source> | 2860 | <source>Friendly Reminder:</source> |
2704 | <target state="translated">Baráti emlékeztető:</target> | 2861 | <target state="translated">Baráti emlékeztető:</target> |
2705 | 2862 | <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> | |
2706 | <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> | 2863 | </trans-unit> |
2707 | <trans-unit id="2935783216050341269" datatype="html"> | 2864 | <trans-unit id="2935783216050341269" datatype="html"> |
2708 | <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> | 2865 | <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> |
2709 | <target state="translated">a videóhoz használt megosztási rendszer azt vonja maga után, hogy néhány technikai információ a rendszeréről (mint például egy nyilvános IP-cím) elküldésre kerülhet más partnereknek.</target> | 2866 | <target state="translated">a videóhoz használt megosztási rendszer azt vonja maga után, hogy néhány technikai információ a rendszeréről (mint például egy nyilvános IP-cím) elküldésre kerülhet más partnereknek.</target> |
2710 | 2867 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">6</context></context-group> | |
2711 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2868 | </trans-unit> |
2712 | <trans-unit id="4619188387782427495"> | 2869 | <trans-unit id="4619188387782427495"> |
2713 | <source>More information</source> | 2870 | <source>More information</source> |
2714 | <target>További információk</target> | 2871 | <target>További információk</target> |
2715 | 2872 | <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">36</context></context-group> | |
2716 | 2873 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">56</context></context-group> | |
2717 | 2874 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">56</context></context-group> | |
2718 | 2875 | <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> | |
2719 | 2876 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">32</context></context-group> | |
2720 | <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">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">56</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">56</context></context-group><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><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2877 | </trans-unit> |
2721 | <trans-unit id="3452334748875293295" datatype="html"> | 2878 | <trans-unit id="3452334748875293295" datatype="html"> |
2722 | <source>The video was blocked due to automatic blocking of new videos</source> | 2879 | <source>The video was blocked due to automatic blocking of new videos</source> |
2723 | <target state="translated">Ez a videó le lett tiltva, mert az új videók automatikusan letiltásra kerülnek</target> | 2880 | <target state="translated">Ez a videó le lett tiltva, mert az új videók automatikusan letiltásra kerülnek</target> |
@@ -2725,220 +2882,224 @@ The link will expire within 1 hour.</source> | |||
2725 | </trans-unit> | 2882 | </trans-unit> |
2726 | <trans-unit id="1465291804668949243" datatype="html"> | 2883 | <trans-unit id="1465291804668949243" datatype="html"> |
2727 | <source>NSFW</source> | 2884 | <source>NSFW</source> |
2728 | <target state="new">NSFW</target> | 2885 | <target state="translated">MKNM</target> |
2729 | <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">67</context></context-group> | 2886 | <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">67</context></context-group> |
2730 | </trans-unit> | 2887 | </trans-unit> |
2731 | <trans-unit id="4512155674928869984"> | 2888 | <trans-unit id="4512155674928869984"> |
2732 | <source>Get more information</source> | 2889 | <source>Get more information</source> |
2733 | <target>További információk szerzése</target> | 2890 | <target>További információk szerzése</target> |
2734 | 2891 | <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> | |
2735 | <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> | 2892 | </trans-unit> |
2736 | <trans-unit id="5184373289520493569" datatype="html"> | 2893 | <trans-unit id="5184373289520493569" datatype="html"> |
2737 | <source>OK</source> | 2894 | <source>OK</source> |
2738 | <target state="translated">Rendben</target> | 2895 | <target state="translated">Rendben</target> |
2739 | 2896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">13</context></context-group> | |
2740 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit><trans-unit id="4092533321838934102" datatype="html"> | 2897 | </trans-unit> |
2741 | <source> The video is being imported, it will be available when the import is finished. | 2898 | <trans-unit id="4092533321838934102" datatype="html"> |
2742 | </source><target state="new"> The video is being imported, it will be available when the import is finished. | 2899 | <source>The video is being imported, it will be available when the import is finished.</source> |
2743 | </target> | 2900 | <target state="translated">A videó importálása folyamatban van, az importálás befejezésekor lesz elérhető.</target> |
2744 | <context-group purpose="location"> | 2901 | <context-group purpose="location"> |
2745 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 2902 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
2746 | <context context-type="linenumber">2,3</context> | 2903 | <context context-type="linenumber">2,3</context> |
2747 | </context-group> | 2904 | </context-group> |
2748 | </trans-unit><trans-unit id="8304621069698650554" datatype="html"> | 2905 | </trans-unit> |
2749 | <source> The video is being transcoded, it may not work properly. | 2906 | <trans-unit id="8304621069698650554" datatype="html"> |
2750 | </source><target state="new"> The video is being transcoded, it may not work properly. | 2907 | <source>The video is being transcoded, it may not work properly.</source> |
2751 | </target> | 2908 | <target state="translated">A videó átkódolás alatt van, még nem biztos, hogy megfelelően megjelenik.</target> |
2752 | <context-group purpose="location"> | 2909 | <context-group purpose="location"> |
2753 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 2910 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
2754 | <context context-type="linenumber">6,7</context> | 2911 | <context context-type="linenumber">6,7</context> |
2755 | </context-group> | 2912 | </context-group> |
2756 | </trans-unit><trans-unit id="9080034597841586171" datatype="html"> | 2913 | </trans-unit> |
2757 | <source> The video is being moved to an external server, it may not work properly. | 2914 | <trans-unit id="9080034597841586171" datatype="html"> |
2758 | </source><target state="new"> The video is being moved to an external server, it may not work properly. | 2915 | <source>The video is being moved to an external server, it may not work properly.</source> |
2759 | </target> | 2916 | <target state="translated">A videó áthelyezés alatt van egy külső szerverre, nem biztos, hogy megfelelően megjelenik.</target> |
2760 | <context-group purpose="location"> | 2917 | <context-group purpose="location"> |
2761 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 2918 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
2762 | <context context-type="linenumber">10,11</context> | 2919 | <context context-type="linenumber">10,11</context> |
2763 | </context-group> | 2920 | </context-group> |
2764 | </trans-unit><trans-unit id="8619499607322327082" datatype="html"> | 2921 | </trans-unit> |
2765 | <source> This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. | 2922 | <trans-unit id="8619499607322327082" datatype="html"> |
2766 | </source><target state="new"> This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. | 2923 | <source>This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. </source> |
2767 | </target> | 2924 | <target state="translated">A videó a következő időpontban lesz közzétéve: <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. </target> |
2768 | 2925 | <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> | |
2769 | <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="4262297989675590582" datatype="html"> | 2926 | </trans-unit> |
2770 | <source> This live has not started yet. | 2927 | <trans-unit id="4262297989675590582" datatype="html"> |
2771 | </source><target state="new"> This live has not started yet. | 2928 | <source>This live has not started yet.</source> |
2772 | </target> | 2929 | <target state="translated">Ez az élő közvetítés még nem kezdődött el.</target> |
2773 | 2930 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">18</context></context-group> | |
2774 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit><trans-unit id="4926204350710628499" datatype="html"> | 2931 | </trans-unit> |
2775 | <source> This live has ended. | 2932 | <trans-unit id="4926204350710628499" datatype="html"> |
2776 | </source><target state="new"> This live has ended. | 2933 | <source>This live has ended.</source> |
2777 | </target> | 2934 | <target state="translated">Ez az élő közvetítés befejeződött.</target> |
2778 | 2935 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">22</context></context-group> | |
2779 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 2936 | </trans-unit> |
2780 | <trans-unit id="8518611938109939710" datatype="html"> | 2937 | <trans-unit id="8518611938109939710" datatype="html"> |
2781 | <source>SORT BY</source> | 2938 | <source>SORT BY</source> |
2782 | <target state="translated">RENDEZÉSI SZEMPONT</target> | 2939 | <target state="translated">RENDEZÉSI SZEMPONT</target> |
2783 | 2940 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">11</context></context-group> | |
2784 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 2941 | </trans-unit> |
2785 | <trans-unit id="6448160249466325288" datatype="html"> | 2942 | <trans-unit id="6448160249466325288" datatype="html"> |
2786 | <source>Most recent first (default)</source> | 2943 | <source>Most recent first (default)</source> |
2787 | <target state="translated">Legújabb először (alapértelmezett)</target> | 2944 | <target state="translated">Legújabb először (alapértelmezett)</target> |
2788 | 2945 | <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> | |
2789 | <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> | 2946 | </trans-unit> |
2790 | <trans-unit id="5179007899354903649" datatype="html"> | 2947 | <trans-unit id="5179007899354903649" datatype="html"> |
2791 | <source>Most replies first</source> | 2948 | <source>Most replies first</source> |
2792 | <target state="translated">Legtöbb válasz először</target> | 2949 | <target state="translated">Legtöbb válasz először</target> |
2793 | 2950 | <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> | |
2794 | <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> | 2951 | </trans-unit> |
2795 | <trans-unit id="7494537777006082055"> | 2952 | <trans-unit id="7494537777006082055"> |
2796 | <source>No comments.</source> | 2953 | <source>No comments.</source> |
2797 | <target>Nincsenek hozzászólások.</target> | 2954 | <target>Nincsenek hozzászólások.</target> |
2798 | 2955 | <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> | |
2799 | <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> | 2956 | </trans-unit> |
2800 | <trans-unit id="6390009909920475335" datatype="html"> | 2957 | <trans-unit id="6390009909920475335" datatype="html"> |
2801 | <source>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 </source> | 2958 | <source>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 </source> |
2802 | <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> | 2959 | <target state="translated"><x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 válasz} other {{{ comment.totalReplies }} válasz}}"/> megjelenítése tőle: <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> és másoktól </target> |
2803 | 2960 | <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> | |
2804 | <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></trans-unit> | 2961 | </trans-unit> |
2805 | <trans-unit id="4036338619293319383" datatype="html"> | 2962 | <trans-unit id="4036338619293319383" datatype="html"> |
2806 | <source>{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</source> | 2963 | <source>{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</source> |
2807 | <target state="new">{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</target> | 2964 | <target state="translated">{VAR_PLURAL, plural, =1 {1 válasz} other {<x id="INTERPOLATION"/> válasz}}</target> |
2808 | 2965 | <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> | |
2809 | 2966 | <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> | |
2810 | 2967 | <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> | |
2811 | <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> | 2968 | </trans-unit> |
2812 | <trans-unit id="127329338495775339" datatype="html"> | 2969 | <trans-unit id="127329338495775339" datatype="html"> |
2813 | <source>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' }}"/> </source> | 2970 | <source>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' }}"/> </source> |
2814 | <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> | 2971 | <target state="translated"><x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 válasz} other {{{ comment.totalReplies }} válasz}}"/> megjelenítése tőle: <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> </target> |
2815 | 2972 | <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> | |
2816 | <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></trans-unit> | 2973 | </trans-unit> |
2817 | <trans-unit id="5535545444690528619" datatype="html"> | 2974 | <trans-unit id="5535545444690528619" datatype="html"> |
2818 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></source> | 2975 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></source> |
2819 | <target state="new">View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></target> | 2976 | <target state="translated"><x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 válasz} other {{{ comment.totalReplies }} válasz}}"/> megjelenítése</target> |
2820 | 2977 | <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> | |
2821 | <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> | 2978 | </trans-unit> |
2822 | <trans-unit id="1055254162789146714"> | 2979 | <trans-unit id="1055254162789146714"> |
2823 | <source>Comments are disabled.</source> | 2980 | <source>Comments are disabled.</source> |
2824 | <target>A hozzászólások le vannak tiltva.</target> | 2981 | <target>A hozzászólások le vannak tiltva.</target> |
2825 | 2982 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">92</context></context-group> | |
2826 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> | 2983 | </trans-unit> |
2827 | <trans-unit id="3691787517663044217" datatype="html"> | 2984 | <trans-unit id="3691787517663044217" datatype="html"> |
2828 | <source>The deletion will be sent to remote instances so they can reflect the change.</source> | 2985 | <source>The deletion will be sent to remote instances so they can reflect the change.</source> |
2829 | <target state="translated">A törlés el lesz küldve a távoli példányokhoz, így azok is reagálhatnak a változtatásra.</target> | 2986 | <target state="translated">A törlés el lesz küldve a távoli példányokhoz, így azok is reagálhatnak a változtatásra.</target> |
2830 | 2987 | <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> | |
2831 | <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> | 2988 | </trans-unit> |
2832 | <trans-unit id="7321800851971795962" datatype="html"> | 2989 | <trans-unit id="7321800851971795962" datatype="html"> |
2833 | <source>It is a remote comment, so the deletion will only be effective on your instance.</source> | 2990 | <source>It is a remote comment, so the deletion will only be effective on your instance.</source> |
2834 | <target state="translated">Ez egy távoli hozzászólás, ezért a törlés csak az Ön példányán lesz hatással.</target> | 2991 | <target state="translated">Ez egy távoli hozzászólás, ezért a törlés csak az Ön példányán lesz hatással.</target> |
2835 | 2992 | <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> | |
2836 | <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> | 2993 | </trans-unit> |
2837 | <trans-unit id="5964038603724691720" datatype="html"> | 2994 | <trans-unit id="5964038603724691720" datatype="html"> |
2838 | <source>Delete and re-draft</source> | 2995 | <source>Delete and re-draft</source> |
2839 | <target state="translated">Törlés és újraírás</target> | 2996 | <target state="translated">Törlés és újraírás</target> |
2840 | 2997 | <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> | |
2841 | <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> | 2998 | </trans-unit> |
2842 | <trans-unit id="7163633882758007711" datatype="html"> | 2999 | <trans-unit id="7163633882758007711" datatype="html"> |
2843 | <source>Do you really want to delete and re-draft this comment?</source> | 3000 | <source>Do you really want to delete and re-draft this comment?</source> |
2844 | <target state="translated">Biztos, hogy törli és újraírja ezt a hozzászólást?</target> | 3001 | <target state="translated">Biztos, hogy törli és újraírja ezt a hozzászólást?</target> |
2845 | 3002 | <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> | |
2846 | <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> | 3003 | </trans-unit> |
2847 | <trans-unit id="5733075023444401902"> | 3004 | <trans-unit id="5733075023444401902"> |
2848 | <source>Add comment...</source> | 3005 | <source>Add comment...</source> |
2849 | <target>Hozzászólás hozzáadása…</target> | 3006 | <target>Hozzászólás hozzáadása…</target> |
2850 | 3007 | <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> | |
2851 | <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> | 3008 | </trans-unit> |
2852 | <trans-unit id="982956590420630883" datatype="html"> | 3009 | <trans-unit id="982956590420630883" datatype="html"> |
2853 | <source>Markdown compatible</source> | 3010 | <source>Markdown compatible</source> |
2854 | <target state="translated">Markdown-kompatibilis</target> | 3011 | <target state="translated">Markdown-kompatibilis</target> |
2855 | 3012 | <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> | |
2856 | <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> | 3013 | </trans-unit> |
2857 | <trans-unit id="5793595564950675122" datatype="html"> | 3014 | <trans-unit id="5793595564950675122" datatype="html"> |
2858 | <source>Markdown compatible that supports:</source> | 3015 | <source>Markdown compatible that supports:</source> |
2859 | <target state="translated">Markdown-kompatibilis, és a következőket támogatja:</target> | 3016 | <target state="translated">Markdown-kompatibilis, és a következőket támogatja:</target> |
2860 | 3017 | <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> | |
2861 | <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> | 3018 | </trans-unit> |
2862 | <trans-unit id="8422216333877786919" datatype="html"> | 3019 | <trans-unit id="8422216333877786919" datatype="html"> |
2863 | <source>Auto generated links</source> | 3020 | <source>Auto generated links</source> |
2864 | <target state="translated">Automatikusan előállított hivatkozások</target> | 3021 | <target state="translated">Automatikusan előállított hivatkozások</target> |
2865 | 3022 | <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> | |
2866 | <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> | 3023 | </trans-unit> |
2867 | <trans-unit id="6365822416124232422" datatype="html"> | 3024 | <trans-unit id="6365822416124232422" datatype="html"> |
2868 | <source>Break lines</source> | 3025 | <source>Break lines</source> |
2869 | <target state="translated">Sortörések</target> | 3026 | <target state="translated">Sortörések</target> |
2870 | 3027 | <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> | |
2871 | <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> | 3028 | </trans-unit> |
2872 | <trans-unit id="8756167649220050929" datatype="html"> | 3029 | <trans-unit id="8756167649220050929" datatype="html"> |
2873 | <source>Lists</source> | 3030 | <source>Lists</source> |
2874 | <target state="translated">Listák</target> | 3031 | <target state="translated">Listák</target> |
2875 | 3032 | <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> | |
2876 | <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> | 3033 | <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> |
3034 | </trans-unit> | ||
2877 | <trans-unit id="2516633974298697807" datatype="html"> | 3035 | <trans-unit id="2516633974298697807" datatype="html"> |
2878 | <source>Emphasis</source> | 3036 | <source>Emphasis</source> |
2879 | <target state="translated">Kiemelés</target> | 3037 | <target state="translated">Kiemelés</target> |
2880 | 3038 | <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> | |
2881 | <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> | 3039 | <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> |
3040 | </trans-unit> | ||
2882 | <trans-unit id="2810844969104710423" datatype="html"> | 3041 | <trans-unit id="2810844969104710423" datatype="html"> |
2883 | <source>bold</source> | 3042 | <source>bold</source> |
2884 | <target state="translated">félkövér</target> | 3043 | <target state="translated">félkövér</target> |
2885 | 3044 | <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> | |
2886 | <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> | 3045 | </trans-unit> |
2887 | <trans-unit id="8497278965577453274" datatype="html"> | 3046 | <trans-unit id="8497278965577453274" datatype="html"> |
2888 | <source>italic</source> | 3047 | <source>italic</source> |
2889 | <target state="translated">dőlt</target> | 3048 | <target state="translated">dőlt</target> |
2890 | 3049 | <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> | |
2891 | <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> | 3050 | </trans-unit> |
2892 | <trans-unit id="7227611412155083002" datatype="html"> | 3051 | <trans-unit id="7227611412155083002" datatype="html"> |
2893 | <source>Emoji shortcuts</source> | 3052 | <source>Emoji shortcuts</source> |
2894 | <target state="translated">Emodzsi rövidítések</target> | 3053 | <target state="translated">Emodzsi rövidítések</target> |
2895 | 3054 | <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> | |
2896 | <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> | 3055 | </trans-unit> |
2897 | <trans-unit id="6608581312644027413" datatype="html"> | 3056 | <trans-unit id="6608581312644027413" datatype="html"> |
2898 | <source>Emoji markup</source> | 3057 | <source>Emoji markup</source> |
2899 | <target state="translated">Emodzsi beírása</target> | 3058 | <target state="translated">Emodzsi beírása</target> |
2900 | 3059 | <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> | |
2901 | <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> | 3060 | </trans-unit> |
2902 | <trans-unit id="381522038671562286" datatype="html"> | 3061 | <trans-unit id="381522038671562286" datatype="html"> |
2903 | <source>See complete list</source> | 3062 | <source>See complete list</source> |
2904 | <target state="translated">Teljes lista megtekintése</target> | 3063 | <target state="translated">Teljes lista megtekintése</target> |
2905 | 3064 | <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> | |
2906 | <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> | 3065 | </trans-unit> |
2907 | <trans-unit id="2263890353858735493"> | 3066 | <trans-unit id="2263890353858735493"> |
2908 | <source>You are one step away from commenting</source> | 3067 | <source>You are one step away from commenting</source> |
2909 | <target>Egy lépésre van a hozzászólástól</target> | 3068 | <target>Egy lépésre van a hozzászólástól</target> |
2910 | 3069 | <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> | |
2911 | <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> | 3070 | </trans-unit> |
2912 | <trans-unit id="7508177761852352782" datatype="html"> | 3071 | <trans-unit id="7508177761852352782" datatype="html"> |
2913 | <source>You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example).</source> | 3072 | <source>You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example).</source> |
2914 | <target state="new"> You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). </target> | 3073 | <target state="translated">Bármelyik ActivityPub kompatibilis példányon regisztrált fiókkal hozzászólhat (például PeerTube/Mastodon/Pleroma fiókkal).</target> |
2915 | 3074 | <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">65</context></context-group> | |
2916 | <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">65</context></context-group></trans-unit> | 3075 | </trans-unit> |
2917 | <trans-unit id="2958389355547305739" datatype="html"> | 3076 | <trans-unit id="2958389355547305739" datatype="html"> |
2918 | <source>Login to comment</source> | 3077 | <source>Login to comment</source> |
2919 | <target state="translated">Bejelentkezés a hozzászóláshoz</target> | 3078 | <target state="translated">Bejelentkezés a hozzászóláshoz</target> |
2920 | 3079 | <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> | |
2921 | <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> | 3080 | </trans-unit> |
2922 | <trans-unit id="4817080330698362530" datatype="html"> | 3081 | <trans-unit id="4817080330698362530" datatype="html"> |
2923 | <source>Markdown Emoji List</source> | 3082 | <source>Markdown Emoji List</source> |
2924 | <target state="translated">Markdown emodzsi lista</target> | 3083 | <target state="translated">Markdown emodzsi lista</target> |
2925 | 3084 | <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> | |
2926 | <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> | 3085 | </trans-unit> |
2927 | <trans-unit id="2662644497259948010" datatype="html"> | 3086 | <trans-unit id="2662644497259948010" datatype="html"> |
2928 | <source>Comment</source> | 3087 | <source>Comment</source> |
2929 | <target state="translated">Hozzászólás</target> | 3088 | <target state="translated">Hozzászólás</target> |
2930 | 3089 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">44</context></context-group> | |
2931 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">44</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> | 3090 | <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> |
3091 | </trans-unit> | ||
2932 | <trans-unit id="4502286564339177240" datatype="html"> | 3092 | <trans-unit id="4502286564339177240" datatype="html"> |
2933 | <source>Reply</source> | 3093 | <source>Reply</source> |
2934 | <target state="translated">Válasz</target> | 3094 | <target state="translated">Válasz</target> |
2935 | 3095 | <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> | |
2936 | <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> | 3096 | <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> |
3097 | </trans-unit> | ||
2937 | <trans-unit id="3572897237443938692"> | 3098 | <trans-unit id="3572897237443938692"> |
2938 | <source>Highlighted comment</source> | 3099 | <source>Highlighted comment</source> |
2939 | <target>Kiemelt hozzászólás</target> | 3100 | <target>Kiemelt hozzászólás</target> |
2940 | 3101 | <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> | |
2941 | <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> | 3102 | </trans-unit> |
2942 | <trans-unit id="4502286564339177240"> | 3103 | <trans-unit id="4502286564339177240"> |
2943 | <source>Reply</source> | 3104 | <source>Reply</source> |
2944 | <target>Válasz</target> | 3105 | <target>Válasz</target> |
@@ -2947,8 +3108,8 @@ The link will expire within 1 hour.</source> | |||
2947 | <trans-unit id="2447932355167015019" datatype="html"> | 3108 | <trans-unit id="2447932355167015019" datatype="html"> |
2948 | <source>This comment has been deleted</source> | 3109 | <source>This comment has been deleted</source> |
2949 | <target state="translated">Ezt a hozzászólást törölték</target> | 3110 | <target state="translated">Ezt a hozzászólást törölték</target> |
2950 | 3111 | <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> | |
2951 | <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> | 3112 | </trans-unit> |
2952 | <trans-unit id="9031514421077169181" datatype="html"> | 3113 | <trans-unit id="9031514421077169181" datatype="html"> |
2953 | <source>Video redundancies</source> | 3114 | <source>Video redundancies</source> |
2954 | <target state="translated">Videoredundanciák</target> | 3115 | <target state="translated">Videoredundanciák</target> |
@@ -2967,17 +3128,18 @@ The link will expire within 1 hour.</source> | |||
2967 | </trans-unit> | 3128 | </trans-unit> |
2968 | <trans-unit id="658727060940996385" datatype="html"> | 3129 | <trans-unit id="658727060940996385" datatype="html"> |
2969 | <source>Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</source> | 3130 | <source>Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</source> |
2970 | <target state="new">Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</target> | 3131 | <target state="translated">A token megújítása letiltja a korábban beállított kliensek hozzáférést, amíg azokban nem adja meg az új tokent. Folytatja?</target> |
2971 | 3132 | <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> | |
2972 | <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> | 3133 | </trans-unit> |
2973 | <trans-unit id="270726559962362501" datatype="html"> | 3134 | <trans-unit id="270726559962362501" datatype="html"> |
2974 | <source>Renew token</source> | 3135 | <source>Renew token</source> |
2975 | <target state="new">Renew token</target> | 3136 | <target state="new">Renew token</target> |
2976 | 3137 | <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> | |
2977 | <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> | 3138 | <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> |
3139 | </trans-unit> | ||
2978 | <trans-unit id="3029923402309610616" datatype="html"> | 3140 | <trans-unit id="3029923402309610616" datatype="html"> |
2979 | <source>Token renewed. Update your client configuration accordingly.</source> | 3141 | <source>Token renewed. Update your client configuration accordingly.</source> |
2980 | <target state="new">Token renewed. Update your client configuration accordingly.</target> | 3142 | <target state="translated">Token megújítva. Frissítse a kliensek beállításait.</target> |
2981 | <context-group purpose="location"> | 3143 | <context-group purpose="location"> |
2982 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> | 3144 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.ts</context> |
2983 | <context context-type="linenumber">49</context> | 3145 | <context context-type="linenumber">49</context> |
@@ -2986,11 +3148,13 @@ The link will expire within 1 hour.</source> | |||
2986 | <trans-unit id="6658000829978978023" datatype="html"> | 3148 | <trans-unit id="6658000829978978023" datatype="html"> |
2987 | <source>Applications</source> | 3149 | <source>Applications</source> |
2988 | <target state="new">Applications</target> | 3150 | <target state="new">Applications</target> |
2989 | 3151 | <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> | |
2990 | <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> | 3152 | <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> |
3153 | <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> | ||
3154 | </trans-unit> | ||
2991 | <trans-unit id="5302915360176176604" datatype="html"> | 3155 | <trans-unit id="5302915360176176604" datatype="html"> |
2992 | <source>SUBSCRIPTION FEED</source> | 3156 | <source>SUBSCRIPTION FEED</source> |
2993 | <target state="new">SUBSCRIPTION FEED</target> | 3157 | <target state="translated">FELIRATKOZÁSI LISTA</target> |
2994 | <context-group purpose="location"> | 3158 | <context-group purpose="location"> |
2995 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 3159 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
2996 | <context context-type="linenumber">8</context> | 3160 | <context context-type="linenumber">8</context> |
@@ -2998,7 +3162,7 @@ The link will expire within 1 hour.</source> | |||
2998 | </trans-unit> | 3162 | </trans-unit> |
2999 | <trans-unit id="2645809032917283525" datatype="html"> | 3163 | <trans-unit id="2645809032917283525" datatype="html"> |
3000 | <source>Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to.</source> | 3164 | <source>Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to.</source> |
3001 | <target state="new"> Use third-party feed aggregators to retrieve the list of videos from channels you subscribed to. </target> | 3165 | <target state="translated">Használjon külső lista összesítőket, a csatornák videóinak megtekintéséhez amelyekre feliratkozott.</target> |
3002 | <context-group purpose="location"> | 3166 | <context-group purpose="location"> |
3003 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 3167 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
3004 | <context context-type="linenumber">10,12</context> | 3168 | <context context-type="linenumber">10,12</context> |
@@ -3006,7 +3170,7 @@ The link will expire within 1 hour.</source> | |||
3006 | </trans-unit> | 3170 | </trans-unit> |
3007 | <trans-unit id="7944777648309302794" datatype="html"> | 3171 | <trans-unit id="7944777648309302794" datatype="html"> |
3008 | <source>Feed URL</source> | 3172 | <source>Feed URL</source> |
3009 | <target state="new">Feed URL</target> | 3173 | <target state="translated">Lista URL</target> |
3010 | <context-group purpose="location"> | 3174 | <context-group purpose="location"> |
3011 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 3175 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
3012 | <context context-type="linenumber">18</context> | 3176 | <context context-type="linenumber">18</context> |
@@ -3014,7 +3178,7 @@ The link will expire within 1 hour.</source> | |||
3014 | </trans-unit> | 3178 | </trans-unit> |
3015 | <trans-unit id="6086365181226161548" datatype="html"> | 3179 | <trans-unit id="6086365181226161548" datatype="html"> |
3016 | <source>Feed Token</source> | 3180 | <source>Feed Token</source> |
3017 | <target state="new">Feed Token</target> | 3181 | <target state="translated">Lista Token</target> |
3018 | <context-group purpose="location"> | 3182 | <context-group purpose="location"> |
3019 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 3183 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
3020 | <context context-type="linenumber">23</context> | 3184 | <context context-type="linenumber">23</context> |
@@ -3022,7 +3186,7 @@ The link will expire within 1 hour.</source> | |||
3022 | </trans-unit> | 3186 | </trans-unit> |
3023 | <trans-unit id="6492684506192237359" datatype="html"> | 3187 | <trans-unit id="6492684506192237359" datatype="html"> |
3024 | <source>⚠️ Never share your feed token with anyone.</source> | 3188 | <source>⚠️ Never share your feed token with anyone.</source> |
3025 | <target state="new">⚠️ Never share your feed token with anyone.</target> | 3189 | <target state="translated">⚠️ Soha ne adja meg a lista tokenjét senkinek.</target> |
3026 | <context-group purpose="location"> | 3190 | <context-group purpose="location"> |
3027 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> | 3191 | <context context-type="sourcefile">src/app/+my-account/my-account-applications/my-account-applications.component.html</context> |
3028 | <context context-type="linenumber">26</context> | 3192 | <context context-type="linenumber">26</context> |
@@ -3030,7 +3194,7 @@ The link will expire within 1 hour.</source> | |||
3030 | </trans-unit> | 3194 | </trans-unit> |
3031 | <trans-unit id="270726559962362501" datatype="html"> | 3195 | <trans-unit id="270726559962362501" datatype="html"> |
3032 | <source>Renew token</source> | 3196 | <source>Renew token</source> |
3033 | <target state="new">Renew token</target> | 3197 | <target state="translated">Token megújítása</target> |
3034 | <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> | 3198 | <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> |
3035 | </trans-unit> | 3199 | </trans-unit> |
3036 | <trans-unit id="9209781328340965816"> | 3200 | <trans-unit id="9209781328340965816"> |
@@ -3041,8 +3205,9 @@ The link will expire within 1 hour.</source> | |||
3041 | <trans-unit id="6559246822757089203" datatype="html"> | 3205 | <trans-unit id="6559246822757089203" datatype="html"> |
3042 | <source>Clear filters</source> | 3206 | <source>Clear filters</source> |
3043 | <target state="translated">Szűrők törlése</target> | 3207 | <target state="translated">Szűrők törlése</target> |
3044 | 3208 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.component.html</context><context context-type="linenumber">23</context></context-group> | |
3045 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.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/simple-search-input.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 3209 | <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> |
3210 | </trans-unit> | ||
3046 | <trans-unit id="4266779970063047572" datatype="html"> | 3211 | <trans-unit id="4266779970063047572" datatype="html"> |
3047 | <source>Video/Comment/Account</source> | 3212 | <source>Video/Comment/Account</source> |
3048 | <target state="translated">Videó/hozzászólás/fiók</target> | 3213 | <target state="translated">Videó/hozzászólás/fiók</target> |
@@ -3053,7 +3218,6 @@ The link will expire within 1 hour.</source> | |||
3053 | <target>Azonosító</target> | 3218 | <target>Azonosító</target> |
3054 | <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> | 3219 | <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> |
3055 | </trans-unit> | 3220 | </trans-unit> |
3056 | |||
3057 | <trans-unit id="5911214550882917183"> | 3221 | <trans-unit id="5911214550882917183"> |
3058 | <source>State</source> | 3222 | <source>State</source> |
3059 | <target>Állapot</target> | 3223 | <target>Állapot</target> |
@@ -3089,10 +3253,10 @@ The link will expire within 1 hour.</source> | |||
3089 | <trans-unit id="8905995985388209337" datatype="html"> | 3253 | <trans-unit id="8905995985388209337" datatype="html"> |
3090 | <source>Accept</source> | 3254 | <source>Accept</source> |
3091 | <target state="translated">Elfogadás</target> | 3255 | <target state="translated">Elfogadás</target> |
3092 | 3256 | <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> | |
3093 | 3257 | <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> | |
3094 | 3258 | <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> | |
3095 | <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> | 3259 | </trans-unit> |
3096 | <trans-unit id="8415175881466057254"> | 3260 | <trans-unit id="8415175881466057254"> |
3097 | <source>Refuse</source> | 3261 | <source>Refuse</source> |
3098 | <target>Visszautasítás</target> | 3262 | <target>Visszautasítás</target> |
@@ -3121,7 +3285,6 @@ The link will expire within 1 hour.</source> | |||
3121 | </target> | 3285 | </target> |
3122 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">3</context></context-group> | 3286 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">3</context></context-group> |
3123 | </trans-unit> | 3287 | </trans-unit> |
3124 | |||
3125 | <trans-unit id="6571718060636962350" datatype="html"> | 3288 | <trans-unit id="6571718060636962350" datatype="html"> |
3126 | <source>Redundancy allowed <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3289 | <source>Redundancy allowed <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3127 | <target state="translated">Redundancia megengedett <x id="START_TAG_P-SORTICON"/><x id="CLOSE_TAG_P-SORTICON"/></target> | 3290 | <target state="translated">Redundancia megengedett <x id="START_TAG_P-SORTICON"/><x id="CLOSE_TAG_P-SORTICON"/></target> |
@@ -3130,8 +3293,8 @@ The link will expire within 1 hour.</source> | |||
3130 | <trans-unit id="9160510009013134726" datatype="html"> | 3293 | <trans-unit id="9160510009013134726" datatype="html"> |
3131 | <source>Unfollow</source> | 3294 | <source>Unfollow</source> |
3132 | <target state="new">Unfollow</target> | 3295 | <target state="new">Unfollow</target> |
3133 | 3296 | <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> | |
3134 | <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> | 3297 | </trans-unit> |
3135 | <trans-unit id="8246779176913476983" datatype="html"> | 3298 | <trans-unit id="8246779176913476983" datatype="html"> |
3136 | <source>Open instance in a new tab</source> | 3299 | <source>Open instance in a new tab</source> |
3137 | <target state="translated">Példány megnyitása új lapon</target> | 3300 | <target state="translated">Példány megnyitása új lapon</target> |
@@ -3142,23 +3305,21 @@ The link will expire within 1 hour.</source> | |||
3142 | <trans-unit id="9132918641931433659" datatype="html"> | 3305 | <trans-unit id="9132918641931433659" datatype="html"> |
3143 | <source>No host found matching current filters.</source> | 3306 | <source>No host found matching current filters.</source> |
3144 | <target state="translated">Nem található a jelenlegi szűrőkre illeszkedő gép.</target> | 3307 | <target state="translated">Nem található a jelenlegi szűrőkre illeszkedő gép.</target> |
3145 | 3308 | <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> | |
3146 | <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> | 3309 | </trans-unit> |
3147 | <trans-unit id="7274241885665071790" datatype="html"> | 3310 | <trans-unit id="7274241885665071790" datatype="html"> |
3148 | <source>Your instance is not following anyone.</source> | 3311 | <source>Your instance is not following anyone.</source> |
3149 | <target state="translated">Az Ön példánya nem követ senkit sem.</target> | 3312 | <target state="translated">Az Ön példánya nem követ senkit sem.</target> |
3150 | 3313 | <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> | |
3151 | <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> | 3314 | </trans-unit> |
3152 | <trans-unit id="4774348799569692380" datatype="html"> | 3315 | <trans-unit id="4774348799569692380" datatype="html"> |
3153 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> hosts</source> | 3316 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> hosts</source> |
3154 | <target state="translated"><x id="INTERPOLATION"/> – <x id="INTERPOLATION_1"/> / <x id="INTERPOLATION_2"/> gép megjelenítése</target> | 3317 | <target state="translated"><x id="INTERPOLATION"/> – <x id="INTERPOLATION_1"/> / <x id="INTERPOLATION_2"/> gép megjelenítése</target> |
3155 | <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> | 3318 | <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> |
3156 | </trans-unit> | 3319 | </trans-unit> |
3157 | |||
3158 | |||
3159 | <trans-unit id="9216117865911519658" datatype="html"> | 3320 | <trans-unit id="9216117865911519658" datatype="html"> |
3160 | <source>Action</source> | 3321 | <source>Action</source> |
3161 | <target state="new">Action</target> | 3322 | <target state="translated">Művelet</target> |
3162 | <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> | 3323 | <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> |
3163 | <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> | 3324 | <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> |
3164 | <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> | 3325 | <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> |
@@ -3184,8 +3345,9 @@ The link will expire within 1 hour.</source> | |||
3184 | <trans-unit id="8286337167859377104"> | 3345 | <trans-unit id="8286337167859377104"> |
3185 | <source>Create user</source> | 3346 | <source>Create user</source> |
3186 | <target>Felhasználó létrehozása</target> | 3347 | <target>Felhasználó létrehozása</target> |
3187 | 3348 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">96</context></context-group> | |
3188 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">96</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 3349 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">20</context></context-group> |
3350 | </trans-unit> | ||
3189 | <trans-unit id="8363291180171434623" datatype="html"> | 3351 | <trans-unit id="8363291180171434623" datatype="html"> |
3190 | <source>Table parameters</source> | 3352 | <source>Table parameters</source> |
3191 | <target state="translated">Táblázat paraméterei</target> | 3353 | <target state="translated">Táblázat paraméterei</target> |
@@ -3204,14 +3366,15 @@ The link will expire within 1 hour.</source> | |||
3204 | <trans-unit id="5248717555542428023"> | 3366 | <trans-unit id="5248717555542428023"> |
3205 | <source>Username</source> | 3367 | <source>Username</source> |
3206 | <target>Felhasználónév</target> | 3368 | <target>Felhasználónév</target> |
3207 | 3369 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group> | |
3208 | 3370 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group> | |
3209 | 3371 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">111</context></context-group> | |
3210 | 3372 | <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> | |
3211 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/users/user-list/user-list.component.ts</context><context context-type="linenumber">111</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> | 3373 | <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> |
3374 | </trans-unit> | ||
3212 | <trans-unit id="5428411040014095392" datatype="html"> | 3375 | <trans-unit id="5428411040014095392" datatype="html"> |
3213 | <source>e.g. jane_doe</source> | 3376 | <source>e.g. jane_doe</source> |
3214 | <target state="new">e.g. jane_doe</target> | 3377 | <target state="translated">pl. kovacs_janos</target> |
3215 | <note priority="1" from="description">Username choice placeholder in the registration form</note> | 3378 | <note priority="1" from="description">Username choice placeholder in the registration form</note> |
3216 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">27</context></context-group> | 3379 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">27</context></context-group> |
3217 | </trans-unit> | 3380 | </trans-unit> |
@@ -3236,9 +3399,10 @@ The link will expire within 1 hour.</source> | |||
3236 | <trans-unit id="4145496584631696119"> | 3399 | <trans-unit id="4145496584631696119"> |
3237 | <source>Role</source> | 3400 | <source>Role</source> |
3238 | <target>Szerep</target> | 3401 | <target>Szerep</target> |
3239 | 3402 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> | |
3240 | 3403 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> | |
3241 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/users/user-list/user-list.component.ts</context><context context-type="linenumber">114</context></context-group></trans-unit> | 3404 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">114</context></context-group> |
3405 | </trans-unit> | ||
3242 | <trans-unit id="7046347992315328430" datatype="html"> | 3406 | <trans-unit id="7046347992315328430" datatype="html"> |
3243 | <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> | 3407 | <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> |
3244 | <target state="translated">Az átkódolás engedélyezve van. A videokvóta csak az <x id="START_TAG_STRONG"/>eredeti <x id="CLOSE_TAG_STRONG"/> videó méretét veszi figyelembe. <x id="LINE_BREAK"/> Ez a felhasználó legfeljebb ~ <x id="INTERPOLATION"/>-ot tölthet fel. </target> | 3408 | <target state="translated">Az átkódolás engedélyezve van. A videokvóta csak az <x id="START_TAG_STRONG"/>eredeti <x id="CLOSE_TAG_STRONG"/> videó méretét veszi figyelembe. <x id="LINE_BREAK"/> Ez a felhasználó legfeljebb ~ <x id="INTERPOLATION"/>-ot tölthet fel. </target> |
@@ -3254,13 +3418,14 @@ The link will expire within 1 hour.</source> | |||
3254 | </trans-unit> | 3418 | </trans-unit> |
3255 | <trans-unit id="2622255144026150901" datatype="html"> | 3419 | <trans-unit id="2622255144026150901" datatype="html"> |
3256 | <source>Auth plugin</source> | 3420 | <source>Auth plugin</source> |
3257 | <target state="new">Auth plugin</target> | 3421 | <target state="translated">Hitelesítési bővítmény</target> |
3258 | 3422 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group> | |
3259 | 3423 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group> | |
3260 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/users/user-list/user-list.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 3424 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">121</context></context-group> |
3425 | </trans-unit> | ||
3261 | <trans-unit id="588099657508661970" datatype="html"> | 3426 | <trans-unit id="588099657508661970" datatype="html"> |
3262 | <source>None (local authentication)</source> | 3427 | <source>None (local authentication)</source> |
3263 | <target state="new">None (local authentication)</target> | 3428 | <target state="translated">Nincs (helyi hitelesítés)</target> |
3264 | <context-group purpose="location"> | 3429 | <context-group purpose="location"> |
3265 | <context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context> | 3430 | <context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context> |
3266 | <context context-type="linenumber">192</context> | 3431 | <context context-type="linenumber">192</context> |
@@ -3354,7 +3519,7 @@ The link will expire within 1 hour.</source> | |||
3354 | </trans-unit> | 3519 | </trans-unit> |
3355 | <trans-unit id="6124612368324200166" datatype="html"> | 3520 | <trans-unit id="6124612368324200166" datatype="html"> |
3356 | <source>Banned users</source> | 3521 | <source>Banned users</source> |
3357 | <target state="new">Banned users</target> | 3522 | <target state="translated">Kitiltott felhasználók</target> |
3358 | <context-group purpose="location"> | 3523 | <context-group purpose="location"> |
3359 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> | 3524 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> |
3360 | <context context-type="linenumber">40</context> | 3525 | <context context-type="linenumber">40</context> |
@@ -3374,45 +3539,56 @@ The link will expire within 1 hour.</source> | |||
3374 | <trans-unit id="1868606282505332204" datatype="html"> | 3539 | <trans-unit id="1868606282505332204" datatype="html"> |
3375 | <source>Reports</source> | 3540 | <source>Reports</source> |
3376 | <target state="translated">Jelentések</target> | 3541 | <target state="translated">Jelentések</target> |
3377 | 3542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">53</context></context-group> | |
3378 | 3543 | <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> | |
3379 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">53</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">37</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> | 3544 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">37</context></context-group> |
3545 | <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> | ||
3546 | </trans-unit> | ||
3380 | <trans-unit id="746099155736913817" datatype="html"> | 3547 | <trans-unit id="746099155736913817" datatype="html"> |
3381 | <source>Video blocks</source> | 3548 | <source>Video blocks</source> |
3382 | <target state="translated">Videó blokkolások</target> | 3549 | <target state="translated">Videó blokkolások</target> |
3383 | 3550 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">60</context></context-group> | |
3384 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">60</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> | 3551 | <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> |
3552 | </trans-unit> | ||
3385 | <trans-unit id="7427986413651551775" datatype="html"> | 3553 | <trans-unit id="7427986413651551775" datatype="html"> |
3386 | <source>Video comments</source> | 3554 | <source>Video comments</source> |
3387 | <target state="new">Video comments</target> | 3555 | <target state="new">Video comments</target> |
3388 | 3556 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">67</context></context-group> | |
3389 | 3557 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">86</context></context-group> | |
3390 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">86</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3558 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group> |
3559 | </trans-unit> | ||
3391 | <trans-unit id="7815838401315213887" datatype="html"> | 3560 | <trans-unit id="7815838401315213887" datatype="html"> |
3392 | <source>Muted accounts</source> | 3561 | <source>Muted accounts</source> |
3393 | <target state="translated">Némított fiókok</target> | 3562 | <target state="translated">Némított fiókok</target> |
3394 | 3563 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">74</context></context-group> | |
3395 | 3564 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">98</context></context-group> | |
3396 | 3565 | <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> | |
3397 | 3566 | <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> | |
3398 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">98</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> | 3567 | <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> |
3568 | <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> | ||
3569 | </trans-unit> | ||
3399 | <trans-unit id="5668793810321242853" datatype="html"> | 3570 | <trans-unit id="5668793810321242853" datatype="html"> |
3400 | <source>Muted servers</source> | 3571 | <source>Muted servers</source> |
3401 | <target state="translated">Némított kiszolgálók</target> | 3572 | <target state="translated">Némított kiszolgálók</target> |
3402 | 3573 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">81</context></context-group> | |
3403 | 3574 | <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> | |
3404 | 3575 | <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> | |
3405 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">81</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> | 3576 | <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> |
3577 | <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> | ||
3578 | </trans-unit> | ||
3406 | <trans-unit id="4555457172864212828" datatype="html"> | 3579 | <trans-unit id="4555457172864212828" datatype="html"> |
3407 | <source>Users</source> | 3580 | <source>Users</source> |
3408 | <target state="translated">Felhasználók</target> | 3581 | <target state="translated">Felhasználók</target> |
3409 | 3582 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">88</context></context-group> | |
3410 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">88</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 3583 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group> |
3584 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group> | ||
3585 | </trans-unit> | ||
3411 | <trans-unit id="3008420115644088420" datatype="html"> | 3586 | <trans-unit id="3008420115644088420" datatype="html"> |
3412 | <source>Configuration</source> | 3587 | <source>Configuration</source> |
3413 | <target state="translated">Beállítások</target> | 3588 | <target state="translated">Beállítások</target> |
3414 | 3589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">95</context></context-group> | |
3415 | <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/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 3590 | <context-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> |
3591 | </trans-unit> | ||
3416 | <trans-unit id="746099155736913817" datatype="html"> | 3592 | <trans-unit id="746099155736913817" datatype="html"> |
3417 | <source>Video blocks</source> | 3593 | <source>Video blocks</source> |
3418 | <target state="translated">Videó tiltások</target> | 3594 | <target state="translated">Videó tiltások</target> |
@@ -3485,7 +3661,7 @@ The link will expire within 1 hour.</source> | |||
3485 | </trans-unit> | 3661 | </trans-unit> |
3486 | <trans-unit id="1451763834047485033" datatype="html"> | 3662 | <trans-unit id="1451763834047485033" datatype="html"> |
3487 | <source>Select this row</source> | 3663 | <source>Select this row</source> |
3488 | <target state="new">Select this row</target> | 3664 | <target state="translated">Sor kiválasztása</target> |
3489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">53</context></context-group> | 3665 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">53</context></context-group> |
3490 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">74</context></context-group> | 3666 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">74</context></context-group> |
3491 | </trans-unit> | 3667 | </trans-unit> |
@@ -3497,8 +3673,10 @@ The link will expire within 1 hour.</source> | |||
3497 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">65</context></context-group> | 3673 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">65</context></context-group> |
3498 | <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> | 3674 | <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> |
3499 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">41</context></context-group> | 3675 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">41</context></context-group> |
3500 | </trans-unit><trans-unit id="8390803680962035202" datatype="html"> | 3676 | </trans-unit> |
3501 | <source>Follower</source><target state="new">Follower</target> | 3677 | <trans-unit id="8390803680962035202" datatype="html"> |
3678 | <source>Follower</source> | ||
3679 | <target state="translated">Követő</target> | ||
3502 | <context-group purpose="location"> | 3680 | <context-group purpose="location"> |
3503 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> | 3681 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> |
3504 | <context context-type="linenumber">24</context> | 3682 | <context context-type="linenumber">24</context> |
@@ -3511,17 +3689,17 @@ The link will expire within 1 hour.</source> | |||
3511 | </trans-unit> | 3689 | </trans-unit> |
3512 | <trans-unit id="7266085473379376028" datatype="html"> | 3690 | <trans-unit id="7266085473379376028" datatype="html"> |
3513 | <source>No comments found matching current filters.</source> | 3691 | <source>No comments found matching current filters.</source> |
3514 | <target state="new">No comments found matching current filters.</target> | 3692 | <target state="translated">Nem található a jelenlegi szűrőnek megfelelő hozzászólás.</target> |
3515 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">107</context></context-group> | 3693 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">107</context></context-group> |
3516 | </trans-unit> | 3694 | </trans-unit> |
3517 | <trans-unit id="2398388496754671928" datatype="html"> | 3695 | <trans-unit id="2398388496754671928" datatype="html"> |
3518 | <source>No comments found.</source> | 3696 | <source>No comments found.</source> |
3519 | <target state="new">No comments found.</target> | 3697 | <target state="translated">Nem található hozzászólás.</target> |
3520 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">108</context></context-group> | 3698 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">108</context></context-group> |
3521 | </trans-unit> | 3699 | </trans-unit> |
3522 | <trans-unit id="4604870995665811499" datatype="html"> | 3700 | <trans-unit id="4604870995665811499" datatype="html"> |
3523 | <source>Local comments</source> | 3701 | <source>Local comments</source> |
3524 | <target state="new">Local comments</target> | 3702 | <target state="translated">Helyi hozzászólások</target> |
3525 | <context-group purpose="location"> | 3703 | <context-group purpose="location"> |
3526 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> | 3704 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> |
3527 | <context context-type="linenumber">48</context> | 3705 | <context context-type="linenumber">48</context> |
@@ -3529,7 +3707,7 @@ The link will expire within 1 hour.</source> | |||
3529 | </trans-unit> | 3707 | </trans-unit> |
3530 | <trans-unit id="2721988499779041837" datatype="html"> | 3708 | <trans-unit id="2721988499779041837" datatype="html"> |
3531 | <source>Remote comments</source> | 3709 | <source>Remote comments</source> |
3532 | <target state="new">Remote comments</target> | 3710 | <target state="translated">Távoli hozzászólások</target> |
3533 | <context-group purpose="location"> | 3711 | <context-group purpose="location"> |
3534 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> | 3712 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> |
3535 | <context context-type="linenumber">52</context> | 3713 | <context context-type="linenumber">52</context> |
@@ -3538,38 +3716,38 @@ The link will expire within 1 hour.</source> | |||
3538 | <trans-unit id="1420624050293070194" datatype="html"> | 3716 | <trans-unit id="1420624050293070194" datatype="html"> |
3539 | <source>No abuses found matching current filters.</source> | 3717 | <source>No abuses found matching current filters.</source> |
3540 | <target state="translated">Nem található a jelenlegi szűrőnek megfelelő visszaélési jelentés.</target> | 3718 | <target state="translated">Nem található a jelenlegi szűrőnek megfelelő visszaélési jelentés.</target> |
3541 | 3719 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">166</context></context-group> | |
3542 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> | 3720 | </trans-unit> |
3543 | <trans-unit id="639328713281980021" datatype="html"> | 3721 | <trans-unit id="639328713281980021" datatype="html"> |
3544 | <source>No abuses found.</source> | 3722 | <source>No abuses found.</source> |
3545 | <target state="translated">Nem található visszaélési jelentés.</target> | 3723 | <target state="translated">Nem található visszaélési jelentés.</target> |
3546 | 3724 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">167</context></context-group> | |
3547 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> | 3725 | </trans-unit> |
3548 | <trans-unit id="1807029821872995706" datatype="html"> | 3726 | <trans-unit id="1807029821872995706" datatype="html"> |
3549 | <source>Unsolved reports</source> | 3727 | <source>Unsolved reports</source> |
3550 | <target state="new">Unsolved reports</target> | 3728 | <target state="translated">Megoldatlan jelentések</target> |
3551 | 3729 | <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> | |
3552 | <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> | 3730 | </trans-unit> |
3553 | <trans-unit id="2570256912317308673" datatype="html"> | 3731 | <trans-unit id="2570256912317308673" datatype="html"> |
3554 | <source>Accepted reports</source> | 3732 | <source>Accepted reports</source> |
3555 | <target state="new">Accepted reports</target> | 3733 | <target state="translated">Elfogadott jelentések</target> |
3556 | 3734 | <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> | |
3557 | <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> | 3735 | </trans-unit> |
3558 | <trans-unit id="4335414817109654558" datatype="html"> | 3736 | <trans-unit id="4335414817109654558" datatype="html"> |
3559 | <source>Refused reports</source> | 3737 | <source>Refused reports</source> |
3560 | <target state="new">Refused reports</target> | 3738 | <target state="translated">Elutasított jelentések</target> |
3561 | 3739 | <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> | |
3562 | <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> | 3740 | </trans-unit> |
3563 | <trans-unit id="5604806676748121035" datatype="html"> | 3741 | <trans-unit id="5604806676748121035" datatype="html"> |
3564 | <source>Reports with blocked videos</source> | 3742 | <source>Reports with blocked videos</source> |
3565 | <target state="new">Reports with blocked videos</target> | 3743 | <target state="translated">Jelentések letiltott videókkal</target> |
3566 | 3744 | <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> | |
3567 | <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> | 3745 | </trans-unit> |
3568 | <trans-unit id="5105869928182826553" datatype="html"> | 3746 | <trans-unit id="5105869928182826553" datatype="html"> |
3569 | <source>Reports with deleted videos</source> | 3747 | <source>Reports with deleted videos</source> |
3570 | <target state="new">Reports with deleted videos</target> | 3748 | <target state="translated">Jelentések törölt videókkal</target> |
3571 | 3749 | <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> | |
3572 | <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> | 3750 | </trans-unit> |
3573 | <trans-unit id="4678289986918934018" datatype="html"> | 3751 | <trans-unit id="4678289986918934018" datatype="html"> |
3574 | <source>Block reason:</source> | 3752 | <source>Block reason:</source> |
3575 | <target state="translated">Tiltás oka:</target> | 3753 | <target state="translated">Tiltás oka:</target> |
@@ -3587,14 +3765,14 @@ The link will expire within 1 hour.</source> | |||
3587 | </trans-unit> | 3765 | </trans-unit> |
3588 | <trans-unit id="7755288609601798418" datatype="html"> | 3766 | <trans-unit id="7755288609601798418" datatype="html"> |
3589 | <source>Automatic blocks</source> | 3767 | <source>Automatic blocks</source> |
3590 | <target state="new">Automatic blocks</target> | 3768 | <target state="translated">Automatikus tiltások</target> |
3591 | 3769 | <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">32</context></context-group> | |
3592 | <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">32</context></context-group></trans-unit> | 3770 | </trans-unit> |
3593 | <trans-unit id="6510868134640657079" datatype="html"> | 3771 | <trans-unit id="6510868134640657079" datatype="html"> |
3594 | <source>Manual blocks</source> | 3772 | <source>Manual blocks</source> |
3595 | <target state="new">Manual blocks</target> | 3773 | <target state="translated">Kézi tiltások</target> |
3596 | 3774 | <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">36</context></context-group> | |
3597 | <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">36</context></context-group></trans-unit> | 3775 | </trans-unit> |
3598 | <trans-unit id="2143435845912984377" datatype="html"> | 3776 | <trans-unit id="2143435845912984377" datatype="html"> |
3599 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> blocked videos</source> | 3777 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> blocked videos</source> |
3600 | <target state="translated"><x id="INTERPOLATION"/> – <x id="INTERPOLATION_1"/> / <x id="INTERPOLATION_2"/> tiltott videó megjelenítése</target> | 3778 | <target state="translated"><x id="INTERPOLATION"/> – <x id="INTERPOLATION_1"/> / <x id="INTERPOLATION_2"/> tiltott videó megjelenítése</target> |
@@ -3630,20 +3808,23 @@ The link will expire within 1 hour.</source> | |||
3630 | <trans-unit id="1258618443362430782" datatype="html"> | 3808 | <trans-unit id="1258618443362430782" datatype="html"> |
3631 | <source><x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 3809 | <source><x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
3632 | <target state="translated"><x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 jelentés} other {{{ abuse.countReportsForReporter }} jelentés}}"/><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> | 3810 | <target state="translated"><x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 jelentés} other {{{ abuse.countReportsForReporter }} jelentés}}"/><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> |
3633 | 3811 | <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> | |
3634 | <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> | 3812 | <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> |
3813 | </trans-unit> | ||
3635 | <trans-unit id="6540177673229220400" datatype="html"> | 3814 | <trans-unit id="6540177673229220400" datatype="html"> |
3636 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> | 3815 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> |
3637 | <target state="translated">{VAR_PLURAL, plural, =1 {1 jelentés} other {<x id="INTERPOLATION"/> jelentés}}</target> | 3816 | <target state="translated">{VAR_PLURAL, plural, =1 {1 jelentés} other {<x id="INTERPOLATION"/> jelentés}}</target> |
3638 | 3817 | <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> | |
3639 | <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> | 3818 | <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> |
3819 | </trans-unit> | ||
3640 | <trans-unit id="6549265851868599441"> | 3820 | <trans-unit id="6549265851868599441"> |
3641 | <source>Video</source> | 3821 | <source>Video</source> |
3642 | <target>Videó</target> | 3822 | <target>Videó</target> |
3643 | 3823 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">43</context></context-group> | |
3644 | 3824 | <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> | |
3645 | 3825 | <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> | |
3646 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">43</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> | 3826 | <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> |
3827 | </trans-unit> | ||
3647 | <trans-unit id="2662644497259948010" datatype="html"> | 3828 | <trans-unit id="2662644497259948010" datatype="html"> |
3648 | <source>Comment</source> | 3829 | <source>Comment</source> |
3649 | <target state="new">Comment</target> | 3830 | <target state="new">Comment</target> |
@@ -3736,11 +3917,11 @@ The link will expire within 1 hour.</source> | |||
3736 | <trans-unit id="2381859602529023966"> | 3917 | <trans-unit id="2381859602529023966"> |
3737 | <source>Instance</source> | 3918 | <source>Instance</source> |
3738 | <target>Példány</target> | 3919 | <target>Példány</target> |
3739 | 3920 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">5</context></context-group> | |
3740 | 3921 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">192</context></context-group> | |
3741 | 3922 | <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> | |
3742 | 3923 | <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> | |
3743 | <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">192</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> | 3924 | </trans-unit> |
3744 | <trans-unit id="1300704815627663264"> | 3925 | <trans-unit id="1300704815627663264"> |
3745 | <source>Muted at <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3926 | <source>Muted at <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3746 | <target>Némítás ideje <x id="START_TAG_P-SORTICON"/><x id="CLOSE_TAG_P-SORTICON"/></target> | 3927 | <target>Némítás ideje <x id="START_TAG_P-SORTICON"/><x id="CLOSE_TAG_P-SORTICON"/></target> |
@@ -3778,8 +3959,8 @@ The link will expire within 1 hour.</source> | |||
3778 | <trans-unit id="4917252294930256268" datatype="html"> | 3959 | <trans-unit id="4917252294930256268" datatype="html"> |
3779 | <source>It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers.</source> | 3960 | <source>It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers.</source> |
3780 | <target state="translated">Úgy tűnik, hogy nem HTTPS kiszolgálón van. A TLS-nek bekapcsolva kell lennie a webkiszolgálóján, hogy kiszolgálókat követhessen.</target> | 3961 | <target state="translated">Úgy tűnik, hogy nem HTTPS kiszolgálón van. A TLS-nek bekapcsolva kell lennie a webkiszolgálóján, hogy kiszolgálókat követhessen.</target> |
3781 | 3962 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context><context context-type="linenumber">28</context></context-group> | |
3782 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 3963 | </trans-unit> |
3783 | <trans-unit id="4058814854824495833" datatype="html"> | 3964 | <trans-unit id="4058814854824495833" datatype="html"> |
3784 | <source>Mute domains</source> | 3965 | <source>Mute domains</source> |
3785 | <target state="translated">Tartományok némítása</target> | 3966 | <target state="translated">Tartományok némítása</target> |
@@ -3846,10 +4027,14 @@ The link will expire within 1 hour.</source> | |||
3846 | <trans-unit id="4580988005648117665" datatype="html"> | 4027 | <trans-unit id="4580988005648117665" datatype="html"> |
3847 | <source>Search</source> | 4028 | <source>Search</source> |
3848 | <target state="translated">Keresés</target> | 4029 | <target state="translated">Keresés</target> |
3849 | 4030 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">5</context></context-group> | |
3850 | 4031 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">12</context></context-group> | |
3851 | 4032 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">260</context></context-group> | |
3852 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">5</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">260</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> | 4033 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">8</context></context-group> |
4034 | <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> | ||
4035 | <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> | ||
4036 | <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> | ||
4037 | </trans-unit> | ||
3853 | <trans-unit id="8630916846096019339" datatype="html"> | 4038 | <trans-unit id="8630916846096019339" datatype="html"> |
3854 | <source>Users can resolve distant content</source> | 4039 | <source>Users can resolve distant content</source> |
3855 | <target state="translated">A felhasználók feloldhatják a távoli tartalmat</target> | 4040 | <target state="translated">A felhasználók feloldhatják a távoli tartalmat</target> |
@@ -3864,10 +4049,11 @@ The link will expire within 1 hour.</source> | |||
3864 | <trans-unit id="4930506384627295710" datatype="html"> | 4049 | <trans-unit id="4930506384627295710" datatype="html"> |
3865 | <source>Settings</source> | 4050 | <source>Settings</source> |
3866 | <target state="translated">Beállítások</target> | 4051 | <target state="translated">Beállítások</target> |
3867 | 4052 | <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">27</context></context-group> | |
3868 | 4053 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">53</context></context-group> | |
3869 | 4054 | <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> | |
3870 | <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">27</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">53</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> | 4055 | <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> |
4056 | </trans-unit> | ||
3871 | <trans-unit id="4786000816576841850" datatype="html"> | 4057 | <trans-unit id="4786000816576841850" datatype="html"> |
3872 | <source>Display settings</source> | 4058 | <source>Display settings</source> |
3873 | <target state="translated">Megjelenítési beállítások</target> | 4059 | <target state="translated">Megjelenítési beállítások</target> |
@@ -3876,31 +4062,32 @@ The link will expire within 1 hour.</source> | |||
3876 | <trans-unit id="4474510732215437338" datatype="html"> | 4062 | <trans-unit id="4474510732215437338" datatype="html"> |
3877 | <source>Uninstall</source> | 4063 | <source>Uninstall</source> |
3878 | <target state="translated">Eltávolítás</target> | 4064 | <target state="translated">Eltávolítás</target> |
3879 | 4065 | <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">36</context></context-group> | |
3880 | <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">36</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">111</context></context-group></trans-unit> | 4066 | <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> |
3881 | 4067 | </trans-unit> | |
3882 | <trans-unit id="2144158274184161635" datatype="html"> | 4068 | <trans-unit id="2144158274184161635" datatype="html"> |
3883 | <source>Videos with the most interactions for recent videos</source> | 4069 | <source>Videos with the most interactions for recent videos</source> |
3884 | <target state="new">Videos with the most interactions for recent videos</target> | 4070 | <target state="translated">Friss videók a legtöbb interakcióval</target> |
3885 | 4071 | <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> | |
3886 | <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> | 4072 | </trans-unit> |
3887 | <trans-unit id="8312243926314494468" datatype="html"> | 4073 | <trans-unit id="8312243926314494468" datatype="html"> |
3888 | <source>Videos with the most views during the last 24 hours</source> | 4074 | <source>Videos with the most views during the last 24 hours</source> |
3889 | <target state="new">Videos with the most views during the last 24 hours</target> | 4075 | <target state="translated">Az elmúlt 24 órában legtöbbször megtekintett videók</target> |
3890 | 4076 | <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> | |
3891 | <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"> | 4077 | </trans-unit> |
3892 | <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> | 4078 | <trans-unit id="8731139416455609016" datatype="html"> |
4079 | <source>Videos with the most views during the last <x id="PH" equiv-text="this.trendingDays"/> days</source> | ||
4080 | <target state="translated">A legutóbbi <x id="PH" equiv-text="this.trendingDays"/> napban legtöbbször megtekintett videók</target> | ||
3893 | <context-group purpose="location"> | 4081 | <context-group purpose="location"> |
3894 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> | 4082 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> |
3895 | <context context-type="linenumber">209</context> | 4083 | <context context-type="linenumber">209</context> |
3896 | </context-group> | 4084 | </context-group> |
3897 | </trans-unit> | 4085 | </trans-unit> |
3898 | |||
3899 | <trans-unit id="1671858302647356245" datatype="html"> | 4086 | <trans-unit id="1671858302647356245" datatype="html"> |
3900 | <source>Videos that have the most likes</source> | 4087 | <source>Videos that have the most likes</source> |
3901 | <target state="new">Videos that have the most likes</target> | 4088 | <target state="translated">A legtöbbször kedvelt videók</target> |
3902 | 4089 | <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> | |
3903 | <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> | 4090 | </trans-unit> |
3904 | <trans-unit id="2006841089844688970" datatype="html"> | 4091 | <trans-unit id="2006841089844688970" datatype="html"> |
3905 | <source>To load your new installed plugins or themes, refresh the page.</source> | 4092 | <source>To load your new installed plugins or themes, refresh the page.</source> |
3906 | <target state="translated">Az új telepített bővítmények vagy témák betöltéséhez frissítse az oldalt.</target> | 4093 | <target state="translated">Az új telepített bővítmények vagy témák betöltéséhez frissítse az oldalt.</target> |
@@ -3910,14 +4097,15 @@ The link will expire within 1 hour.</source> | |||
3910 | <source>Popular</source> | 4097 | <source>Popular</source> |
3911 | <target state="translated">Népszerű</target> | 4098 | <target state="translated">Népszerű</target> |
3912 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">16</context></context-group> | 4099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">16</context></context-group> |
3913 | </trans-unit><trans-unit id="1780056719120519633" datatype="html"> | 4100 | </trans-unit> |
3914 | <source> <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 }}"/>" </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> | 4101 | <trans-unit id="1780056719120519633" datatype="html"> |
4102 | <source><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 }}"/>" </source> | ||
4103 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {találat} other {találat}}"/> erre: "<x id="INTERPOLATION_1" equiv-text="{{ search }}"/>" </target> | ||
3915 | <context-group purpose="location"> | 4104 | <context-group purpose="location"> |
3916 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> | 4105 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> |
3917 | <context context-type="linenumber">22,24</context> | 4106 | <context context-type="linenumber">22,24</context> |
3918 | </context-group> | 4107 | </context-group> |
3919 | </trans-unit> | 4108 | </trans-unit> |
3920 | |||
3921 | <trans-unit id="3148804384763272950" datatype="html"> | 4109 | <trans-unit id="3148804384763272950" datatype="html"> |
3922 | <source>{VAR_PLURAL, plural, =1 {result} other {results} }</source> | 4110 | <source>{VAR_PLURAL, plural, =1 {result} other {results} }</source> |
3923 | <target state="translated">{VAR_PLURAL, plural, =1 {találat} other {találat} }</target> | 4111 | <target state="translated">{VAR_PLURAL, plural, =1 {találat} other {találat} }</target> |
@@ -3947,56 +4135,59 @@ The link will expire within 1 hour.</source> | |||
3947 | <trans-unit id="3229595422546554334" datatype="html"> | 4135 | <trans-unit id="3229595422546554334" datatype="html"> |
3948 | <source>Jobs</source> | 4136 | <source>Jobs</source> |
3949 | <target state="translated">Feladatok</target> | 4137 | <target state="translated">Feladatok</target> |
3950 | 4138 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">3</context></context-group> | |
3951 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 4139 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">26</context></context-group> |
4140 | </trans-unit> | ||
3952 | <trans-unit id="4804785061014590286" datatype="html"> | 4141 | <trans-unit id="4804785061014590286" datatype="html"> |
3953 | <source>Logs</source> | 4142 | <source>Logs</source> |
3954 | <target state="translated">Naplók</target> | 4143 | <target state="translated">Naplók</target> |
3955 | 4144 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">5</context></context-group> | |
3956 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">5</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 4145 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">37</context></context-group> |
4146 | </trans-unit> | ||
3957 | <trans-unit id="3422890808980876594" datatype="html"> | 4147 | <trans-unit id="3422890808980876594" datatype="html"> |
3958 | <source>Debug</source> | 4148 | <source>Debug</source> |
3959 | <target state="translated">Hibakeresés</target> | 4149 | <target state="translated">Hibakeresés</target> |
3960 | 4150 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">7</context></context-group> | |
3961 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">7</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 4151 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">48</context></context-group> |
4152 | </trans-unit> | ||
3962 | <trans-unit id="8949443215142664126" datatype="html"> | 4153 | <trans-unit id="8949443215142664126" datatype="html"> |
3963 | <source>Delete this comment</source> | 4154 | <source>Delete this comment</source> |
3964 | <target state="new">Delete this comment</target> | 4155 | <target state="translated">Hozzászólás törlése</target> |
3965 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">75</context></context-group> | 4156 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">75</context></context-group> |
3966 | </trans-unit> | 4157 | </trans-unit> |
3967 | <trans-unit id="3327751240218085797" datatype="html"> | 4158 | <trans-unit id="3327751240218085797" datatype="html"> |
3968 | <source>Delete all comments of this account</source> | 4159 | <source>Delete all comments of this account</source> |
3969 | <target state="new">Delete all comments of this account</target> | 4160 | <target state="translated">Ennek a felhasználónak minden hozzászólásának törlése</target> |
3970 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">81</context></context-group> | 4161 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">81</context></context-group> |
3971 | </trans-unit> | 4162 | </trans-unit> |
3972 | <trans-unit id="2850960459131251840" datatype="html"> | 4163 | <trans-unit id="2850960459131251840" datatype="html"> |
3973 | <source>Comments are deleted after a few minutes</source> | 4164 | <source>Comments are deleted after a few minutes</source> |
3974 | <target state="new">Comments are deleted after a few minutes</target> | 4165 | <target state="translated">A hozzászólások egy pár perc alatt törlődnek</target> |
3975 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">82</context></context-group> | 4166 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">82</context></context-group> |
3976 | </trans-unit> | 4167 | </trans-unit> |
3977 | <trans-unit id="545410448674339480" datatype="html"> | 4168 | <trans-unit id="545410448674339480" datatype="html"> |
3978 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source> | 4169 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source> |
3979 | <target state="new"><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</target> | 4170 | <target state="translated"><x id="PH" equiv-text="commentArgs.length"/> hozzászólás törölve.</target> |
3980 | 4171 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">143</context></context-group> | |
3981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">143</context></context-group></trans-unit> | 4172 | </trans-unit> |
3982 | <trans-unit id="379090446060940062" datatype="html"> | 4173 | <trans-unit id="379090446060940062" datatype="html"> |
3983 | <source>Do you really want to delete all comments of <x id="PH"/>?</source> | 4174 | <source>Do you really want to delete all comments of <x id="PH"/>?</source> |
3984 | <target state="new">Do you really want to delete all comments of <x id="PH"/>?</target> | 4175 | <target state="translated">Biztos, hogy <x id="PH"/> minden hozzászólását törli?</target> |
3985 | 4176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">163</context></context-group> | |
3986 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 4177 | </trans-unit> |
3987 | <trans-unit id="4539246224625965241" datatype="html"> | 4178 | <trans-unit id="4539246224625965241" datatype="html"> |
3988 | <source>Comments of <x id="PH"/> will be deleted in a few minutes</source> | 4179 | <source>Comments of <x id="PH"/> will be deleted in a few minutes</source> |
3989 | <target state="new">Comments of <x id="PH"/> will be deleted in a few minutes</target> | 4180 | <target state="translated"><x id="PH"/> hozzászólásai pár percen belül törlődnek</target> |
3990 | 4181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">175</context></context-group> | |
3991 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">175</context></context-group></trans-unit> | 4182 | </trans-unit> |
3992 | <trans-unit id="7427986413651551775" datatype="html"> | 4183 | <trans-unit id="7427986413651551775" datatype="html"> |
3993 | <source>Video comments</source> | 4184 | <source>Video comments</source> |
3994 | <target state="new">Video comments</target> | 4185 | <target state="translated">Videó hozzászólások</target> |
3995 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group> | 4186 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group> |
3996 | </trans-unit> | 4187 | </trans-unit> |
3997 | <trans-unit id="289582790179344391" datatype="html"> | 4188 | <trans-unit id="289582790179344391" datatype="html"> |
3998 | <source>This view also shows comments from muted accounts.</source> | 4189 | <source>This view also shows comments from muted accounts.</source> |
3999 | <target state="new">This view also shows comments from muted accounts.</target> | 4190 | <target state="translated">Ez a nézet az elnémított felhasználók hozzászólásait is mutatja.</target> |
4000 | <context-group purpose="location"> | 4191 | <context-group purpose="location"> |
4001 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | 4192 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> |
4002 | <context context-type="linenumber">8</context> | 4193 | <context context-type="linenumber">8</context> |
@@ -4004,12 +4195,12 @@ The link will expire within 1 hour.</source> | |||
4004 | </trans-unit> | 4195 | </trans-unit> |
4005 | <trans-unit id="4523382115569186450" datatype="html"> | 4196 | <trans-unit id="4523382115569186450" datatype="html"> |
4006 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> comments</source> | 4197 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> comments</source> |
4007 | <target state="new">Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> comments</target> | 4198 | <target state="translated">Megjelenítve <x id="INTERPOLATION"/> - <x id="INTERPOLATION_1"/> hozzászólás, összesen <x id="INTERPOLATION_2"/> hozzászólásból</target> |
4008 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">15</context></context-group> | 4199 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">15</context></context-group> |
4009 | </trans-unit> | 4200 | </trans-unit> |
4010 | <trans-unit id="6110554376228744887" datatype="html"> | 4201 | <trans-unit id="6110554376228744887" datatype="html"> |
4011 | <source>Select all rows</source> | 4202 | <source>Select all rows</source> |
4012 | <target state="new">Select all rows</target> | 4203 | <target state="translated">Minden sor kiválasztása</target> |
4013 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">38</context></context-group> | 4204 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">38</context></context-group> |
4014 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">34</context></context-group> | 4205 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">34</context></context-group> |
4015 | </trans-unit> | 4206 | </trans-unit> |
@@ -4025,7 +4216,7 @@ The link will expire within 1 hour.</source> | |||
4025 | </trans-unit> | 4216 | </trans-unit> |
4026 | <trans-unit id="2296681895307893686" datatype="html"> | 4217 | <trans-unit id="2296681895307893686" datatype="html"> |
4027 | <source>any</source> | 4218 | <source>any</source> |
4028 | <target state="new">any</target> | 4219 | <target state="translated">bármelyik</target> |
4029 | <context-group purpose="location"> | 4220 | <context-group purpose="location"> |
4030 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> | 4221 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> |
4031 | <context context-type="linenumber">21</context> | 4222 | <context context-type="linenumber">21</context> |
@@ -4044,7 +4235,7 @@ The link will expire within 1 hour.</source> | |||
4044 | </trans-unit> | 4235 | </trans-unit> |
4045 | <trans-unit id="3901868627411944813" datatype="html"> | 4236 | <trans-unit id="3901868627411944813" datatype="html"> |
4046 | <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> | 4237 | <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> |
4047 | <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> | 4238 | <target state="translated">Fontosság <x id="START_SMALL_TEXT" ctype="x-small" equiv-text="<small>"/>(1 = legfontosabb)<x id="CLOSE_SMALL_TEXT" ctype="x-small" equiv-text="</small>"/></target> |
4048 | <context-group purpose="location"> | 4239 | <context-group purpose="location"> |
4049 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> | 4240 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> |
4050 | <context context-type="linenumber">47</context> | 4241 | <context context-type="linenumber">47</context> |
@@ -4052,7 +4243,7 @@ The link will expire within 1 hour.</source> | |||
4052 | </trans-unit> | 4243 | </trans-unit> |
4053 | <trans-unit id="3419681791450150574" datatype="html"> | 4244 | <trans-unit id="3419681791450150574" datatype="html"> |
4054 | <source>Progress</source> | 4245 | <source>Progress</source> |
4055 | <target state="new">Progress</target> | 4246 | <target state="translated">Folyamat</target> |
4056 | <context-group purpose="location"> | 4247 | <context-group purpose="location"> |
4057 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> | 4248 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> |
4058 | <context context-type="linenumber">49</context> | 4249 | <context context-type="linenumber">49</context> |
@@ -4060,12 +4251,12 @@ The link will expire within 1 hour.</source> | |||
4060 | </trans-unit> | 4251 | </trans-unit> |
4061 | <trans-unit id="914197284349366734" datatype="html"> | 4252 | <trans-unit id="914197284349366734" datatype="html"> |
4062 | <source>No jobs found.</source> | 4253 | <source>No jobs found.</source> |
4063 | <target state="new">No jobs found.</target> | 4254 | <target state="translated">Nem található folyamat.</target> |
4064 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">107</context></context-group> | 4255 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">107</context></context-group> |
4065 | </trans-unit> | 4256 | </trans-unit> |
4066 | <trans-unit id="2713421326605345655" datatype="html"> | 4257 | <trans-unit id="2713421326605345655" datatype="html"> |
4067 | <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> | 4258 | <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> |
4068 | <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> | 4259 | <target state="translated">Nem található <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> "/> folyamat.</target> |
4069 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">108</context></context-group> | 4260 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">108</context></context-group> |
4070 | </trans-unit> | 4261 | </trans-unit> |
4071 | <trans-unit id="2384897339170501794" datatype="html"> | 4262 | <trans-unit id="2384897339170501794" datatype="html"> |
@@ -4119,91 +4310,93 @@ The link will expire within 1 hour.</source> | |||
4119 | <trans-unit id="7794655859478571096" datatype="html"> | 4310 | <trans-unit id="7794655859478571096" datatype="html"> |
4120 | <source>Main instance categories</source> | 4311 | <source>Main instance categories</source> |
4121 | <target state="translated">Főpéldány kategóriái</target> | 4312 | <target state="translated">Főpéldány kategóriái</target> |
4122 | 4313 | <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> | |
4123 | <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> | 4314 | </trans-unit> |
4124 | <trans-unit id="6588040559347368313" datatype="html"> | 4315 | <trans-unit id="6588040559347368313" datatype="html"> |
4125 | <source>Add a new category</source> | 4316 | <source>Add a new category</source> |
4126 | <target state="translated">Új kategória hozzáadása</target> | 4317 | <target state="translated">Új kategória hozzáadása</target> |
4127 | 4318 | <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> | |
4128 | <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> | 4319 | <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> |
4320 | </trans-unit> | ||
4129 | <trans-unit id="8953934448427251062" datatype="html"> | 4321 | <trans-unit id="8953934448427251062" datatype="html"> |
4130 | <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> | 4322 | <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> |
4131 | <target state="translated">A <x id="START_LINK"/>megosztási rendszer <x id="CLOSE_LINK"/> következménye, hogy bizonyos műszaki adatok (mint a nyilvános IP-cím) el lesznek küldve a többi partnernek, viszont ez nagymértékben segít a kiszolgáló tehermentesítésében.</target> | 4323 | <target state="translated">A <x id="START_LINK"/>megosztási rendszer <x id="CLOSE_LINK"/> következménye, hogy bizonyos műszaki adatok (mint a nyilvános IP-cím) el lesznek küldve a többi partnernek, viszont ez nagymértékben segít a kiszolgáló tehermentesítésében.</target> |
4132 | 4324 | <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> | |
4133 | <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> | 4325 | </trans-unit> |
4134 | <trans-unit id="34094919610906740" datatype="html"> | 4326 | <trans-unit id="34094919610906740" datatype="html"> |
4135 | <source>Help share videos being played</source> | 4327 | <source>Help share videos being played</source> |
4136 | <target state="translated">Segítsen a lejátszott videók megosztásában</target> | 4328 | <target state="translated">Segítsen a lejátszott videók megosztásában</target> |
4137 | 4329 | <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> | |
4138 | <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> | 4330 | </trans-unit> |
4139 | <trans-unit id="6236140336967052987" datatype="html"> | 4331 | <trans-unit id="6236140336967052987" datatype="html"> |
4140 | <source>When on a video page, directly start playing the video.</source> | 4332 | <source>When on a video page, directly start playing the video.</source> |
4141 | <target state="translated">Ha egy videooldalon van, azonnal elindítja a videó lejátszását.</target> | 4333 | <target state="translated">Ha egy videooldalon van, azonnal elindítja a videó lejátszását.</target> |
4142 | 4334 | <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> | |
4143 | <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> | 4335 | </trans-unit> |
4144 | <trans-unit id="9135112681389493865" datatype="html"> | 4336 | <trans-unit id="9135112681389493865" datatype="html"> |
4145 | <source>Automatically play videos</source> | 4337 | <source>Automatically play videos</source> |
4146 | <target state="translated">Videók automatikus lejátszása</target> | 4338 | <target state="translated">Videók automatikus lejátszása</target> |
4147 | 4339 | <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> | |
4148 | <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> | 4340 | </trans-unit> |
4149 | <trans-unit id="575474399125992547" datatype="html"> | 4341 | <trans-unit id="575474399125992547" datatype="html"> |
4150 | <source>When a video ends, follow up with the next suggested video.</source> | 4342 | <source>When a video ends, follow up with the next suggested video.</source> |
4151 | <target state="translated">Ha egy videó véget ér, folytassa a következő javasolt videóval.</target> | 4343 | <target state="translated">Ha egy videó véget ér, folytassa a következő javasolt videóval.</target> |
4152 | 4344 | <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> | |
4153 | <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> | 4345 | </trans-unit> |
4154 | <trans-unit id="2701970773087072815" datatype="html"> | 4346 | <trans-unit id="2701970773087072815" datatype="html"> |
4155 | <source>Automatically start playing the next video</source> | 4347 | <source>Automatically start playing the next video</source> |
4156 | <target state="translated">A következő videó lejátszásának automatikus indítása</target> | 4348 | <target state="translated">A következő videó lejátszásának automatikus indítása</target> |
4157 | 4349 | <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> | |
4158 | <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> | 4350 | </trans-unit> |
4159 | <trans-unit id="5983800192187691457" datatype="html"> | 4351 | <trans-unit id="5983800192187691457" datatype="html"> |
4160 | <source>Main languages you/your moderators speak</source> | 4352 | <source>Main languages you/your moderators speak</source> |
4161 | <target state="translated">Fő nyelvek, amelyeken Ön vagy a moderátorai beszélnek</target> | 4353 | <target state="translated">Fő nyelvek, amelyeken Ön vagy a moderátorai beszélnek</target> |
4162 | 4354 | <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> | |
4163 | <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> | 4355 | </trans-unit> |
4164 | <trans-unit id="399528956091640769" datatype="html"> | 4356 | <trans-unit id="399528956091640769" datatype="html"> |
4165 | <source>MODERATION & NSFW</source> | 4357 | <source>MODERATION & NSFW</source> |
4166 | <target state="translated">MODERÁLÁS ÉS ÉRZÉKENY TARTALOM</target> | 4358 | <target state="translated">MODERÁLÁS ÉS ÉRZÉKENY TARTALOM</target> |
4167 | 4359 | <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> | |
4168 | <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> | 4360 | </trans-unit> |
4169 | <trans-unit id="4423835119021329687" datatype="html"> | 4361 | <trans-unit id="4423835119021329687" datatype="html"> |
4170 | <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> | 4362 | <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> |
4171 | <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> | 4363 | <target state="translated">A <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>felhasználók<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> kezelésénél készíthet moderálási csoportot. </target> |
4172 | 4364 | <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">84</context></context-group> | |
4173 | <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">84</context></context-group></trans-unit> | 4365 | </trans-unit> |
4174 | <trans-unit id="7030031694783481217" datatype="html"> | 4366 | <trans-unit id="7030031694783481217" datatype="html"> |
4175 | <source>This instance is dedicated to sensitive or NSFW content</source> | 4367 | <source>This instance is dedicated to sensitive or NSFW content</source> |
4176 | <target state="translated">Ez a példány érzékeny tartalmakhoz van létrehozva</target> | 4368 | <target state="translated">Ez a példány érzékeny tartalmakhoz van létrehozva</target> |
4177 | 4369 | <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> | |
4178 | <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> | 4370 | </trans-unit> |
4179 | <trans-unit id="4620493570088713907" datatype="html"> | 4371 | <trans-unit id="4620493570088713907" datatype="html"> |
4180 | <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> | 4372 | <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> |
4181 | <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> | 4373 | <target state="translated">Ennek engedélyezésével a többi rendszergazda tudni fogja, hogy elsősorban az érzékeny tartalmakat publikálja.<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> "/> Ezenkívül a videó feltöltésénél az Érzékeny tartalom jelölőnégyzet alapértelmezetten automatikusan be lesz jelölve. </target> |
4182 | 4374 | <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">98</context></context-group> | |
4183 | <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">98</context></context-group></trans-unit> | 4375 | </trans-unit> |
4184 | <trans-unit id="7497677457560701935"> | 4376 | <trans-unit id="7497677457560701935"> |
4185 | <source>Policy on videos containing sensitive content</source> | 4377 | <source>Policy on videos containing sensitive content</source> |
4186 | <target>Érzékeny tartalmú videókkal kapcsolatos irányelv</target> | 4378 | <target>Érzékeny tartalmú videókkal kapcsolatos irányelv</target> |
4187 | 4379 | <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> | |
4188 | <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> | 4380 | </trans-unit> |
4189 | <trans-unit id="7350483582490037954" datatype="html"> | 4381 | <trans-unit id="7350483582490037954" datatype="html"> |
4190 | <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> | 4382 | <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> |
4191 | <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> | 4383 | <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> |
4192 | 4384 | <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">111</context></context-group> | |
4193 | <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">111</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">8</context></context-group></trans-unit> | 4385 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">8</context></context-group> |
4386 | </trans-unit> | ||
4194 | <trans-unit id="8930852890861583005"> | 4387 | <trans-unit id="8930852890861583005"> |
4195 | <source>Blur thumbnails</source> | 4388 | <source>Blur thumbnails</source> |
4196 | <target>Bélyegképek elhomályosítása</target> | 4389 | <target>Bélyegképek elhomályosítása</target> |
4197 | 4390 | <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> | |
4198 | 4391 | <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> | |
4199 | <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> | 4392 | </trans-unit> |
4200 | <trans-unit id="6812930637022637485"> | 4393 | <trans-unit id="6812930637022637485"> |
4201 | <source>Display</source> | 4394 | <source>Display</source> |
4202 | <target>Megjelenítés</target> | 4395 | <target>Megjelenítés</target> |
4203 | 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">121</context></context-group> | |
4204 | 4397 | <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> | |
4205 | 4398 | <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> | |
4206 | <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> | 4399 | </trans-unit> |
4207 | <trans-unit id="1617785425462022303" datatype="html"> | 4400 | <trans-unit id="1617785425462022303" datatype="html"> |
4208 | <source>Strategy</source> | 4401 | <source>Strategy</source> |
4209 | <target state="translated">Stratégia</target> | 4402 | <target state="translated">Stratégia</target> |
@@ -4212,91 +4405,90 @@ The link will expire within 1 hour.</source> | |||
4212 | <trans-unit id="2544569632476723854"> | 4405 | <trans-unit id="2544569632476723854"> |
4213 | <source>Terms</source> | 4406 | <source>Terms</source> |
4214 | <target>Használati feltételek</target> | 4407 | <target>Használati feltételek</target> |
4215 | 4408 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">168</context></context-group> | |
4216 | 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">129</context></context-group> | |
4217 | 4410 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">13</context></context-group> | |
4218 | 4411 | <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> | |
4219 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">168</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">13</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> | 4412 | </trans-unit> |
4220 | <trans-unit id="4127416011499804250" datatype="html"> | 4413 | <trans-unit id="4127416011499804250" datatype="html"> |
4221 | <source>Code of conduct</source> | 4414 | <source>Code of conduct</source> |
4222 | <target state="translated">Magatartási kódex</target> | 4415 | <target state="translated">Magatartási kódex</target> |
4223 | 4416 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">154</context></context-group> | |
4224 | 4417 | <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> | |
4225 | 4418 | <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> | |
4226 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">154</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> | 4419 | </trans-unit> |
4227 | <trans-unit id="3076079242537393946" datatype="html"> | 4420 | <trans-unit id="3076079242537393946" datatype="html"> |
4228 | <source>Moderation information</source> | 4421 | <source>Moderation information</source> |
4229 | <target state="translated">Moderálási információk</target> | 4422 | <target state="translated">Moderálási információk</target> |
4230 | 4423 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">140</context></context-group> | |
4231 | 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">151</context></context-group> | |
4232 | 4425 | <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> | |
4233 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">140</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> | 4426 | </trans-unit> |
4234 | <trans-unit id="5056489767203690328" datatype="html"> | 4427 | <trans-unit id="5056489767203690328" datatype="html"> |
4235 | <source>Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc</source> | 4428 | <source>Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc</source> |
4236 | <target state="translated">Ki moderálja a példányt? Mi az irányelv az érzékeny tartalmú videókkal kapcsolatban? Politikai videók? Stb.</target> | 4429 | <target state="translated">Ki moderálja a példányt? Mi az irányelv az érzékeny tartalmú videókkal kapcsolatban? Politikai videók? Stb.</target> |
4237 | 4430 | <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> | |
4238 | <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> | 4431 | </trans-unit> |
4239 | <trans-unit id="2047672753819413550" datatype="html"> | 4432 | <trans-unit id="2047672753819413550" datatype="html"> |
4240 | <source>YOU AND YOUR INSTANCE</source> | 4433 | <source>YOU AND YOUR INSTANCE</source> |
4241 | <target state="translated">ÖN ÉS AZ ÖN PÉLDÁNYA</target> | 4434 | <target state="translated">ÖN ÉS AZ ÖN PÉLDÁNYA</target> |
4242 | 4435 | <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> | |
4243 | <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> | 4436 | </trans-unit> |
4244 | <trans-unit id="3968335261686887328" datatype="html"> | 4437 | <trans-unit id="3968335261686887328" datatype="html"> |
4245 | <source>Who is behind the instance?</source> | 4438 | <source>Who is behind the instance?</source> |
4246 | <target state="translated">Ki van a példány mögött?</target> | 4439 | <target state="translated">Ki van a példány mögött?</target> |
4247 | 4440 | <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> | |
4248 | <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> | 4441 | </trans-unit> |
4249 | <trans-unit id="7323194786468446482" datatype="html"> | 4442 | <trans-unit id="7323194786468446482" datatype="html"> |
4250 | <source>A single person? A non-profit? A company?</source> | 4443 | <source>A single person? A non-profit? A company?</source> |
4251 | <target state="translated">Egy magánszemély? Egy non-profit? Egy vállalat?</target> | 4444 | <target state="translated">Egy magánszemély? Egy non-profit? Egy vállalat?</target> |
4252 | 4445 | <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> | |
4253 | <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> | 4446 | </trans-unit> |
4254 | <trans-unit id="5480243297215266596" datatype="html"> | 4447 | <trans-unit id="5480243297215266596" datatype="html"> |
4255 | <source>Why did you create this instance?</source> | 4448 | <source>Why did you create this instance?</source> |
4256 | <target state="translated">Miért hozta létre ezt a példányt?</target> | 4449 | <target state="translated">Miért hozta létre ezt a példányt?</target> |
4257 | 4450 | <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> | |
4258 | <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> | 4451 | </trans-unit> |
4259 | <trans-unit id="6995481962115300007" datatype="html"> | 4452 | <trans-unit id="6995481962115300007" datatype="html"> |
4260 | <source>To share your personal videos? To open registrations and allow people to upload what they want?</source> | 4453 | <source>To share your personal videos? To open registrations and allow people to upload what they want?</source> |
4261 | <target state="translated">Személyes videók megosztásához? Regisztrációk megnyitásához és ahhoz, hogy az emberek bármit feltöltsenek, amit akarnak?</target> | 4454 | <target state="translated">Személyes videók megosztásához? Regisztrációk megnyitásához és ahhoz, hogy az emberek bármit feltöltsenek, amit akarnak?</target> |
4262 | 4455 | <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> | |
4263 | <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> | 4456 | </trans-unit> |
4264 | <trans-unit id="3667968987954856844" datatype="html"> | 4457 | <trans-unit id="3667968987954856844" datatype="html"> |
4265 | <source>How long do you plan to maintain this instance?</source> | 4458 | <source>How long do you plan to maintain this instance?</source> |
4266 | <target state="translated">Meddig tervezi fenntartani ezt a példányt?</target> | 4459 | <target state="translated">Meddig tervezi fenntartani ezt a példányt?</target> |
4267 | 4460 | <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> | |
4268 | <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> | 4461 | </trans-unit> |
4269 | <trans-unit id="6722472563287778070" datatype="html"> | 4462 | <trans-unit id="6722472563287778070" datatype="html"> |
4270 | <source>It's important to know for users who want to register on your instance</source> | 4463 | <source>It's important to know for users who want to register on your instance</source> |
4271 | <target state="translated">Fontos tudatni a felhasználókkal, akik regisztrálni akarnak az Ön példányán</target> | 4464 | <target state="translated">Fontos tudatni a felhasználókkal, akik regisztrálni akarnak az Ön példányán</target> |
4272 | 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">198</context></context-group> | |
4273 | <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> | 4466 | </trans-unit> |
4274 | <trans-unit id="8362291348781958428" datatype="html"> | 4467 | <trans-unit id="8362291348781958428" datatype="html"> |
4275 | <source>How will you finance the PeerTube server?</source> | 4468 | <source>How will you finance the PeerTube server?</source> |
4276 | <target state="translated">Hogyan fogja finanszírozni a PeerTube kiszolgálót?</target> | 4469 | <target state="translated">Hogyan fogja finanszírozni a PeerTube kiszolgálót?</target> |
4277 | 4470 | <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> | |
4278 | <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> | 4471 | </trans-unit> |
4279 | <trans-unit id="2441006645448216398" datatype="html"> | 4472 | <trans-unit id="2441006645448216398" datatype="html"> |
4280 | <source>With your own funds? With user donations? Advertising?</source> | 4473 | <source>With your own funds? With user donations? Advertising?</source> |
4281 | <target state="translated">Saját forrásokkal? A felhasználói adományokkal? Hirdetés?</target> | 4474 | <target state="translated">Saját forrásokkal? A felhasználói adományokkal? Hirdetés?</target> |
4282 | 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">210</context></context-group> | |
4283 | <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> | 4476 | </trans-unit> |
4284 | <trans-unit id="6853511883515031762" datatype="html"> | 4477 | <trans-unit id="6853511883515031762" datatype="html"> |
4285 | <source>OTHER INFORMATION</source> | 4478 | <source>OTHER INFORMATION</source> |
4286 | <target state="translated">EGYÉB INFORMÁCIÓK</target> | 4479 | <target state="translated">EGYÉB INFORMÁCIÓK</target> |
4287 | 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">225</context></context-group> | |
4288 | <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> | 4481 | </trans-unit> |
4289 | <trans-unit id="3447208665089679283" datatype="html"> | 4482 | <trans-unit id="3447208665089679283" datatype="html"> |
4290 | <source>What server/hardware does the instance run on?</source> | 4483 | <source>What server/hardware does the instance run on?</source> |
4291 | <target state="translated">Milyen kiszolgálón és hardveren fut a példány?</target> | 4484 | <target state="translated">Milyen kiszolgálón és hardveren fut a példány?</target> |
4292 | 4485 | <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> | |
4293 | <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> | 4486 | </trans-unit> |
4294 | <trans-unit id="4739907951373047958" datatype="html"> | 4487 | <trans-unit id="4739907951373047958" datatype="html"> |
4295 | <source>i.e. 2vCore 2GB RAM, a direct the link to the server you rent, etc.</source> | 4488 | <source>i.e. 2vCore 2GB RAM, a direct the link to the server you rent, etc.</source> |
4296 | <target state="translated">azaz 2vCore 2GB RAM, egy közvetlen hivatkozás a bérelt kiszolgálóra stb.</target> | 4489 | <target state="translated">azaz 2vCore 2GB RAM, egy közvetlen hivatkozás a bérelt kiszolgálóra stb.</target> |
4297 | 4490 | <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> | |
4298 | <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> | 4491 | </trans-unit> |
4299 | |||
4300 | <trans-unit id="8557599287230755359" datatype="html"> | 4492 | <trans-unit id="8557599287230755359" datatype="html"> |
4301 | <source>APPEARANCE</source> | 4493 | <source>APPEARANCE</source> |
4302 | <target state="translated">MEGJELENÉS</target> | 4494 | <target state="translated">MEGJELENÉS</target> |
@@ -4304,7 +4496,7 @@ The link will expire within 1 hour.</source> | |||
4304 | </trans-unit> | 4496 | </trans-unit> |
4305 | <trans-unit id="2107098695989136934" datatype="html"> | 4497 | <trans-unit id="2107098695989136934" datatype="html"> |
4306 | <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> | 4498 | <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> |
4307 | <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> | 4499 | <target state="translated">Használjon <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/plugins">"/>bővítményeket és témákat<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> látványosabb változásokhoz, vagy <x id="START_LINK_1" equiv-text="<a routerLink="/admin/config/edit-custom" fragment="advanced-configuration">"/>végezzen kisebb módosításokat<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
4308 | <context-group purpose="location"> | 4500 | <context-group purpose="location"> |
4309 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> | 4501 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> |
4310 | <context context-type="linenumber">6,7</context> | 4502 | <context context-type="linenumber">6,7</context> |
@@ -4320,107 +4512,102 @@ The link will expire within 1 hour.</source> | |||
4320 | <target state="translated">Kezdőlap</target> | 4512 | <target state="translated">Kezdőlap</target> |
4321 | <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> | 4513 | <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> |
4322 | </trans-unit> | 4514 | </trans-unit> |
4323 | |||
4324 | |||
4325 | <trans-unit id="2609416025385742456" datatype="html"> | 4515 | <trans-unit id="2609416025385742456" datatype="html"> |
4326 | <source>Default trending page</source> | 4516 | <source>Default trending page</source> |
4327 | <target state="new">Default trending page</target> | 4517 | <target state="translated">Alapértelmezett felkapott oldal</target> |
4328 | 4518 | <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> | |
4329 | 4519 | </trans-unit> | |
4330 | <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> | ||
4331 | <trans-unit id="421622604352196374" datatype="html"> | 4520 | <trans-unit id="421622604352196374" datatype="html"> |
4332 | <source>Best videos</source> | 4521 | <source>Best videos</source> |
4333 | <target state="new">Best videos</target> | 4522 | <target state="translated">Legjobb videók</target> |
4334 | 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">47</context></context-group> | |
4335 | 4524 | </trans-unit> | |
4336 | <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> | ||
4337 | <trans-unit id="554741830445276244" datatype="html"> | 4525 | <trans-unit id="554741830445276244" datatype="html"> |
4338 | <source>Hot videos</source> | 4526 | <source>Hot videos</source> |
4339 | <target state="new">Hot videos</target> | 4527 | <target state="translated">Érdeklődést kiváltó videók</target> |
4340 | 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">48</context></context-group> | |
4341 | 4529 | </trans-unit> | |
4342 | <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> | ||
4343 | <trans-unit id="4203746847864415875" datatype="html"> | 4530 | <trans-unit id="4203746847864415875" datatype="html"> |
4344 | <source>Most viewed videos</source> | 4531 | <source>Most viewed videos</source> |
4345 | <target state="new">Most viewed videos</target> | 4532 | <target state="translated">Legtöbbször megnézett videók</target> |
4346 | 4533 | <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> | |
4347 | 4534 | </trans-unit> | |
4348 | <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> | ||
4349 | <trans-unit id="8177374861384376651" datatype="html"> | 4535 | <trans-unit id="8177374861384376651" datatype="html"> |
4350 | <source>Most liked videos</source> | 4536 | <source>Most liked videos</source> |
4351 | <target state="translated">Legkedveltebb videók</target> | 4537 | <target state="translated">Legkedveltebb videók</target> |
4352 | 4538 | <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> | |
4353 | 4539 | </trans-unit> | |
4354 | <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> | ||
4355 | |||
4356 | |||
4357 | <trans-unit id="4809162812315301010" datatype="html"> | 4540 | <trans-unit id="4809162812315301010" datatype="html"> |
4358 | <source>BROADCAST MESSAGE</source> | 4541 | <source>BROADCAST MESSAGE</source> |
4359 | <target state="translated">ÜZENETSZÓRÁS</target> | 4542 | <target state="translated">ÜZENETSZÓRÁS</target> |
4360 | 4543 | <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">64</context></context-group> | |
4361 | <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">64</context></context-group></trans-unit> | 4544 | </trans-unit> |
4362 | <trans-unit id="7097094470713539753" datatype="html"> | 4545 | <trans-unit id="7097094470713539753" datatype="html"> |
4363 | <source>Display a message on your instance</source> | 4546 | <source>Display a message on your instance</source> |
4364 | <target state="new"> Display a message on your instance </target> | 4547 | <target state="translated">Üzenet megjelenítése a példányán</target> |
4365 | 4548 | <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">66</context></context-group> | |
4366 | <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">66</context></context-group></trans-unit> | 4549 | </trans-unit> |
4367 | <trans-unit id="4686199497574248459" datatype="html"> | 4550 | <trans-unit id="4686199497574248459" datatype="html"> |
4368 | <source>Enable broadcast message</source> | 4551 | <source>Enable broadcast message</source> |
4369 | <target state="translated">Üzenetszórás engedélyezése</target> | 4552 | <target state="translated">Üzenetszórás engedélyezése</target> |
4370 | 4553 | <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">77</context></context-group> | |
4371 | <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">77</context></context-group></trans-unit> | 4554 | </trans-unit> |
4372 | <trans-unit id="9192050065623241777" datatype="html"> | 4555 | <trans-unit id="9192050065623241777" datatype="html"> |
4373 | <source>Allow users to dismiss the broadcast message</source> | 4556 | <source>Allow users to dismiss the broadcast message</source> |
4374 | <target state="translated">A felhasználók bezárhatják a szórt üzenetet</target> | 4557 | <target state="translated">A felhasználók bezárhatják a szórt üzenetet</target> |
4375 | 4558 | <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">84</context></context-group> | |
4376 | <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">84</context></context-group></trans-unit> | 4559 | </trans-unit> |
4377 | <trans-unit id="6582848618760132901" datatype="html"> | 4560 | <trans-unit id="6582848618760132901" datatype="html"> |
4378 | <source>Broadcast message level</source> | 4561 | <source>Broadcast message level</source> |
4379 | <target state="translated">Szórt üzenet szintje</target> | 4562 | <target state="translated">Szórt üzenet szintje</target> |
4380 | 4563 | <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">89</context></context-group> | |
4381 | <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">89</context></context-group></trans-unit> | 4564 | </trans-unit> |
4382 | <trans-unit id="8066608938393600549" datatype="html"> | 4565 | <trans-unit id="8066608938393600549" datatype="html"> |
4383 | <source>Message</source> | 4566 | <source>Message</source> |
4384 | <target state="translated">Üzenet</target> | 4567 | <target state="translated">Üzenet</target> |
4385 | 4568 | <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">103</context></context-group> | |
4386 | <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">103</context></context-group></trans-unit> | 4569 | </trans-unit> |
4387 | <trans-unit id="5631159720194597622" datatype="html"> | 4570 | <trans-unit id="5631159720194597622" datatype="html"> |
4388 | <source>NEW USERS</source> | 4571 | <source>NEW USERS</source> |
4389 | <target state="translated">ÚJ FELHASZNÁLÓK</target> | 4572 | <target state="translated">ÚJ FELHASZNÁLÓK</target> |
4390 | 4573 | <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">120</context></context-group> | |
4391 | <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">120</context></context-group></trans-unit> | 4574 | </trans-unit> |
4392 | <trans-unit id="2669509104300979449" datatype="html"> | 4575 | <trans-unit id="2669509104300979449" datatype="html"> |
4393 | <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> | 4576 | <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> |
4394 | <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> | 4577 | <target state="translated">A <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/users">"/>felhasználók<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> kezelésénél beállíthatja a személyes kvótákat. </target> |
4395 | 4578 | <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">122</context></context-group> | |
4396 | <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">122</context></context-group></trans-unit> | 4579 | </trans-unit> |
4397 | <trans-unit id="4497115134891299867"> | 4580 | <trans-unit id="4497115134891299867"> |
4398 | <source>Signup requires email verification</source> | 4581 | <source>Signup requires email verification</source> |
4399 | <target>A regisztráció e-mail ellenőrzést igényel</target> | 4582 | <target>A regisztráció e-mail ellenőrzést igényel</target> |
4400 | 4583 | <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">143</context></context-group> | |
4401 | <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">143</context></context-group></trans-unit> | 4584 | </trans-unit> |
4402 | <trans-unit id="8133107840061687919"> | 4585 | <trans-unit id="8133107840061687919"> |
4403 | <source>Signup limit</source> | 4586 | <source>Signup limit</source> |
4404 | <target>Regisztrációs korlát</target> | 4587 | <target>Regisztrációs korlát</target> |
4405 | 4588 | <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">147</context></context-group> | |
4406 | <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">147</context></context-group></trans-unit> | 4589 | </trans-unit> |
4407 | <trans-unit id="8497774075394617130" datatype="html"> | 4590 | <trans-unit id="8497774075394617130" datatype="html"> |
4408 | <source>{VAR_PLURAL, plural, =1 {user} other {users}}</source> | 4591 | <source>{VAR_PLURAL, plural, =1 {user} other {users}}</source> |
4409 | <target state="new">{VAR_PLURAL, plural, =1 {user} other {users}}</target> | 4592 | <target state="translated">{VAR_PLURAL, plural, =1 {felhasználó} other {felhasználó}}</target> |
4410 | 4593 | <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">154</context></context-group> | |
4411 | <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">154</context></context-group></trans-unit> | 4594 | </trans-unit> |
4412 | <trans-unit id="5620049714977547431" datatype="html"> | 4595 | <trans-unit id="5620049714977547431" datatype="html"> |
4413 | <source>Signup won't be limited to a fixed number of users.</source> | 4596 | <source>Signup won't be limited to a fixed number of users.</source> |
4414 | <target state="new">Signup won't be limited to a fixed number of users.</target> | 4597 | <target state="translated">A regisztráció nem lesz korlátozva egy adott számú felhasználóra.</target> |
4415 | 4598 | <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">159</context></context-group> | |
4416 | <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">159</context></context-group></trans-unit><trans-unit id="1663379405062033606" datatype="html"> | 4599 | </trans-unit> |
4417 | <source>Minimum required age to create an account</source><target state="new">Minimum required age to create an account</target> | 4600 | <trans-unit id="1663379405062033606" datatype="html"> |
4601 | <source>Minimum required age to create an account</source> | ||
4602 | <target state="translated">Minimális életkor a fiók létrehozásához</target> | ||
4418 | <context-group purpose="location"> | 4603 | <context-group purpose="location"> |
4419 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> | 4604 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> |
4420 | <context context-type="linenumber">163</context> | 4605 | <context context-type="linenumber">163</context> |
4421 | </context-group> | 4606 | </context-group> |
4422 | </trans-unit><trans-unit id="8342879272354516454" datatype="html"> | 4607 | </trans-unit> |
4423 | <source>{VAR_PLURAL, plural, =1 {year old} other {years old}}</source><target state="new">{VAR_PLURAL, plural, =1 {year old} other {years old}}</target> | 4608 | <trans-unit id="8342879272354516454" datatype="html"> |
4609 | <source>{VAR_PLURAL, plural, =1 {year old} other {years old}}</source> | ||
4610 | <target state="translated">{VAR_PLURAL, plural, =1 {éves} other {éves}}</target> | ||
4424 | <context-group purpose="location"> | 4611 | <context-group purpose="location"> |
4425 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> | 4612 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> |
4426 | <context context-type="linenumber">170</context> | 4613 | <context context-type="linenumber">170</context> |
@@ -4429,8 +4616,8 @@ The link will expire within 1 hour.</source> | |||
4429 | <trans-unit id="7456307533995141215" datatype="html"> | 4616 | <trans-unit id="7456307533995141215" datatype="html"> |
4430 | <source>Enable Signup</source> | 4617 | <source>Enable Signup</source> |
4431 | <target state="translated">Regisztráció engedélyezése</target> | 4618 | <target state="translated">Regisztráció engedélyezése</target> |
4432 | 4619 | <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">132</context></context-group> | |
4433 | <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">132</context></context-group></trans-unit> | 4620 | </trans-unit> |
4434 | <trans-unit id="4555457172864212828"> | 4621 | <trans-unit id="4555457172864212828"> |
4435 | <source>Users</source> | 4622 | <source>Users</source> |
4436 | <target>Felhasználók</target> | 4623 | <target>Felhasználók</target> |
@@ -4487,204 +4674,204 @@ The link will expire within 1 hour.</source> | |||
4487 | <trans-unit id="502260296951057925" datatype="html"> | 4674 | <trans-unit id="502260296951057925" datatype="html"> |
4488 | <source>Default video quota per user</source> | 4675 | <source>Default video quota per user</source> |
4489 | <target state="translated">Alapértelmezett videokvóta felhasználóként</target> | 4676 | <target state="translated">Alapértelmezett videokvóta felhasználóként</target> |
4490 | 4677 | <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">182</context></context-group> | |
4491 | <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">182</context></context-group></trans-unit> | 4678 | </trans-unit> |
4492 | <trans-unit id="7169210802367807492" datatype="html"> | 4679 | <trans-unit id="7169210802367807492" datatype="html"> |
4493 | <source>bytes</source> | 4680 | <source>bytes</source> |
4494 | <target state="new">bytes</target> | 4681 | <target state="translated">bájt</target> |
4495 | 4682 | <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">188</context></context-group> | |
4496 | 4683 | <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">202</context></context-group> | |
4497 | 4684 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">157</context></context-group> | |
4498 | 4685 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">157</context></context-group> | |
4499 | 4686 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">178</context></context-group> | |
4500 | 4687 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">178</context></context-group> | |
4501 | <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">188</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">202</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/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/users/user-edit/user-edit.component.html</context><context context-type="linenumber">178</context></context-group></trans-unit> | 4688 | </trans-unit> |
4502 | <trans-unit id="8509882464852636851" datatype="html"> | 4689 | <trans-unit id="8509882464852636851" datatype="html"> |
4503 | <source>Default daily upload limit per user</source> | 4690 | <source>Default daily upload limit per user</source> |
4504 | <target state="translated">Alapértelmezett napi feltöltési korlát felhasználóként</target> | 4691 | <target state="translated">Alapértelmezett napi feltöltési korlát felhasználóként</target> |
4505 | 4692 | <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">196</context></context-group> | |
4506 | <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">196</context></context-group></trans-unit> | 4693 | </trans-unit> |
4507 | <trans-unit id="4719342289581047890" datatype="html"> | 4694 | <trans-unit id="4719342289581047890" datatype="html"> |
4508 | <source>Allow import with a torrent file or a magnet URI</source> | 4695 | <source>Allow import with a torrent file or a magnet URI</source> |
4509 | <target state="translated">Importálás engedélyezése torrent-fájllal vagy egy mágnes URI-val</target> | 4696 | <target state="translated">Importálás engedélyezése torrent-fájllal vagy egy mágnes URI-val</target> |
4510 | 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">246</context></context-group> | |
4511 | <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">246</context></context-group></trans-unit> | 4698 | </trans-unit> |
4512 | <trans-unit id="3950258704315544174" datatype="html"> | 4699 | <trans-unit id="3950258704315544174" datatype="html"> |
4513 | <source>Unless a user is marked as trusted, their videos will stay private until a moderator reviews them.</source> | 4700 | <source>Unless a user is marked as trusted, their videos will stay private until a moderator reviews them.</source> |
4514 | <target state="translated">Hacsak egy felhasználó nincs megbízhatóként megjelölve, a videói mindaddig személyes állapotban maradnak, amíg egy moderátor meg nem vizsgálja azokat.</target> | 4701 | <target state="translated">Hacsak egy felhasználó nincs megbízhatóként megjelölve, a videói mindaddig személyes állapotban maradnak, amíg egy moderátor meg nem vizsgálja azokat.</target> |
4515 | 4702 | <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">263</context></context-group> | |
4516 | <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">263</context></context-group></trans-unit> | 4703 | </trans-unit> |
4517 | <trans-unit id="3428986951244800347" datatype="html"> | 4704 | <trans-unit id="3428986951244800347" datatype="html"> |
4518 | <source>Block new videos automatically</source> | 4705 | <source>Block new videos automatically</source> |
4519 | <target state="translated">Új videók automatikus letiltása</target> | 4706 | <target state="translated">Új videók automatikus letiltása</target> |
4520 | 4707 | <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> | |
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">260</context></context-group></trans-unit> | 4708 | </trans-unit> |
4522 | <trans-unit id="2054846790157376783" datatype="html"> | 4709 | <trans-unit id="2054846790157376783" datatype="html"> |
4523 | <source>SEARCH</source> | 4710 | <source>SEARCH</source> |
4524 | <target state="translated">KERESÉS</target> | 4711 | <target state="translated">KERESÉS</target> |
4525 | 4712 | <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">277</context></context-group> | |
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">277</context></context-group></trans-unit> | 4713 | </trans-unit> |
4527 | <trans-unit id="3442084803796199253" datatype="html"> | 4714 | <trans-unit id="3442084803796199253" datatype="html"> |
4528 | <source>Allow users to do remote URI/handle search</source> | 4715 | <source>Allow users to do remote URI/handle search</source> |
4529 | <target state="translated">A felhasználók végezhetnek távoli URI/felhasználónév keresést</target> | 4716 | <target state="translated">A felhasználók végezhetnek távoli URI/felhasználónév keresést</target> |
4530 | 4717 | <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">288</context></context-group> | |
4531 | <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">288</context></context-group></trans-unit> | 4718 | </trans-unit> |
4532 | <trans-unit id="2258148539285928012" datatype="html"> | 4719 | <trans-unit id="2258148539285928012" datatype="html"> |
4533 | <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> | 4720 | <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> |
4534 | <target state="translated">Engedélyezés a <x id="START_TAG_STRONG"/>felhasználói<x id="CLOSE_TAG_STRONG"/> számára, hogy olyan távoli videókat/szereplőket keressenek, akik nem biztos, hogy föderálnak az Ön példányával</target> | 4721 | <target state="translated">Engedélyezés a <x id="START_TAG_STRONG"/>felhasználói<x id="CLOSE_TAG_STRONG"/> számára, hogy olyan távoli videókat/szereplőket keressenek, akik nem biztos, hogy föderálnak az Ön példányával</target> |
4535 | 4722 | <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">291</context></context-group> | |
4536 | <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">291</context></context-group></trans-unit> | 4723 | </trans-unit> |
4537 | <trans-unit id="7295422540935146771" datatype="html"> | 4724 | <trans-unit id="7295422540935146771" datatype="html"> |
4538 | <source>Allow anonymous to do remote URI/handle search</source> | 4725 | <source>Allow anonymous to do remote URI/handle search</source> |
4539 | <target state="translated">A vendégek végezhetnek távoli URI/felhasználónév keresést</target> | 4726 | <target state="translated">A vendégek végezhetnek távoli URI/felhasználónév keresést</target> |
4540 | 4727 | <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">299</context></context-group> | |
4541 | <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">299</context></context-group></trans-unit> | 4728 | </trans-unit> |
4542 | <trans-unit id="7305237807882754643" datatype="html"> | 4729 | <trans-unit id="7305237807882754643" datatype="html"> |
4543 | <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> | 4730 | <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> |
4544 | <target state="translated">Engedélyezés a <x id="START_TAG_STRONG"/>névtelen felhasználók<x id="CLOSE_TAG_STRONG"/> számára, hogy olyan távoli videókat/szereplőket keressenek, akik nem biztos, hogy föderálnak az Ön példányával</target> | 4731 | <target state="translated">Engedélyezés a <x id="START_TAG_STRONG"/>névtelen felhasználók<x id="CLOSE_TAG_STRONG"/> számára, hogy olyan távoli videókat/szereplőket keressenek, akik nem biztos, hogy föderálnak az Ön példányával</target> |
4545 | 4732 | <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">302</context></context-group> | |
4546 | <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">302</context></context-group></trans-unit> | 4733 | </trans-unit> |
4547 | <trans-unit id="5273935530181504015" datatype="html"> | 4734 | <trans-unit id="5273935530181504015" datatype="html"> |
4548 | <source>⚠️ This functionality depends heavily on the moderation of instances followed by the search index you select.</source> | 4735 | <source>⚠️ This functionality depends heavily on the moderation of instances followed by the search index you select.</source> |
4549 | <target state="translated">⚠️ Ez a funkcionalitás nagyban függ a kiválasztott keresőindex által követett példányok moderációjától.</target> | 4736 | <target state="translated">⚠️ Ez a funkcionalitás nagyban függ a kiválasztott keresőindex által követett példányok moderációjától.</target> |
4550 | 4737 | <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">316</context></context-group> | |
4551 | <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">316</context></context-group></trans-unit> | 4738 | </trans-unit> |
4552 | <trans-unit id="1886227550697837417" datatype="html"> | 4739 | <trans-unit id="1886227550697837417" datatype="html"> |
4553 | <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> | 4740 | <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> |
4554 | <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> | 4741 | <target state="translated">Élesben csak moderált kereső-indexet használjon vagy <x id="START_LINK" ctype="x-a" equiv-text="<a href="https://framagit.org/framasoft/peertube/search-index">"/>üzemeltesse a sajátját<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target> |
4555 | 4742 | <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">319</context></context-group> | |
4556 | <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">319</context></context-group></trans-unit> | 4743 | </trans-unit> |
4557 | <trans-unit id="2331464426553277323" datatype="html"> | 4744 | <trans-unit id="2331464426553277323" datatype="html"> |
4558 | <source>Search index URL</source> | 4745 | <source>Search index URL</source> |
4559 | <target state="translated">Keresőindex URL</target> | 4746 | <target state="translated">Keresőindex URL</target> |
4560 | 4747 | <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">325</context></context-group> | |
4561 | <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">325</context></context-group></trans-unit> | 4748 | </trans-unit> |
4562 | <trans-unit id="8524278911521465398" datatype="html"> | 4749 | <trans-unit id="8524278911521465398" datatype="html"> |
4563 | <source>Disable local search in search bar</source> | 4750 | <source>Disable local search in search bar</source> |
4564 | <target state="translated">Helyi keresés letiltása a keresősávban</target> | 4751 | <target state="translated">Helyi keresés letiltása a keresősávban</target> |
4565 | 4752 | <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">338</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">338</context></context-group></trans-unit> | 4753 | </trans-unit> |
4567 | <trans-unit id="6568991917245875948" datatype="html"> | 4754 | <trans-unit id="6568991917245875948" datatype="html"> |
4568 | <source>Otherwise the local search stays used by default</source> | 4755 | <source>Otherwise the local search stays used by default</source> |
4569 | <target state="translated">Különben a helyi keresés lesz alapértelmezetten használva</target> | 4756 | <target state="translated">Különben a helyi keresés lesz alapértelmezetten használva</target> |
4570 | 4757 | <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> | |
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">348</context></context-group></trans-unit> | 4758 | </trans-unit> |
4572 | <trans-unit id="4444955208013675027" datatype="html"> | 4759 | <trans-unit id="4444955208013675027" datatype="html"> |
4573 | <source>Search bar uses the global search index by default</source> | 4760 | <source>Search bar uses the global search index by default</source> |
4574 | <target state="translated">A keresősáv a globális keresőindexet használja alapértelmezetten</target> | 4761 | <target state="translated">A keresősáv a globális keresőindexet használja alapértelmezetten</target> |
4575 | 4762 | <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">345</context></context-group> | |
4576 | <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">345</context></context-group></trans-unit> | 4763 | </trans-unit> |
4577 | <trans-unit id="6476750382562952780" datatype="html"> | 4764 | <trans-unit id="6476750382562952780" datatype="html"> |
4578 | <source>Enable global search</source> | 4765 | <source>Enable global search</source> |
4579 | <target state="translated">Globális keresés engedélyezése</target> | 4766 | <target state="translated">Globális keresés engedélyezése</target> |
4580 | 4767 | <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">313</context></context-group> | |
4581 | <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">313</context></context-group></trans-unit> | 4768 | </trans-unit> |
4582 | <trans-unit id="836183323506117145" datatype="html"> | 4769 | <trans-unit id="836183323506117145" datatype="html"> |
4583 | <source>FEDERATION</source> | 4770 | <source>FEDERATION</source> |
4584 | <target state="translated">FÖDERÁCIÓ</target> | 4771 | <target state="translated">FÖDERÁCIÓ</target> |
4585 | 4772 | <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">366</context></context-group> | |
4586 | <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">366</context></context-group></trans-unit> | 4773 | </trans-unit> |
4587 | <trans-unit id="252719899360434356" datatype="html"> | 4774 | <trans-unit id="252719899360434356" datatype="html"> |
4588 | <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> | 4775 | <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> |
4589 | <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> | 4776 | <target state="translated">A többi példánnyal való <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/admin/follows">"/>kapcsolódások<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> szerkesztése. </target> |
4590 | 4777 | <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">368</context></context-group> | |
4591 | <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">368</context></context-group></trans-unit> | 4778 | </trans-unit> |
4592 | <trans-unit id="9119248927271669654" datatype="html"> | 4779 | <trans-unit id="9119248927271669654" datatype="html"> |
4593 | <source>Other instances can follow yours</source> | 4780 | <source>Other instances can follow yours</source> |
4594 | <target state="translated">Más példányok követhetik az Önét</target> | 4781 | <target state="translated">Más példányok követhetik az Önét</target> |
4595 | 4782 | <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">380</context></context-group> | |
4596 | <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">380</context></context-group></trans-unit> | 4783 | </trans-unit> |
4597 | <trans-unit id="7015551137649102649" datatype="html"> | 4784 | <trans-unit id="7015551137649102649" datatype="html"> |
4598 | <source>Manually approve new instance followers</source> | 4785 | <source>Manually approve new instance followers</source> |
4599 | <target state="translated">Új példánykövetők kézi jóváhagyása</target> | 4786 | <target state="translated">Új példánykövetők kézi jóváhagyása</target> |
4600 | 4787 | <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">387</context></context-group> | |
4601 | <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">387</context></context-group></trans-unit> | 4788 | </trans-unit> |
4602 | <trans-unit id="4803992993548153434" datatype="html"> | 4789 | <trans-unit id="4803992993548153434" datatype="html"> |
4603 | <source>Automatically follow back instances</source> | 4790 | <source>Automatically follow back instances</source> |
4604 | <target state="translated">Példányok automatikus visszakövetése</target> | 4791 | <target state="translated">Példányok automatikus visszakövetése</target> |
4605 | 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">400</context></context-group> | |
4606 | <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">400</context></context-group></trans-unit> | 4793 | </trans-unit> |
4607 | <trans-unit id="2092224316392295720" datatype="html"> | 4794 | <trans-unit id="2092224316392295720" datatype="html"> |
4608 | <source>⚠️ This functionality requires a lot of attention and extra moderation.</source> | 4795 | <source>⚠️ This functionality requires a lot of attention and extra moderation.</source> |
4609 | <target state="translated">⚠️ Ez a funkció nagyon sok figyelmet és további moderálást igényel.</target> | 4796 | <target state="translated">⚠️ Ez a funkció nagyon sok figyelmet és további moderálást igényel.</target> |
4610 | 4797 | <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">135</context></context-group> | |
4611 | 4798 | <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">403</context></context-group> | |
4612 | 4799 | <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">416</context></context-group> | |
4613 | <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">135</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">403</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">416</context></context-group></trans-unit> | 4800 | </trans-unit> |
4614 | <trans-unit id="1718269478813020014" datatype="html"> | 4801 | <trans-unit id="1718269478813020014" datatype="html"> |
4615 | <source>Index URL</source> | 4802 | <source>Index URL</source> |
4616 | <target state="translated">Index URL</target> | 4803 | <target state="translated">Index URL</target> |
4617 | 4804 | <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">425</context></context-group> | |
4618 | <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">425</context></context-group></trans-unit> | 4805 | </trans-unit> |
4619 | <trans-unit id="173263206605027981" datatype="html"> | 4806 | <trans-unit id="173263206605027981" datatype="html"> |
4620 | <source>Automatically follow instances of a public index</source> | 4807 | <source>Automatically follow instances of a public index</source> |
4621 | <target state="translated">Egy nyilvános index példányainak automatikus követése</target> | 4808 | <target state="translated">Egy nyilvános index példányainak automatikus követése</target> |
4622 | 4809 | <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">413</context></context-group> | |
4623 | <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">413</context></context-group></trans-unit> | 4810 | </trans-unit> |
4624 | <trans-unit id="9076632742417302918" datatype="html"> | 4811 | <trans-unit id="9076632742417302918" datatype="html"> |
4625 | <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> | 4812 | <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> |
4626 | <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> | 4813 | <target state="translated">A <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">"/>dokumentációban<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> talál információkat a szükséges URL-ről </target> |
4627 | 4814 | <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">419</context></context-group> | |
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">419</context></context-group></trans-unit> | 4815 | </trans-unit> |
4629 | <trans-unit id="3946988229617310200" datatype="html"> | 4816 | <trans-unit id="3946988229617310200" datatype="html"> |
4630 | <source>ADMINISTRATORS</source> | 4817 | <source>ADMINISTRATORS</source> |
4631 | <target state="translated">RENDSZERGAZDÁK</target> | 4818 | <target state="translated">RENDSZERGAZDÁK</target> |
4632 | 4819 | <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">445</context></context-group> | |
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">445</context></context-group></trans-unit> | 4820 | </trans-unit> |
4634 | <trans-unit id="2149300564474427551"> | 4821 | <trans-unit id="2149300564474427551"> |
4635 | <source>Administrator</source> | 4822 | <source>Administrator</source> |
4636 | <target>Rendszergazda</target> | 4823 | <target>Rendszergazda</target> |
4637 | 4824 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group> | |
4638 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group></trans-unit> | 4825 | </trans-unit> |
4639 | <trans-unit id="3171683206914962995"> | 4826 | <trans-unit id="3171683206914962995"> |
4640 | <source>Admin email</source> | 4827 | <source>Admin email</source> |
4641 | <target>Rendszergazda e-mail</target> | 4828 | <target>Rendszergazda e-mail</target> |
4642 | 4829 | <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">451</context></context-group> | |
4643 | <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">451</context></context-group></trans-unit> | 4830 | </trans-unit> |
4644 | <trans-unit id="4722881456283329321"> | 4831 | <trans-unit id="4722881456283329321"> |
4645 | <source>Enable contact form</source> | 4832 | <source>Enable contact form</source> |
4646 | <target>Kapcsolatfelvételi űrlap engedélyezése</target> | 4833 | <target>Kapcsolatfelvételi űrlap engedélyezése</target> |
4647 | 4834 | <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">464</context></context-group> | |
4648 | <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">464</context></context-group></trans-unit> | 4835 | </trans-unit> |
4649 | |||
4650 | <trans-unit id="5926348345797688952" datatype="html"> | 4836 | <trans-unit id="5926348345797688952" datatype="html"> |
4651 | <source>VOD Transcoding</source> | 4837 | <source>VOD Transcoding</source> |
4652 | <target state="new">VOD Transcoding</target> | 4838 | <target state="translated">VOD Átkódolás</target> |
4653 | 4839 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">33</context></context-group> | |
4654 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 4840 | </trans-unit> |
4655 | <trans-unit id="1765095834299337775" datatype="html"> | 4841 | <trans-unit id="1765095834299337775" datatype="html"> |
4656 | <source>TWITTER</source> | 4842 | <source>TWITTER</source> |
4657 | <target state="translated">TWITTER</target> | 4843 | <target state="translated">TWITTER</target> |
4658 | 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">473</context></context-group> | |
4659 | <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> | 4845 | </trans-unit> |
4660 | <trans-unit id="3202133522706129143" datatype="html"> | 4846 | <trans-unit id="3202133522706129143" datatype="html"> |
4661 | <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> | 4847 | <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> |
4662 | <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> | 4848 | <target state="translated">Jobb hivatkozás előnézetekért adja meg a példányának Twitter fiókját. Ha nincs Twitter fiókja, hagyja alapértéken.</target> |
4663 | 4849 | <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">475</context></context-group> | |
4664 | <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">475</context></context-group></trans-unit> | 4850 | </trans-unit> |
4665 | <trans-unit id="4087837092261487511"> | 4851 | <trans-unit id="4087837092261487511"> |
4666 | <source>Your Twitter username</source> | 4852 | <source>Your Twitter username</source> |
4667 | <target>A Twitter felhasználóneve</target> | 4853 | <target>A Twitter felhasználóneve</target> |
4668 | 4854 | <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">486</context></context-group> | |
4669 | <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">486</context></context-group></trans-unit> | 4855 | </trans-unit> |
4670 | <trans-unit id="5648651824279408711" datatype="html"> | 4856 | <trans-unit id="5648651824279408711" datatype="html"> |
4671 | <source>Instance allowed by Twitter</source> | 4857 | <source>Instance allowed by Twitter</source> |
4672 | <target state="translated">Példány Twitter által engedélyezve</target> | 4858 | <target state="translated">Példány Twitter által engedélyezve</target> |
4673 | 4859 | <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">499</context></context-group> | |
4674 | <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">499</context></context-group></trans-unit><trans-unit id="2076338542820061819" datatype="html"> | 4860 | </trans-unit> |
4675 | <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> | 4861 | <trans-unit id="2076338542820061819" datatype="html"> |
4676 | 4862 | <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> | |
4677 | <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">504</context></context-group></trans-unit> | 4863 | <target state="translated">Ha a Twitteren engedélyezve van a példánya, akkor egy videólejátszó fog megjelenni a Twitter folyamban, ha PeerTube videót osztanak meg.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/> Ha nincs engedélyezve, akkor egy kép-kártya fog megjelenni, amely átirányít a PeerTube példányra.<x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/><x id="LINE_BREAK" ctype="lb" equiv-text="<br />"/> Jelölje ezt be, mentse a beállításokat és próbálja ki egy videó URL-el a saját példányáról (https://example.com/w/blabla) ezen a címen: <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>"/>. Így megállapíthatja, hogy engedélyezve van-e a példány. </target> |
4678 | 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">504</context></context-group> | |
4865 | </trans-unit> | ||
4679 | <trans-unit id="493135676263039396" datatype="html"> | 4866 | <trans-unit id="493135676263039396" datatype="html"> |
4680 | <source>LIVE</source> | 4867 | <source>LIVE</source> |
4681 | <target state="new">LIVE</target> | 4868 | <target state="translated">ÉLŐ</target> |
4682 | <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">5</context></context-group> | 4869 | <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">5</context></context-group> |
4683 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group> | 4870 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group> |
4684 | </trans-unit> | 4871 | </trans-unit> |
4685 | <trans-unit id="1429138002697017359" datatype="html"> | 4872 | <trans-unit id="1429138002697017359" datatype="html"> |
4686 | <source>Enable users of your instance to stream live.</source> | 4873 | <source>Enable users of your instance to stream live.</source> |
4687 | <target state="new"> Enable users of your instance to stream live. </target> | 4874 | <target state="translated">Lehetővé teszi a felhasználóknak élő közvetítések létrehozását.</target> |
4688 | <context-group purpose="location"> | 4875 | <context-group purpose="location"> |
4689 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> | 4876 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> |
4690 | <context context-type="linenumber">7,8</context> | 4877 | <context context-type="linenumber">7,8</context> |
@@ -4692,12 +4879,12 @@ The link will expire within 1 hour.</source> | |||
4692 | </trans-unit> | 4879 | </trans-unit> |
4693 | <trans-unit id="8894612824234881672" datatype="html"> | 4880 | <trans-unit id="8894612824234881672" datatype="html"> |
4694 | <source>⚠️ Enabling live streaming requires trust in your users and extra moderation work</source> | 4881 | <source>⚠️ Enabling live streaming requires trust in your users and extra moderation work</source> |
4695 | <target state="new">⚠️ Enabling live streaming requires trust in your users and extra moderation work</target> | 4882 | <target state="translated">⚠️ Az élő közvetítések engedélyezése bizalmat igényel a felhasználói felé és további moderálási munkát jelent</target> |
4696 | <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">22</context></context-group> | 4883 | <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">22</context></context-group> |
4697 | </trans-unit> | 4884 | </trans-unit> |
4698 | <trans-unit id="5205613575147327732" datatype="html"> | 4885 | <trans-unit id="5205613575147327732" datatype="html"> |
4699 | <source>If enabled, your server needs to accept incoming TCP traffic on port <x id="INTERPOLATION" equiv-text="{{ getLiveRTMPPort() }}"/></source> | 4886 | <source>If enabled, your server needs to accept incoming TCP traffic on port <x id="INTERPOLATION" equiv-text="{{ getLiveRTMPPort() }}"/></source> |
4700 | <target state="new">If enabled, your server needs to accept incoming TCP traffic on port <x id="INTERPOLATION" equiv-text="{{ getLiveRTMPPort() }}"/></target> | 4887 | <target state="translated">Engedélyezése esetén a szervernek fogadnia kell a TCP forgalmat ezen a kapun: <x id="INTERPOLATION" equiv-text="{{ getLiveRTMPPort() }}"/></target> |
4701 | <context-group purpose="location"> | 4888 | <context-group purpose="location"> |
4702 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> | 4889 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> |
4703 | <context context-type="linenumber">23</context> | 4890 | <context context-type="linenumber">23</context> |
@@ -4705,12 +4892,12 @@ The link will expire within 1 hour.</source> | |||
4705 | </trans-unit> | 4892 | </trans-unit> |
4706 | <trans-unit id="6421580347313273983" datatype="html"> | 4893 | <trans-unit id="6421580347313273983" datatype="html"> |
4707 | <source>Allow your users to automatically publish a replay of their live</source> | 4894 | <source>Allow your users to automatically publish a replay of their live</source> |
4708 | <target state="new">Allow your users to automatically publish a replay of their live</target> | 4895 | <target state="translated">Engedélyezi a felhasználóknak élő közvetítések automatikus közzétételét és visszajátszását</target> |
4709 | <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">31</context></context-group> | 4896 | <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">31</context></context-group> |
4710 | </trans-unit> | 4897 | </trans-unit> |
4711 | <trans-unit id="3472969629566153023" datatype="html"> | 4898 | <trans-unit id="3472969629566153023" datatype="html"> |
4712 | <source>If the user quota is reached, PeerTube will automatically terminate the live streaming</source> | 4899 | <source>If the user quota is reached, PeerTube will automatically terminate the live streaming</source> |
4713 | <target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4900 | <target state="translated">Ha a felhasználó túllépi a kvótáját, az élő közvetítés megszakad</target> |
4714 | <context-group purpose="location"> | 4901 | <context-group purpose="location"> |
4715 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> | 4902 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> |
4716 | <context context-type="linenumber">34,35</context> | 4903 | <context context-type="linenumber">34,35</context> |
@@ -4718,7 +4905,7 @@ The link will expire within 1 hour.</source> | |||
4718 | </trans-unit> | 4905 | </trans-unit> |
4719 | <trans-unit id="4420104899393268652" datatype="html"> | 4906 | <trans-unit id="4420104899393268652" datatype="html"> |
4720 | <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> | 4907 | <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> |
4721 | <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> | 4908 | <target state="translated">A példányon egyszerre létrehozható élő közvetítések maximális száma <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 a "korlátlan")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
4722 | <context-group purpose="location"> | 4909 | <context-group purpose="location"> |
4723 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> | 4910 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> |
4724 | <context context-type="linenumber">41</context> | 4911 | <context context-type="linenumber">41</context> |
@@ -4727,11 +4914,12 @@ The link will expire within 1 hour.</source> | |||
4727 | <trans-unit id="6830777508073747241" datatype="html"> | 4914 | <trans-unit id="6830777508073747241" datatype="html"> |
4728 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source> | 4915 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source> |
4729 | <target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4916 | <target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> |
4730 | 4917 | <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> | |
4731 | <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> | 4918 | <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> |
4919 | </trans-unit> | ||
4732 | <trans-unit id="7210210728441530221" datatype="html"> | 4920 | <trans-unit id="7210210728441530221" datatype="html"> |
4733 | <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> | 4921 | <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> |
4734 | <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> | 4922 | <target state="translated">Egy felhasználó által egyszerre létrehozható élő közvetítések maximális száma <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="text-muted">"/>(-1 a "korlátlan")<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
4735 | <context-group purpose="location"> | 4923 | <context-group purpose="location"> |
4736 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> | 4924 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> |
4737 | <context context-type="linenumber">54</context> | 4925 | <context context-type="linenumber">54</context> |
@@ -4739,22 +4927,22 @@ The link will expire within 1 hour.</source> | |||
4739 | </trans-unit> | 4927 | </trans-unit> |
4740 | <trans-unit id="6830777508073747241" datatype="html"> | 4928 | <trans-unit id="6830777508073747241" datatype="html"> |
4741 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source> | 4929 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source> |
4742 | <target state="new">{VAR_PLURAL, plural, =1 {live} other {lives}}</target> | 4930 | <target state="translated">{VAR_PLURAL, plural, =1 {élő} other {élő}}</target> |
4743 | <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> | 4931 | <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> |
4744 | </trans-unit> | 4932 | </trans-unit> |
4745 | <trans-unit id="1521259619066122077" datatype="html"> | 4933 | <trans-unit id="1521259619066122077" datatype="html"> |
4746 | <source>Max live duration</source> | 4934 | <source>Max live duration</source> |
4747 | <target state="new">Max live duration</target> | 4935 | <target state="translated">Élő közvetítés maximális hossza</target> |
4748 | <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">66</context></context-group> | 4936 | <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">66</context></context-group> |
4749 | </trans-unit> | 4937 | </trans-unit> |
4750 | <trans-unit id="5309195634424105927" datatype="html"> | 4938 | <trans-unit id="5309195634424105927" datatype="html"> |
4751 | <source>Live transcoding threads</source> | 4939 | <source>Live transcoding threads</source> |
4752 | <target state="new">Live transcoding threads</target> | 4940 | <target state="translated">Élő közvetítés átkódolási szálak</target> |
4753 | <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">128</context></context-group> | 4941 | <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">128</context></context-group> |
4754 | </trans-unit> | 4942 | </trans-unit> |
4755 | <trans-unit id="4240037618955024499" datatype="html"> | 4943 | <trans-unit id="4240037618955024499" datatype="html"> |
4756 | <source>will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding </source> | 4944 | <source>will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding </source> |
4757 | <target state="new"> will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding </target> | 4945 | <target state="translated">legfeljebb <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> lesz felhasználva VOD átkódolásra </target> |
4758 | <context-group purpose="location"> | 4946 | <context-group purpose="location"> |
4759 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> | 4947 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> |
4760 | <context context-type="linenumber">131,133</context> | 4948 | <context context-type="linenumber">131,133</context> |
@@ -4762,7 +4950,7 @@ The link will expire within 1 hour.</source> | |||
4762 | </trans-unit> | 4950 | </trans-unit> |
4763 | <trans-unit id="8489317904250057957" datatype="html"> | 4951 | <trans-unit id="8489317904250057957" datatype="html"> |
4764 | <source>will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding </source> | 4952 | <source>will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding </source> |
4765 | <target state="new"> will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding </target> | 4953 | <target state="translated">legalább <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> lesz felhasználva VOD átkódolásra </target> |
4766 | <context-group purpose="location"> | 4954 | <context-group purpose="location"> |
4767 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> | 4955 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> |
4768 | <context context-type="linenumber">135,137</context> | 4956 | <context context-type="linenumber">135,137</context> |
@@ -4770,36 +4958,38 @@ The link will expire within 1 hour.</source> | |||
4770 | </trans-unit> | 4958 | </trans-unit> |
4771 | <trans-unit id="1417246074503129277" datatype="html"> | 4959 | <trans-unit id="1417246074503129277" datatype="html"> |
4772 | <source>Live transcoding profile</source> | 4960 | <source>Live transcoding profile</source> |
4773 | <target state="new">Live transcoding profile</target> | 4961 | <target state="translated">Élő közvetítés átkódolási profil</target> |
4774 | <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">150</context></context-group> | 4962 | <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">150</context></context-group> |
4775 | </trans-unit> | 4963 | </trans-unit> |
4776 | <trans-unit id="8294583621306221742" datatype="html"> | 4964 | <trans-unit id="8294583621306221742" datatype="html"> |
4777 | <source>new live transcoding profiles can be added by PeerTube plugins</source> | 4965 | <source>new live transcoding profiles can be added by PeerTube plugins</source> |
4778 | <target state="new">new live transcoding profiles can be added by PeerTube plugins</target> | 4966 | <target state="translated">új élő közvetítés átkódolási profilok PeerTube bővítményekként telepíthetők</target> |
4779 | <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">151</context></context-group> | 4967 | <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">151</context></context-group> |
4780 | </trans-unit> | 4968 | </trans-unit> |
4781 | <trans-unit id="6727057461851446921" datatype="html"> | 4969 | <trans-unit id="6727057461851446921" datatype="html"> |
4782 | <source>Live resolutions to generate</source> | 4970 | <source>Live resolutions to generate</source> |
4783 | <target state="new">Live resolutions to generate</target> | 4971 | <target state="translated">Élő közvetítésekhez létrehozandó felbontások</target> |
4784 | <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">107</context></context-group> | 4972 | <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">107</context></context-group> |
4785 | </trans-unit> | 4973 | </trans-unit> |
4786 | <trans-unit id="2281161665447607254" datatype="html"> | 4974 | <trans-unit id="2281161665447607254" datatype="html"> |
4787 | <source>Allow live streaming</source> | 4975 | <source>Allow live streaming</source> |
4788 | <target state="new">Allow live streaming</target> | 4976 | <target state="translated">Élő közvetítések engedélyezése</target> |
4789 | <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">18</context></context-group> | 4977 | <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">18</context></context-group> |
4790 | </trans-unit> | 4978 | </trans-unit> |
4791 | <trans-unit id="6759167469686242835" datatype="html"> | 4979 | <trans-unit id="6759167469686242835" datatype="html"> |
4792 | <source>Transcoding enabled for live streams</source> | 4980 | <source>Transcoding enabled for live streams</source> |
4793 | <target state="new">Transcoding enabled for live streams</target> | 4981 | <target state="translated">Átkódolás engedélyezve élő közvetítésekhez</target> |
4794 | <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">101</context></context-group> | 4982 | <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">101</context></context-group> |
4795 | </trans-unit> | 4983 | </trans-unit> |
4796 | <trans-unit id="5975271795105968425" datatype="html"> | 4984 | <trans-unit id="5975271795105968425" datatype="html"> |
4797 | <source>Live streaming</source> | 4985 | <source>Live streaming</source> |
4798 | <target state="new">Live streaming</target> | 4986 | <target state="translated">Élő közvetítés</target> |
4799 | 4987 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">42</context></context-group> | |
4800 | 4988 | <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> | |
4801 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">42</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"> | 4989 | </trans-unit> |
4802 | <source>Advanced</source><target state="new">Advanced</target> | 4990 | <trans-unit id="6201638315245239510" datatype="html"> |
4991 | <source>Advanced</source> | ||
4992 | <target state="translated">Haladó</target> | ||
4803 | <context-group purpose="location"> | 4993 | <context-group purpose="location"> |
4804 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 4994 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
4805 | <context context-type="linenumber">51</context> | 4995 | <context context-type="linenumber">51</context> |
@@ -4821,7 +5011,7 @@ The link will expire within 1 hour.</source> | |||
4821 | </trans-unit> | 5011 | </trans-unit> |
4822 | <trans-unit id="3444148141968928069" datatype="html"> | 5012 | <trans-unit id="3444148141968928069" datatype="html"> |
4823 | <source>Input formats</source> | 5013 | <source>Input formats</source> |
4824 | <target state="new">Input formats</target> | 5014 | <target state="translated">Bemeneti formátumok</target> |
4825 | <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">46</context></context-group> | 5015 | <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">46</context></context-group> |
4826 | </trans-unit> | 5016 | </trans-unit> |
4827 | <trans-unit id="4560217482714993155"> | 5017 | <trans-unit id="4560217482714993155"> |
@@ -4836,7 +5026,7 @@ The link will expire within 1 hour.</source> | |||
4836 | </trans-unit> | 5026 | </trans-unit> |
4837 | <trans-unit id="2150024911136171" datatype="html"> | 5027 | <trans-unit id="2150024911136171" datatype="html"> |
4838 | <source>Allows users to upload <x id="INTERPOLATION" equiv-text="{{ additionalVideoExtensions }}"/> videos.</source> | 5028 | <source>Allows users to upload <x id="INTERPOLATION" equiv-text="{{ additionalVideoExtensions }}"/> videos.</source> |
4839 | <target state="new">Allows users to upload <x id="INTERPOLATION" equiv-text="{{ additionalVideoExtensions }}"/> videos.</target> | 5029 | <target state="translated">Lehetővé teszi <x id="INTERPOLATION" equiv-text="{{ additionalVideoExtensions }}"/> videók feltöltését.</target> |
4840 | <context-group purpose="location"> | 5030 | <context-group purpose="location"> |
4841 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5031 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
4842 | <context context-type="linenumber">54</context> | 5032 | <context context-type="linenumber">54</context> |
@@ -4849,27 +5039,27 @@ The link will expire within 1 hour.</source> | |||
4849 | </trans-unit> | 5039 | </trans-unit> |
4850 | <trans-unit id="8340360585610503574" datatype="html"> | 5040 | <trans-unit id="8340360585610503574" datatype="html"> |
4851 | <source>Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files.</source> | 5041 | <source>Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files.</source> |
4852 | <target state="new">Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files.</target> | 5042 | <target state="translated">Lehetővé teszti .mp3, .ogg, .wma, .flac, .aac, or .ac3 hangfájlok feltöltését.</target> |
4853 | <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">65</context></context-group> | 5043 | <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">65</context></context-group> |
4854 | </trans-unit> | 5044 | </trans-unit> |
4855 | <trans-unit id="5867513506373651775" datatype="html"> | 5045 | <trans-unit id="5867513506373651775" datatype="html"> |
4856 | <source>The file will be merged in a still image video with the preview file on upload.</source> | 5046 | <source>The file will be merged in a still image video with the preview file on upload.</source> |
4857 | <target state="new">The file will be merged in a still image video with the preview file on upload.</target> | 5047 | <target state="translated">A fájl egy állóképes videóvá kerül összefűzésre az előnézeti képpel.</target> |
4858 | <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">66</context></context-group> | 5048 | <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">66</context></context-group> |
4859 | </trans-unit> | 5049 | </trans-unit> |
4860 | <trans-unit id="2036818807823848377" datatype="html"> | 5050 | <trans-unit id="2036818807823848377" datatype="html"> |
4861 | <source>Output formats</source> | 5051 | <source>Output formats</source> |
4862 | <target state="new">Output formats</target> | 5052 | <target state="translated">Kimeneti formátumok</target> |
4863 | <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">73</context></context-group> | 5053 | <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">73</context></context-group> |
4864 | </trans-unit> | 5054 | </trans-unit> |
4865 | <trans-unit id="522057769554096255" datatype="html"> | 5055 | <trans-unit id="522057769554096255" datatype="html"> |
4866 | <source>WebTorrent enabled</source> | 5056 | <source>WebTorrent enabled</source> |
4867 | <target state="new">WebTorrent enabled</target> | 5057 | <target state="translated">WebTorrent bekapcsolva</target> |
4868 | <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">79</context></context-group> | 5058 | <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">79</context></context-group> |
4869 | </trans-unit> | 5059 | </trans-unit> |
4870 | <trans-unit id="8373385486403101567" datatype="html"> | 5060 | <trans-unit id="8373385486403101567" datatype="html"> |
4871 | <source>If you also enabled HLS support, it will multiply videos storage by 2</source> | 5061 | <source>If you also enabled HLS support, it will multiply videos storage by 2</source> |
4872 | <target state="new">If you also enabled HLS support, it will multiply videos storage by 2</target> | 5062 | <target state="translated">Ha bekapcsolta a HLS támogatást, az kétszeresére növeli a videó tárhelyet</target> |
4873 | <context-group purpose="location"> | 5063 | <context-group purpose="location"> |
4874 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5064 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
4875 | <context context-type="linenumber">83</context> | 5065 | <context context-type="linenumber">83</context> |
@@ -4882,7 +5072,7 @@ The link will expire within 1 hour.</source> | |||
4882 | </trans-unit> | 5072 | </trans-unit> |
4883 | <trans-unit id="7334484418359079994" datatype="html"> | 5073 | <trans-unit id="7334484418359079994" datatype="html"> |
4884 | <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> | 5074 | <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> |
4885 | <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> | 5075 | <target state="translated"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Az ffmpeg >= 4.1 verziója szükséges<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/><x id="START_PARAGRAPH" ctype="x-p" equiv-text="<p>"/>HLS lejátszólisták és fragmentált MP4 fájlok létrehozása az egyszerű WebTorrentnél jobb lejátszást eredményez:<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>"/>A felbontás váltás finomabb<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Gyorsabb lejátszás, különösen hosszú videóknál<x id="CLOSE_LIST_ITEM" ctype="x-li" equiv-text="</li>"/><x id="START_LIST_ITEM" ctype="x-li" equiv-text="<li>"/>Stabilabb lejátszás (kevesebb hiba és örökös töltés)<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>"/>Ha a WebTorrent támogatást is bekapcsolta, az megkétszerezi a videó tárhelyet<x id="CLOSE_PARAGRAPH" ctype="x-p" equiv-text="</p>"/></target> |
4886 | <context-group purpose="location"> | 5076 | <context-group purpose="location"> |
4887 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5077 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
4888 | <context context-type="linenumber">99,108</context> | 5078 | <context context-type="linenumber">99,108</context> |
@@ -4890,12 +5080,12 @@ The link will expire within 1 hour.</source> | |||
4890 | </trans-unit> | 5080 | </trans-unit> |
4891 | <trans-unit id="4748900450708089645" datatype="html"> | 5081 | <trans-unit id="4748900450708089645" datatype="html"> |
4892 | <source>Resolutions to generate per enabled format</source> | 5082 | <source>Resolutions to generate per enabled format</source> |
4893 | <target state="new">Resolutions to generate per enabled format</target> | 5083 | <target state="translated">A létrehozandó felbontások, engedélyezett formátumonként</target> |
4894 | <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">116</context></context-group> | 5084 | <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">116</context></context-group> |
4895 | </trans-unit> | 5085 | </trans-unit> |
4896 | <trans-unit id="5431196295724512251" datatype="html"> | 5086 | <trans-unit id="5431196295724512251" datatype="html"> |
4897 | <source>The original file resolution will be the default target if no option is selected.</source> | 5087 | <source>The original file resolution will be the default target if no option is selected.</source> |
4898 | <target state="new"> The original file resolution will be the default target if no option is selected. </target> | 5088 | <target state="translated">Az eredeti fájl felbontása lesz az alapértelmezett cél, ha nincs opció kiválasztva.</target> |
4899 | <context-group purpose="location"> | 5089 | <context-group purpose="location"> |
4900 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5090 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
4901 | <context context-type="linenumber">132,133</context> | 5091 | <context context-type="linenumber">132,133</context> |
@@ -4908,7 +5098,7 @@ The link will expire within 1 hour.</source> | |||
4908 | </trans-unit> | 5098 | </trans-unit> |
4909 | <trans-unit id="7815122216882553289" datatype="html"> | 5099 | <trans-unit id="7815122216882553289" datatype="html"> |
4910 | <source>will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding </source> | 5100 | <source>will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding </source> |
4911 | <target state="new"> will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding </target> | 5101 | <target state="translated">legfeljebb <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> lesz felhasználva élő közvetítés átkódolásra </target> |
4912 | <context-group purpose="location"> | 5102 | <context-group purpose="location"> |
4913 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5103 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
4914 | <context context-type="linenumber">146,148</context> | 5104 | <context context-type="linenumber">146,148</context> |
@@ -4916,7 +5106,7 @@ The link will expire within 1 hour.</source> | |||
4916 | </trans-unit> | 5106 | </trans-unit> |
4917 | <trans-unit id="8685484763568827375" datatype="html"> | 5107 | <trans-unit id="8685484763568827375" datatype="html"> |
4918 | <source>will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding </source> | 5108 | <source>will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding </source> |
4919 | <target state="new"> will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding </target> | 5109 | <target state="translated">legalább <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> lesz felhasználva élő közvetítés átkódolásra </target> |
4920 | <context-group purpose="location"> | 5110 | <context-group purpose="location"> |
4921 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5111 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
4922 | <context context-type="linenumber">150,152</context> | 5112 | <context context-type="linenumber">150,152</context> |
@@ -4924,7 +5114,7 @@ The link will expire within 1 hour.</source> | |||
4924 | </trans-unit> | 5114 | </trans-unit> |
4925 | <trans-unit id="7185278676178506632" datatype="html"> | 5115 | <trans-unit id="7185278676178506632" datatype="html"> |
4926 | <source>Transcoding jobs concurrency</source> | 5116 | <source>Transcoding jobs concurrency</source> |
4927 | <target state="new">Transcoding jobs concurrency</target> | 5117 | <target state="translated">Átkódolási folyamat konkurencia</target> |
4928 | <context-group purpose="location"> | 5118 | <context-group purpose="location"> |
4929 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5119 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
4930 | <context context-type="linenumber">166</context> | 5120 | <context context-type="linenumber">166</context> |
@@ -4932,7 +5122,7 @@ The link will expire within 1 hour.</source> | |||
4932 | </trans-unit> | 5122 | </trans-unit> |
4933 | <trans-unit id="1969393594784140832" datatype="html"> | 5123 | <trans-unit id="1969393594784140832" datatype="html"> |
4934 | <source>allows to transcode multiple files in parallel. ⚠️ Requires a PeerTube restart</source> | 5124 | <source>allows to transcode multiple files in parallel. ⚠️ Requires a PeerTube restart</source> |
4935 | <target state="new">allows to transcode multiple files in parallel. ⚠️ Requires a PeerTube restart</target> | 5125 | <target state="translated">lehetővé teszi több fájl párhuzamos átkódolását. ⚠️ A PeerTube újraindítása szükséges</target> |
4936 | <context-group purpose="location"> | 5126 | <context-group purpose="location"> |
4937 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5127 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
4938 | <context context-type="linenumber">167</context> | 5128 | <context context-type="linenumber">167</context> |
@@ -4940,12 +5130,12 @@ The link will expire within 1 hour.</source> | |||
4940 | </trans-unit> | 5130 | </trans-unit> |
4941 | <trans-unit id="2184317712452071847" datatype="html"> | 5131 | <trans-unit id="2184317712452071847" datatype="html"> |
4942 | <source>Transcoding profile</source> | 5132 | <source>Transcoding profile</source> |
4943 | <target state="new">Transcoding profile</target> | 5133 | <target state="translated">Átkódolási profil</target> |
4944 | <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">178</context></context-group> | 5134 | <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">178</context></context-group> |
4945 | </trans-unit> | 5135 | </trans-unit> |
4946 | <trans-unit id="6289966287765074028" datatype="html"> | 5136 | <trans-unit id="6289966287765074028" datatype="html"> |
4947 | <source>new transcoding profiles can be added by PeerTube plugins</source> | 5137 | <source>new transcoding profiles can be added by PeerTube plugins</source> |
4948 | <target state="new">new transcoding profiles can be added by PeerTube plugins</target> | 5138 | <target state="translated">új átkódolási profilok PeerTube bővítményekként telepíthetők</target> |
4949 | <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> | 5139 | <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> |
4950 | </trans-unit> | 5140 | </trans-unit> |
4951 | <trans-unit id="6879611446286948126" datatype="html"> | 5141 | <trans-unit id="6879611446286948126" datatype="html"> |
@@ -4955,7 +5145,7 @@ The link will expire within 1 hour.</source> | |||
4955 | </trans-unit> | 5145 | </trans-unit> |
4956 | <trans-unit id="5511334650211127631" datatype="html"> | 5146 | <trans-unit id="5511334650211127631" datatype="html"> |
4957 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | 5147 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> |
4958 | <target state="new"> Some files are not federated, and fetched when necessary. Define their caching policies. </target> | 5148 | <target state="translated">Néhány fájl nincs föderálva, és szükség esetén lesz letöltve. Határozza meg a gyorsítótárazási irányelveiket.</target> |
4959 | <context-group purpose="location"> | 5149 | <context-group purpose="location"> |
4960 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> | 5150 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> |
4961 | <context context-type="linenumber">7,8</context> | 5151 | <context context-type="linenumber">7,8</context> |
@@ -4968,7 +5158,7 @@ The link will expire within 1 hour.</source> | |||
4968 | </trans-unit> | 5158 | </trans-unit> |
4969 | <trans-unit id="3710881484246327863" datatype="html"> | 5159 | <trans-unit id="3710881484246327863" datatype="html"> |
4970 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source> | 5160 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source> |
4971 | <target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 5161 | <target state="translated">{VAR_PLURAL, plural, =1 {gyorsítótárazott kép} other {gyorsítótárazott kép}}</target> |
4972 | <context-group purpose="location"> | 5162 | <context-group purpose="location"> |
4973 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> | 5163 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> |
4974 | <context context-type="linenumber">22</context> | 5164 | <context context-type="linenumber">22</context> |
@@ -4981,7 +5171,7 @@ The link will expire within 1 hour.</source> | |||
4981 | </trans-unit> | 5171 | </trans-unit> |
4982 | <trans-unit id="6193666854590647323" datatype="html"> | 5172 | <trans-unit id="6193666854590647323" datatype="html"> |
4983 | <source>{VAR_PLURAL, plural, =1 {cached caption} other {cached captions}}</source> | 5173 | <source>{VAR_PLURAL, plural, =1 {cached caption} other {cached captions}}</source> |
4984 | <target state="new">{VAR_PLURAL, plural, =1 {cached caption} other {cached captions}}</target> | 5174 | <target state="translated">{VAR_PLURAL, plural, =1 {gyorsítótárazott felirat} other {gyorsítótárazott felirat}}</target> |
4985 | <context-group purpose="location"> | 5175 | <context-group purpose="location"> |
4986 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> | 5176 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> |
4987 | <context context-type="linenumber">36</context> | 5177 | <context context-type="linenumber">36</context> |
@@ -4989,7 +5179,7 @@ The link will expire within 1 hour.</source> | |||
4989 | </trans-unit> | 5179 | </trans-unit> |
4990 | <trans-unit id="330647913034301472" datatype="html"> | 5180 | <trans-unit id="330647913034301472" datatype="html"> |
4991 | <source>Number of video torrents to keep in cache</source> | 5181 | <source>Number of video torrents to keep in cache</source> |
4992 | <target state="new">Number of video torrents to keep in cache</target> | 5182 | <target state="translated">A gyorsítótárban tartandó videó torrentek száma</target> |
4993 | <context-group purpose="location"> | 5183 | <context-group purpose="location"> |
4994 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> | 5184 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> |
4995 | <context context-type="linenumber">43</context> | 5185 | <context context-type="linenumber">43</context> |
@@ -4997,7 +5187,7 @@ The link will expire within 1 hour.</source> | |||
4997 | </trans-unit> | 5187 | </trans-unit> |
4998 | <trans-unit id="4613961764793311850" datatype="html"> | 5188 | <trans-unit id="4613961764793311850" datatype="html"> |
4999 | <source>{VAR_PLURAL, plural, =1 {cached torrent} other {cached torrents}}</source> | 5189 | <source>{VAR_PLURAL, plural, =1 {cached torrent} other {cached torrents}}</source> |
5000 | <target state="new">{VAR_PLURAL, plural, =1 {cached torrent} other {cached torrents}}</target> | 5190 | <target state="translated">{VAR_PLURAL, plural, =1 {gyorsítótárazott torrent} other {gyorsítótárazott torrent}}</target> |
5001 | <context-group purpose="location"> | 5191 | <context-group purpose="location"> |
5002 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> | 5192 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> |
5003 | <context context-type="linenumber">50</context> | 5193 | <context context-type="linenumber">50</context> |
@@ -5010,7 +5200,7 @@ The link will expire within 1 hour.</source> | |||
5010 | </trans-unit> | 5200 | </trans-unit> |
5011 | <trans-unit id="1714039296068260295" datatype="html"> | 5201 | <trans-unit id="1714039296068260295" datatype="html"> |
5012 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | 5202 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> |
5013 | <target state="new"> Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. </target> | 5203 | <target state="translated">Apró módosításokhoz a PeerTube példányán, amikor egy bővítmény vagy egy téma létrehozás túlzás.</target> |
5014 | <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">65</context></context-group> | 5204 | <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">65</context></context-group> |
5015 | </trans-unit> | 5205 | </trans-unit> |
5016 | <trans-unit id="6180346896314915203"> | 5206 | <trans-unit id="6180346896314915203"> |
@@ -5020,7 +5210,7 @@ The link will expire within 1 hour.</source> | |||
5020 | </trans-unit> | 5210 | </trans-unit> |
5021 | <trans-unit id="4067880101082150743" datatype="html"> | 5211 | <trans-unit id="4067880101082150743" datatype="html"> |
5022 | <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> | 5212 | <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> |
5023 | <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> | 5213 | <target state="translated">Írjon közvetlenül JavaScript kódot.<x id="LINE_BREAK" ctype="lb" equiv-text="&lt;br /&gt;"/>Példa: <<x id="START_TAG_PRE" ctype="x-pre" equiv-text="&lt;pre&gt;"/>console.log('az én példányom csodálatos');<x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="&lt;/pre&gt;"/></target> |
5024 | <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">78</context></context-group> | 5214 | <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">78</context></context-group> |
5025 | </trans-unit> | 5215 | </trans-unit> |
5026 | <trans-unit id="5464209657969421100" datatype="html"> | 5216 | <trans-unit id="5464209657969421100" datatype="html"> |
@@ -5031,31 +5221,24 @@ color: red; | |||
5031 | color: red; | 5221 | color: red; |
5032 | <x id="INTERPOLATION_1" equiv-text="{{ '}' }"/> | 5222 | <x id="INTERPOLATION_1" equiv-text="{{ '}' }"/> |
5033 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></source> | 5223 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></source> |
5034 | <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=" {{ '{' }"/> | 5224 | <target state="translated">Írjon közvetlenül CSS kódot. Például:<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>"/> Kezdje ezzel: <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="<em>"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="</em> "/> stílusok felülírásához. Például:<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> |
5035 | color: red; | ||
5036 | <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> | ||
5037 | <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=" {{ '{' }"/> | ||
5038 | color: red; | ||
5039 | <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> | ||
5040 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></target> | ||
5041 | <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">97</context></context-group> | 5225 | <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">97</context></context-group> |
5042 | </trans-unit> | 5226 | </trans-unit> |
5043 | <trans-unit id="283725429207896837" datatype="html"> | 5227 | <trans-unit id="283725429207896837" datatype="html"> |
5044 | <source>You cannot allow live replay if you don't enable transcoding.</source> | 5228 | <source>You cannot allow live replay if you don't enable transcoding.</source> |
5045 | <target state="new"> You cannot allow live replay if you don't enable transcoding. </target> | 5229 | <target state="translated">Nem tudja engedélyezni az élő közvetítés visszajátszását, ha nem engedélyezi az átkódolást.</target> |
5046 | 5230 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">77</context></context-group> | |
5047 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">77</context></context-group></trans-unit> | 5231 | </trans-unit> |
5048 | |||
5049 | <trans-unit id="8167543029214637769" datatype="html"> | 5232 | <trans-unit id="8167543029214637769" datatype="html"> |
5050 | <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> | 5233 | <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> |
5051 | <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> | 5234 | <target state="translated">Hibák vannak az űrlapon: <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> |
5052 | 5235 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">67</context></context-group> | |
5053 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> | 5236 | </trans-unit> |
5054 | <trans-unit id="1445676851449000175"> | 5237 | <trans-unit id="1445676851449000175"> |
5055 | <source>Update configuration</source> | 5238 | <source>Update configuration</source> |
5056 | <target>Beállítás frissítése</target> | 5239 | <target>Beállítás frissítése</target> |
5057 | 5240 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">80</context></context-group> | |
5058 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">80</context></context-group></trans-unit> | 5241 | </trans-unit> |
5059 | <trans-unit id="5439158575454281141" datatype="html"> | 5242 | <trans-unit id="5439158575454281141" datatype="html"> |
5060 | <source>VIDEO SETTINGS</source> | 5243 | <source>VIDEO SETTINGS</source> |
5061 | <target state="translated">VIDEOBEÁLLÍTÁSOK</target> | 5244 | <target state="translated">VIDEOBEÁLLÍTÁSOK</target> |
@@ -5091,137 +5274,169 @@ color: red; | |||
5091 | <trans-unit id="4915431133669985304"> | 5274 | <trans-unit id="4915431133669985304"> |
5092 | <source>Profile</source> | 5275 | <source>Profile</source> |
5093 | <target>Profil</target> | 5276 | <target>Profil</target> |
5094 | 5277 | <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> | |
5095 | <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> | 5278 | </trans-unit> |
5096 | <trans-unit id="1963136290621768454" datatype="html"> | 5279 | <trans-unit id="1963136290621768454" datatype="html"> |
5097 | <source>Resolution</source> | 5280 | <source>Resolution</source> |
5098 | <target state="translated">Felbontás</target> | 5281 | <target state="translated">Felbontás</target> |
5099 | 5282 | <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> | |
5100 | <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> | 5283 | </trans-unit> |
5101 | <trans-unit id="7814358426066520520" datatype="html"> | 5284 | <trans-unit id="7814358426066520520" datatype="html"> |
5102 | <source>Aspect ratio</source> | 5285 | <source>Aspect ratio</source> |
5103 | <target state="translated">Méretarány</target> | 5286 | <target state="translated">Méretarány</target> |
5104 | 5287 | <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> | |
5105 | <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> | 5288 | </trans-unit> |
5106 | <trans-unit id="44862519224794374" datatype="html"> | 5289 | <trans-unit id="44862519224794374" datatype="html"> |
5107 | <source>Average frame rate</source> | 5290 | <source>Average frame rate</source> |
5108 | <target state="translated">Átlagos képkockasebesség</target> | 5291 | <target state="translated">Átlagos képkockasebesség</target> |
5109 | 5292 | <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> | |
5110 | <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> | 5293 | </trans-unit> |
5111 | <trans-unit id="5053683525387462246" datatype="html"> | 5294 | <trans-unit id="5053683525387462246" datatype="html"> |
5112 | <source>Pixel format</source> | 5295 | <source>Pixel format</source> |
5113 | <target state="translated">Képpontformátum</target> | 5296 | <target state="translated">Képpontformátum</target> |
5114 | 5297 | <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> | |
5115 | <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> | 5298 | </trans-unit> |
5116 | <trans-unit id="7858676566953242358" datatype="html"> | 5299 | <trans-unit id="7858676566953242358" datatype="html"> |
5117 | <source>Sample rate</source> | 5300 | <source>Sample rate</source> |
5118 | <target state="translated">Mintavételi arány</target> | 5301 | <target state="translated">Mintavételi arány</target> |
5119 | 5302 | <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> | |
5120 | <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> | 5303 | </trans-unit> |
5121 | <trans-unit id="5403856660543890284" datatype="html"> | 5304 | <trans-unit id="5403856660543890284" datatype="html"> |
5122 | <source>Channel Layout</source> | 5305 | <source>Channel Layout</source> |
5123 | <target state="translated">Csatorna elrendezése</target> | 5306 | <target state="translated">Csatorna elrendezése</target> |
5124 | 5307 | <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> | |
5125 | <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"> | 5308 | </trans-unit> |
5126 | <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 | 5309 | <trans-unit id="6317170736181476800" datatype="html"> |
5127 | >"/></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 | 5310 | <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> |
5128 | >"/></target> | 5311 | <target state="translated">Frissítse <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)">"/>a beállításokat<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a >"/></target> |
5129 | <context-group purpose="location"> | 5312 | <context-group purpose="location"> |
5130 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5313 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5131 | <context context-type="linenumber">3,7</context> | 5314 | <context context-type="linenumber">3,7</context> |
5132 | </context-group> | 5315 | </context-group> |
5133 | </trans-unit><trans-unit id="1405600824334286337" datatype="html"> | 5316 | </trans-unit> |
5134 | <source>More filters</source><target state="new">More filters</target> | 5317 | <trans-unit id="1405600824334286337" datatype="html"> |
5318 | <source>More filters</source> | ||
5319 | <target state="translated">Több szűrő</target> | ||
5135 | <context-group purpose="location"> | 5320 | <context-group purpose="location"> |
5136 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5321 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5137 | <context context-type="linenumber">20</context> | 5322 | <context context-type="linenumber">20</context> |
5138 | </context-group> | 5323 | </context-group> |
5139 | </trans-unit><trans-unit id="8867436033163146458" datatype="html"> | 5324 | </trans-unit> |
5140 | <source>Less filters</source><target state="new">Less filters</target> | 5325 | <trans-unit id="8867436033163146458" datatype="html"> |
5326 | <source>Less filters</source> | ||
5327 | <target state="translated">Kevesebb szűrő</target> | ||
5141 | <context-group purpose="location"> | 5328 | <context-group purpose="location"> |
5142 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5329 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5143 | <context context-type="linenumber">21</context> | 5330 | <context context-type="linenumber">21</context> |
5144 | </context-group> | 5331 | </context-group> |
5145 | </trans-unit><trans-unit id="7028708681117573961" datatype="html"> | 5332 | </trans-unit> |
5146 | <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> | 5333 | <trans-unit id="7028708681117573961" datatype="html"> |
5334 | <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> | ||
5335 | <target state="translated">Rendezés: <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Közelmúltban felvett"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
5147 | <context-group purpose="location"> | 5336 | <context-group purpose="location"> |
5148 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5337 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5149 | <context context-type="linenumber">46</context> | 5338 | <context context-type="linenumber">46</context> |
5150 | </context-group> | 5339 | </context-group> |
5151 | </trans-unit><trans-unit id="5691258609562173281" datatype="html"> | 5340 | </trans-unit> |
5152 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"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>"/>"Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5341 | <trans-unit id="5691258609562173281" datatype="html"> |
5342 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | ||
5343 | <target state="translated">Rendezés: <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Megtekintések"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
5153 | <context-group purpose="location"> | 5344 | <context-group purpose="location"> |
5154 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5345 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5155 | <context context-type="linenumber">48</context> | 5346 | <context context-type="linenumber">48</context> |
5156 | </context-group> | 5347 | </context-group> |
5157 | </trans-unit><trans-unit id="3224510615614621760" datatype="html"> | 5348 | </trans-unit> |
5158 | <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> | 5349 | <trans-unit id="3224510615614621760" datatype="html"> |
5350 | <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> | ||
5351 | <target state="translated">Rendezés: <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Felkapott"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
5159 | <context-group purpose="location"> | 5352 | <context-group purpose="location"> |
5160 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5353 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5161 | <context context-type="linenumber">49</context> | 5354 | <context context-type="linenumber">49</context> |
5162 | </context-group> | 5355 | </context-group> |
5163 | </trans-unit><trans-unit id="3082811226222076503" datatype="html"> | 5356 | </trans-unit> |
5164 | <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> | 5357 | <trans-unit id="3082811226222076503" datatype="html"> |
5358 | <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> | ||
5359 | <target state="translated">Rendezés: <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Legjobb"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
5165 | <context-group purpose="location"> | 5360 | <context-group purpose="location"> |
5166 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5361 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5167 | <context context-type="linenumber">50</context> | 5362 | <context context-type="linenumber">50</context> |
5168 | </context-group> | 5363 | </context-group> |
5169 | </trans-unit><trans-unit id="4322133526902910662" datatype="html"> | 5364 | </trans-unit> |
5170 | <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> | 5365 | <trans-unit id="4322133526902910662" datatype="html"> |
5366 | <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> | ||
5367 | <target state="translated">Rendezés: <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Kedvelések"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
5171 | <context-group purpose="location"> | 5368 | <context-group purpose="location"> |
5172 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5369 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5173 | <context context-type="linenumber">51</context> | 5370 | <context context-type="linenumber">51</context> |
5174 | </context-group> | 5371 | </context-group> |
5175 | </trans-unit><trans-unit id="2343321245279384373" datatype="html"> | 5372 | </trans-unit> |
5176 | <source>Languages:</source><target state="new">Languages:</target> | 5373 | <trans-unit id="2343321245279384373" datatype="html"> |
5374 | <source>Languages:</source> | ||
5375 | <target state="translated">Nyelvek:</target> | ||
5177 | <context-group purpose="location"> | 5376 | <context-group purpose="location"> |
5178 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5377 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5179 | <context context-type="linenumber">59</context> | 5378 | <context context-type="linenumber">59</context> |
5180 | </context-group> | 5379 | </context-group> |
5181 | </trans-unit><trans-unit id="5063779773341398537" datatype="html"> | 5380 | </trans-unit> |
5182 | <source>Sensitive content:</source><target state="new">Sensitive content:</target> | 5381 | <trans-unit id="5063779773341398537" datatype="html"> |
5382 | <source>Sensitive content:</source> | ||
5383 | <target state="translated">Érzékeny tartalom:</target> | ||
5183 | <context-group purpose="location"> | 5384 | <context-group purpose="location"> |
5184 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5385 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5185 | <context context-type="linenumber">66</context> | 5386 | <context context-type="linenumber">66</context> |
5186 | </context-group> | 5387 | </context-group> |
5187 | </trans-unit><trans-unit id="5723033003381016192" datatype="html"> | 5388 | </trans-unit> |
5188 | <source>Scope:</source><target state="new">Scope:</target> | 5389 | <trans-unit id="5723033003381016192" datatype="html"> |
5390 | <source>Scope:</source> | ||
5391 | <target state="translated">Hatókör:</target> | ||
5189 | <context-group purpose="location"> | 5392 | <context-group purpose="location"> |
5190 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5393 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5191 | <context context-type="linenumber">81</context> | 5394 | <context context-type="linenumber">81</context> |
5192 | </context-group> | 5395 | </context-group> |
5193 | </trans-unit><trans-unit id="8481241275509347668" datatype="html"> | 5396 | </trans-unit> |
5194 | <source>Local videos (this instance)</source><target state="new">Local videos (this instance)</target> | 5397 | <trans-unit id="8481241275509347668" datatype="html"> |
5398 | <source>Local videos (this instance)</source> | ||
5399 | <target state="translated">Helyi videók (ez a példány)</target> | ||
5195 | <context-group purpose="location"> | 5400 | <context-group purpose="location"> |
5196 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5401 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5197 | <context context-type="linenumber">85</context> | 5402 | <context context-type="linenumber">85</context> |
5198 | </context-group> | 5403 | </context-group> |
5199 | </trans-unit><trans-unit id="8383401711408398806" datatype="html"> | 5404 | </trans-unit> |
5200 | <source>Federated videos (this instance + followed instances)</source><target state="new">Federated videos (this instance + followed instances)</target> | 5405 | <trans-unit id="8383401711408398806" datatype="html"> |
5406 | <source>Federated videos (this instance + followed instances)</source> | ||
5407 | <target state="translated">Föderált videók (ez a példány + követett példányok)</target> | ||
5201 | <context-group purpose="location"> | 5408 | <context-group purpose="location"> |
5202 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5409 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5203 | <context context-type="linenumber">90</context> | 5410 | <context context-type="linenumber">90</context> |
5204 | </context-group> | 5411 | </context-group> |
5205 | </trans-unit><trans-unit id="2736556170366900089" datatype="html"> | 5412 | </trans-unit> |
5206 | <source>Type:</source><target state="new">Type:</target> | 5413 | <trans-unit id="2736556170366900089" datatype="html"> |
5414 | <source>Type:</source> | ||
5415 | <target state="translated">Típus:</target> | ||
5207 | <context-group purpose="location"> | 5416 | <context-group purpose="location"> |
5208 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5417 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5209 | <context context-type="linenumber">95</context> | 5418 | <context context-type="linenumber">95</context> |
5210 | </context-group> | 5419 | </context-group> |
5211 | </trans-unit><trans-unit id="1744425032255703211" datatype="html"> | 5420 | </trans-unit> |
5212 | <source>VOD & Live videos</source><target state="new">VOD & Live videos</target> | 5421 | <trans-unit id="1744425032255703211" datatype="html"> |
5422 | <source>VOD & Live videos</source> | ||
5423 | <target state="translated">VOD és élő videók</target> | ||
5213 | <context-group purpose="location"> | 5424 | <context-group purpose="location"> |
5214 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5425 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5215 | <context context-type="linenumber">99</context> | 5426 | <context context-type="linenumber">99</context> |
5216 | </context-group> | 5427 | </context-group> |
5217 | </trans-unit><trans-unit id="1370537846415473089" datatype="html"> | 5428 | </trans-unit> |
5218 | <source>Categories:</source><target state="new">Categories:</target> | 5429 | <trans-unit id="1370537846415473089" datatype="html"> |
5430 | <source>Categories:</source> | ||
5431 | <target state="translated">Kategóriák:</target> | ||
5219 | <context-group purpose="location"> | 5432 | <context-group purpose="location"> |
5220 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5433 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5221 | <context context-type="linenumber">114</context> | 5434 | <context context-type="linenumber">114</context> |
5222 | </context-group> | 5435 | </context-group> |
5223 | </trans-unit><trans-unit id="4250125031269088402" datatype="html"> | 5436 | </trans-unit> |
5224 | <source>Moderation:</source><target state="new">Moderation:</target> | 5437 | <trans-unit id="4250125031269088402" datatype="html"> |
5438 | <source>Moderation:</source> | ||
5439 | <target state="translated">Moderálás:</target> | ||
5225 | <context-group purpose="location"> | 5440 | <context-group purpose="location"> |
5226 | <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> |
5227 | <context context-type="linenumber">120</context> | 5442 | <context context-type="linenumber">120</context> |
@@ -5266,7 +5481,7 @@ color: red; | |||
5266 | </trans-unit> | 5481 | </trans-unit> |
5267 | <trans-unit id="7350483582490037954" datatype="html"> | 5482 | <trans-unit id="7350483582490037954" datatype="html"> |
5268 | <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> | 5483 | <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> |
5269 | <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> | 5484 | <target state="translated">Az <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Elrejtés<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> vagy a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>Bélyegképek elhomályosítása<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> beállításokkal megerősítés szükséges a videó megnézéséhez. </target> |
5270 | <context-group purpose="location"> | 5485 | <context-group purpose="location"> |
5271 | <context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context> | 5486 | <context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context> |
5272 | <context context-type="linenumber">8,9</context> | 5487 | <context context-type="linenumber">8,9</context> |
@@ -5275,9 +5490,9 @@ color: red; | |||
5275 | <trans-unit id="4409859601539810260" datatype="html"> | 5490 | <trans-unit id="4409859601539810260" datatype="html"> |
5276 | <source>Policy for sensitive videos</source> | 5491 | <source>Policy for sensitive videos</source> |
5277 | <target state="translated">Érzékeny videók irányelve</target> | 5492 | <target state="translated">Érzékeny videók irányelve</target> |
5278 | 5493 | <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> | |
5279 | 5494 | <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> | |
5280 | <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> | 5495 | </trans-unit> |
5281 | <trans-unit id="2864176699435587977" datatype="html"> | 5496 | <trans-unit id="2864176699435587977" datatype="html"> |
5282 | <source>Only display videos in the following languages/subtitles</source> | 5497 | <source>Only display videos in the following languages/subtitles</source> |
5283 | <target state="translated">Csak a következő nyelveken vagy felirattal elérhető videók megjelenítése</target> | 5498 | <target state="translated">Csak a következő nyelveken vagy felirattal elérhető videók megjelenítése</target> |
@@ -5291,9 +5506,9 @@ color: red; | |||
5291 | <trans-unit id="2658703380934466003" datatype="html"> | 5506 | <trans-unit id="2658703380934466003" datatype="html"> |
5292 | <source>Add a new language</source> | 5507 | <source>Add a new language</source> |
5293 | <target state="translated">Új nyelv hozzáadása</target> | 5508 | <target state="translated">Új nyelv hozzáadása</target> |
5294 | 5509 | <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> | |
5295 | 5510 | <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> | |
5296 | <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> | 5511 | </trans-unit> |
5297 | <trans-unit id="1530331428384894781" datatype="html"> | 5512 | <trans-unit id="1530331428384894781" datatype="html"> |
5298 | <source><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> is awaiting email verification </source> | 5513 | <source><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> is awaiting email verification </source> |
5299 | <target state="translated"><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> e-mail ellenőrzésre vár </target> | 5514 | <target state="translated"><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> e-mail ellenőrzésre vár </target> |
@@ -5328,8 +5543,9 @@ color: red; | |||
5328 | <trans-unit id="4844578664427956129"> | 5543 | <trans-unit id="4844578664427956129"> |
5329 | <source>Change ownership</source> | 5544 | <source>Change ownership</source> |
5330 | <target>Tulajdonjog megváltoztatása</target> | 5545 | <target>Tulajdonjog megváltoztatása</target> |
5331 | 5546 | <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> | |
5332 | <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">180</context></context-group></trans-unit> | 5547 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">180</context></context-group> |
5548 | </trans-unit> | ||
5333 | <trans-unit id="4561174610228620528"> | 5549 | <trans-unit id="4561174610228620528"> |
5334 | <source>Select the next owner</source> | 5550 | <source>Select the next owner</source> |
5335 | <target>A következő tulajdonos kiválasztása</target> | 5551 | <target>A következő tulajdonos kiválasztása</target> |
@@ -5337,27 +5553,27 @@ color: red; | |||
5337 | </trans-unit> | 5553 | </trans-unit> |
5338 | <trans-unit id="1788875035518441092" datatype="html"> | 5554 | <trans-unit id="1788875035518441092" datatype="html"> |
5339 | <source>Last published first</source> | 5555 | <source>Last published first</source> |
5340 | <target state="new">Last published first</target> | 5556 | <target state="translated">Legutóbb közzétettek előre</target> |
5341 | <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> | 5557 | <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> |
5342 | </trans-unit> | 5558 | </trans-unit> |
5343 | <trans-unit id="4541072509002204177" datatype="html"> | 5559 | <trans-unit id="4541072509002204177" datatype="html"> |
5344 | <source>Last created first</source> | 5560 | <source>Last created first</source> |
5345 | <target state="new">Last created first</target> | 5561 | <target state="translated">Legutóbb létrehozottak előre</target> |
5346 | <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> | 5562 | <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> |
5347 | </trans-unit> | 5563 | </trans-unit> |
5348 | <trans-unit id="1142493792593089647" datatype="html"> | 5564 | <trans-unit id="1142493792593089647" datatype="html"> |
5349 | <source>Most viewed first</source> | 5565 | <source>Most viewed first</source> |
5350 | <target state="new">Most viewed first</target> | 5566 | <target state="translated">Legtöbbet megtekintettek előre</target> |
5351 | <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> | 5567 | <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> |
5352 | </trans-unit> | 5568 | </trans-unit> |
5353 | <trans-unit id="8108088952881606566" datatype="html"> | 5569 | <trans-unit id="8108088952881606566" datatype="html"> |
5354 | <source>Most liked first</source> | 5570 | <source>Most liked first</source> |
5355 | <target state="new">Most liked first</target> | 5571 | <target state="translated">Legtöbbször kedveltek előre</target> |
5356 | <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> | 5572 | <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> |
5357 | </trans-unit> | 5573 | </trans-unit> |
5358 | <trans-unit id="2782422473180760140" datatype="html"> | 5574 | <trans-unit id="2782422473180760140" datatype="html"> |
5359 | <source>Longest first</source> | 5575 | <source>Longest first</source> |
5360 | <target state="new">Longest first</target> | 5576 | <target state="translated">Leghosszabb előre</target> |
5361 | <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> | 5577 | <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> |
5362 | </trans-unit> | 5578 | </trans-unit> |
5363 | <trans-unit id="8714145624854863455"> | 5579 | <trans-unit id="8714145624854863455"> |
@@ -5370,7 +5586,6 @@ color: red; | |||
5370 | <target state="translated">Válasszon egy csatornát a videó fogadásához</target> | 5586 | <target state="translated">Válasszon egy csatornát a videó fogadásához</target> |
5371 | <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> | 5587 | <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> |
5372 | </trans-unit> | 5588 | </trans-unit> |
5373 | |||
5374 | <trans-unit id="3610344835750059476" datatype="html"> | 5589 | <trans-unit id="3610344835750059476" datatype="html"> |
5375 | <source>My ownership changes</source> | 5590 | <source>My ownership changes</source> |
5376 | <target state="translated">Saját tulajdonosváltozások</target> | 5591 | <target state="translated">Saját tulajdonosváltozások</target> |
@@ -5394,9 +5609,9 @@ color: red; | |||
5394 | <trans-unit id="5417361655914085905" datatype="html"> | 5609 | <trans-unit id="5417361655914085905" datatype="html"> |
5395 | <source>Account page</source> | 5610 | <source>Account page</source> |
5396 | <target state="translated">Fiókoldal</target> | 5611 | <target state="translated">Fiókoldal</target> |
5397 | 5612 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">70</context></context-group> | |
5398 | 5613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">76</context></context-group> | |
5399 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">70</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">76</context></context-group></trans-unit> | 5614 | </trans-unit> |
5400 | <trans-unit id="187187500641108332" datatype="html"> | 5615 | <trans-unit id="187187500641108332" datatype="html"> |
5401 | <source><x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> </source> | 5616 | <source><x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> </source> |
5402 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> </target> | 5617 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> </target> |
@@ -5410,13 +5625,13 @@ color: red; | |||
5410 | <trans-unit id="4247400351982331798" datatype="html"> | 5625 | <trans-unit id="4247400351982331798" datatype="html"> |
5411 | <source>Account settings</source> | 5626 | <source>Account settings</source> |
5412 | <target state="translated">Fiókbeállítások</target> | 5627 | <target state="translated">Fiókbeállítások</target> |
5413 | 5628 | <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> | |
5414 | <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> | 5629 | </trans-unit> |
5415 | <trans-unit id="2864486939135008600" datatype="html"> | 5630 | <trans-unit id="2864486939135008600" datatype="html"> |
5416 | <source>Playlist elements</source> | 5631 | <source>Playlist elements</source> |
5417 | <target state="translated">Lejátszólista elemek</target> | 5632 | <target state="translated">Lejátszólista elemek</target> |
5418 | 5633 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">57</context></context-group> | |
5419 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">57</context></context-group></trans-unit> | 5634 | </trans-unit> |
5420 | <trans-unit id="7801453816697513153" datatype="html"> | 5635 | <trans-unit id="7801453816697513153" datatype="html"> |
5421 | <source>My imports</source> | 5636 | <source>My imports</source> |
5422 | <target state="translated">Saját importok</target> | 5637 | <target state="translated">Saját importok</target> |
@@ -5426,13 +5641,13 @@ color: red; | |||
5426 | <trans-unit id="7000850040589508423" datatype="html"> | 5641 | <trans-unit id="7000850040589508423" datatype="html"> |
5427 | <source>Create video channel</source> | 5642 | <source>Create video channel</source> |
5428 | <target state="translated">Videocsatorna létrehozása</target> | 5643 | <target state="translated">Videocsatorna létrehozása</target> |
5429 | 5644 | <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> | |
5430 | <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> | 5645 | </trans-unit> |
5431 | <trans-unit id="5700655611297335752" datatype="html"> | 5646 | <trans-unit id="5700655611297335752" datatype="html"> |
5432 | <source>No channel found.</source> | 5647 | <source>No channel found.</source> |
5433 | <target state="new">No channel found.</target> | 5648 | <target state="translated">Nem található csatorna.</target> |
5434 | 5649 | <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> | |
5435 | <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> | 5650 | </trans-unit> |
5436 | <trans-unit id="5500467336262464724"> | 5651 | <trans-unit id="5500467336262464724"> |
5437 | <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers </source> | 5652 | <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers </source> |
5438 | <target> | 5653 | <target> |
@@ -5454,7 +5669,7 @@ color: red; | |||
5454 | </trans-unit> | 5669 | </trans-unit> |
5455 | <trans-unit id="3582855804901374179" datatype="html"> | 5670 | <trans-unit id="3582855804901374179" datatype="html"> |
5456 | <source>Banner image of your channel</source> | 5671 | <source>Banner image of your channel</source> |
5457 | <target state="new">Banner image of your channel</target> | 5672 | <target state="translated">A csatorna borítóképe</target> |
5458 | <context-group purpose="location"> | 5673 | <context-group purpose="location"> |
5459 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context> | 5674 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context> |
5460 | <context context-type="linenumber">30</context> | 5675 | <context context-type="linenumber">30</context> |
@@ -5486,7 +5701,7 @@ color: red; | |||
5486 | </trans-unit> | 5701 | </trans-unit> |
5487 | <trans-unit id="31472093355465024" datatype="html"> | 5702 | <trans-unit id="31472093355465024" datatype="html"> |
5488 | <source>Upload a new avatar</source> | 5703 | <source>Upload a new avatar</source> |
5489 | <target state="new">Upload a new avatar</target> | 5704 | <target state="translated">Új profilkép feltöltése</target> |
5490 | <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> | 5705 | <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> |
5491 | <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> | 5706 | <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> |
5492 | </trans-unit> | 5707 | </trans-unit> |
@@ -5518,15 +5733,16 @@ color: red; | |||
5518 | <trans-unit id="3122895472333547524"> | 5733 | <trans-unit id="3122895472333547524"> |
5519 | <source>Delete your account</source> | 5734 | <source>Delete your account</source> |
5520 | <target>Fiók törlése</target> | 5735 | <target>Fiók törlése</target> |
5521 | 5736 | <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> | |
5522 | <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">26</context></context-group></trans-unit> | 5737 | <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">26</context></context-group> |
5738 | </trans-unit> | ||
5523 | <trans-unit id="4000980858407872649" datatype="html"> | 5739 | <trans-unit id="4000980858407872649" datatype="html"> |
5524 | <source>Channel page</source> | 5740 | <source>Channel page</source> |
5525 | <target state="translated">Csatornaoldal</target> | 5741 | <target state="translated">Csatornaoldal</target> |
5526 | 5742 | <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> | |
5527 | 5743 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">20</context></context-group> | |
5528 | 5744 | <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> | |
5529 | <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-subscriptions/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">67</context></context-group></trans-unit> | 5745 | </trans-unit> |
5530 | <trans-unit id="9131836378905533756"> | 5746 | <trans-unit id="9131836378905533756"> |
5531 | <source>Created by <x id="INTERPOLATION"/></source> | 5747 | <source>Created by <x id="INTERPOLATION"/></source> |
5532 | <target>Létrehozta: <x id="INTERPOLATION"/></target> | 5748 | <target>Létrehozta: <x id="INTERPOLATION"/></target> |
@@ -5544,9 +5760,9 @@ color: red; | |||
5544 | </trans-unit> | 5760 | </trans-unit> |
5545 | <trans-unit id="4781078006040259916" datatype="html"> | 5761 | <trans-unit id="4781078006040259916" datatype="html"> |
5546 | <source>You don't have any video in your watch history yet.</source> | 5762 | <source>You don't have any video in your watch history yet.</source> |
5547 | <target state="new">You don't have any video in your watch history yet.</target> | 5763 | <target state="translated">Még nincs videó a megnézettek közt.</target> |
5548 | 5764 | <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> | |
5549 | <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> | 5765 | </trans-unit> |
5550 | <trans-unit id="687236465759862933" datatype="html"> | 5766 | <trans-unit id="687236465759862933" datatype="html"> |
5551 | <source>Open syndication dropdown</source> | 5767 | <source>Open syndication dropdown</source> |
5552 | <target state="new">Open syndication dropdown</target> | 5768 | <target state="new">Open syndication dropdown</target> |
@@ -5558,14 +5774,18 @@ color: red; | |||
5558 | <context context-type="sourcefile">src/app/shared/shared-main/feeds/feed.component.html</context> | 5774 | <context context-type="sourcefile">src/app/shared/shared-main/feeds/feed.component.html</context> |
5559 | <context context-type="linenumber">3</context> | 5775 | <context context-type="linenumber">3</context> |
5560 | </context-group> | 5776 | </context-group> |
5561 | </trans-unit><trans-unit id="5511928240200239994" datatype="html"> | 5777 | </trans-unit> |
5562 | <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> | 5778 | <trans-unit id="5511928240200239994" datatype="html"> |
5779 | <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> | ||
5780 | <target state="translated">Néhány csatornája nincs teljesen beállítva. Tegye barátságosabbá és felismerhetőbbé <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>borítókép<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> és <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>profilkép<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> feltöltésével és a <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>leírásának<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> megadásával.</target> | ||
5563 | <context-group purpose="location"> | 5781 | <context-group purpose="location"> |
5564 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> | 5782 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> |
5565 | <context context-type="linenumber">5</context> | 5783 | <context context-type="linenumber">5</context> |
5566 | </context-group> | 5784 | </context-group> |
5567 | </trans-unit><trans-unit id="5339945526545410198" datatype="html"> | 5785 | </trans-unit> |
5568 | <source>Set up my channels</source><target state="new">Set up my channels</target> | 5786 | <trans-unit id="5339945526545410198" datatype="html"> |
5787 | <source>Set up my channels</source> | ||
5788 | <target state="translated">Csatornák beállítása</target> | ||
5569 | <context-group purpose="location"> | 5789 | <context-group purpose="location"> |
5570 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> | 5790 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> |
5571 | <context context-type="linenumber">6</context> | 5791 | <context context-type="linenumber">6</context> |
@@ -5622,16 +5842,16 @@ color: red; | |||
5622 | <trans-unit id="3438686710205841496" datatype="html"> | 5842 | <trans-unit id="3438686710205841496" datatype="html"> |
5623 | <source>Create playlist</source> | 5843 | <source>Create playlist</source> |
5624 | <target state="translated">Lejátszási lista létrehozása</target> | 5844 | <target state="translated">Lejátszási lista létrehozása</target> |
5625 | 5845 | <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> | |
5626 | <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> | 5846 | </trans-unit> |
5627 | <trans-unit id="7040375308762081154" datatype="html"> | 5847 | <trans-unit id="7040375308762081154" datatype="html"> |
5628 | <source>My video channels</source> | 5848 | <source>My video channels</source> |
5629 | <target state="new">My video channels</target> | 5849 | <target state="translated">Saját videócsatornák</target> |
5630 | <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">13</context></context-group> | 5850 | <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">13</context></context-group> |
5631 | </trans-unit> | 5851 | </trans-unit> |
5632 | <trans-unit id="7418836785553125957" datatype="html"> | 5852 | <trans-unit id="7418836785553125957" datatype="html"> |
5633 | <source>Create a new video channel</source> | 5853 | <source>Create a new video channel</source> |
5634 | <target state="new">Create a new video channel</target> | 5854 | <target state="translated">Új videócsatorna létrehozása</target> |
5635 | <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">22</context></context-group> | 5855 | <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">22</context></context-group> |
5636 | </trans-unit> | 5856 | </trans-unit> |
5637 | <trans-unit id="8828123061564507501" datatype="html"> | 5857 | <trans-unit id="8828123061564507501" datatype="html"> |
@@ -5669,8 +5889,10 @@ color: red; | |||
5669 | <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> | 5889 | <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> |
5670 | <target state="translated">Ha segítségre van szüksége a PeerTube használatához, akkor megnézheti a <x id="START_LINK"/>dokumentációt<x id="CLOSE_LINK"/>. </target> | 5890 | <target state="translated">Ha segítségre van szüksége a PeerTube használatához, akkor megnézheti a <x id="START_LINK"/>dokumentációt<x id="CLOSE_LINK"/>. </target> |
5671 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">14</context></context-group> | 5891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">14</context></context-group> |
5672 | </trans-unit><trans-unit id="8844610145426272276" datatype="html"> | 5892 | </trans-unit> |
5673 | <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> | 5893 | <trans-unit id="8844610145426272276" datatype="html"> |
5894 | <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> | ||
5895 | <target state="translated">Hogy segítsen a moderátoroknak és más felhasználóknak <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>megismerni önt<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings">"/>egészítse ki a profilját<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> egy <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>profilkép<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> feltöltésével és egy <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>leírás<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> megadásával. </target> | ||
5674 | <context-group purpose="location"> | 5896 | <context-group purpose="location"> |
5675 | <context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context> | 5897 | <context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context> |
5676 | <context context-type="linenumber">18,19</context> | 5898 | <context context-type="linenumber">18,19</context> |
@@ -5678,7 +5900,7 @@ color: red; | |||
5678 | </trans-unit> | 5900 | </trans-unit> |
5679 | <trans-unit id="3030338154442300172" datatype="html"> | 5901 | <trans-unit id="3030338154442300172" datatype="html"> |
5680 | <source>Created <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {1 playlist} other {{{ pagination.totalItems }} playlists}}"/> </source> | 5902 | <source>Created <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {1 playlist} other {{{ pagination.totalItems }} playlists}}"/> </source> |
5681 | <target state="new"> Created <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {1 playlist} other {{{ pagination.totalItems }} playlists}}"/> </target> | 5903 | <target state="translated">Létrehozott <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {1 lejátszólistát} other {{{ pagination.totalItems }} lejátszólistát}}"/> </target> |
5682 | <context-group purpose="location"> | 5904 | <context-group purpose="location"> |
5683 | <context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context> | 5905 | <context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context> |
5684 | <context context-type="linenumber">3,4</context> | 5906 | <context context-type="linenumber">3,4</context> |
@@ -5686,7 +5908,7 @@ color: red; | |||
5686 | </trans-unit> | 5908 | </trans-unit> |
5687 | <trans-unit id="3505845886770923767" datatype="html"> | 5909 | <trans-unit id="3505845886770923767" datatype="html"> |
5688 | <source>{VAR_PLURAL, plural, =1 {1 playlist} other {<x id="INTERPOLATION"/> playlists}}</source> | 5910 | <source>{VAR_PLURAL, plural, =1 {1 playlist} other {<x id="INTERPOLATION"/> playlists}}</source> |
5689 | <target state="new">{VAR_PLURAL, plural, =1 {1 playlist} other {<x id="INTERPOLATION"/> playlists}}</target> | 5911 | <target state="translated">{VAR_PLURAL, plural, =1 {1 lejátszólista} other {<x id="INTERPOLATION"/> lejátszólista}}</target> |
5690 | <context-group purpose="location"> | 5912 | <context-group purpose="location"> |
5691 | <context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context> | 5913 | <context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context> |
5692 | <context context-type="linenumber">3</context> | 5914 | <context context-type="linenumber">3</context> |
@@ -5715,16 +5937,16 @@ color: red; | |||
5715 | <trans-unit id="9128669621822125729" datatype="html"> | 5937 | <trans-unit id="9128669621822125729" datatype="html"> |
5716 | <source>Video channel videos</source> | 5938 | <source>Video channel videos</source> |
5717 | <target state="translated">Videócsatorna videói</target> | 5939 | <target state="translated">Videócsatorna videói</target> |
5718 | 5940 | <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> | |
5719 | <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> | 5941 | </trans-unit> |
5720 | <trans-unit id="3193822049276963401" datatype="html"> | 5942 | <trans-unit id="3193822049276963401" datatype="html"> |
5721 | <source>Video channel playlists</source> | 5943 | <source>Video channel playlists</source> |
5722 | <target state="translated">Videócsatorna lejátszólistái</target> | 5944 | <target state="translated">Videócsatorna lejátszólistái</target> |
5723 | 5945 | <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> | |
5724 | <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> | 5946 | </trans-unit> |
5725 | <trans-unit id="1949999959792821767" datatype="html"> | 5947 | <trans-unit id="1949999959792821767" datatype="html"> |
5726 | <source>Manage channel</source> | 5948 | <source>Manage channel</source> |
5727 | <target state="new"> Manage channel </target> | 5949 | <target state="translated">Csatorna kezelése</target> |
5728 | <context-group purpose="location"> | 5950 | <context-group purpose="location"> |
5729 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> | 5951 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> |
5730 | <context context-type="linenumber">10,11</context> | 5952 | <context context-type="linenumber">10,11</context> |
@@ -5747,14 +5969,14 @@ color: red; | |||
5747 | </trans-unit> | 5969 | </trans-unit> |
5748 | <trans-unit id="248731258067914565" datatype="html"> | 5970 | <trans-unit id="248731258067914565" datatype="html"> |
5749 | <source>Verify account via email</source> | 5971 | <source>Verify account via email</source> |
5750 | <target state="new">Verify account via email</target> | 5972 | <target state="translated">Fiók ellenőrzése e-maillel</target> |
5751 | 5973 | <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> | |
5752 | <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> | 5974 | </trans-unit> |
5753 | <trans-unit id="9197112111252826229" datatype="html"> | 5975 | <trans-unit id="9197112111252826229" datatype="html"> |
5754 | <source>Ask to send an email to verify you account</source> | 5976 | <source>Ask to send an email to verify you account</source> |
5755 | <target state="new">Ask to send an email to verify you account</target> | 5977 | <target state="translated">Kérje e-mail küldését az fiók ellenőrzéséhez</target> |
5756 | 5978 | <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> | |
5757 | <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> | 5979 | </trans-unit> |
5758 | <trans-unit id="2999492056553212422"> | 5980 | <trans-unit id="2999492056553212422"> |
5759 | <source>Banned</source> | 5981 | <source>Banned</source> |
5760 | <target>Kitiltva</target> | 5982 | <target>Kitiltva</target> |
@@ -5777,7 +5999,7 @@ color: red; | |||
5777 | </trans-unit> | 5999 | </trans-unit> |
5778 | <trans-unit id="8661266239199665830" datatype="html"> | 6000 | <trans-unit id="8661266239199665830" datatype="html"> |
5779 | <source>Copy account handle</source> | 6001 | <source>Copy account handle</source> |
5780 | <target state="new">Copy account handle</target> | 6002 | <target state="translated">Fióknév másolása</target> |
5781 | <context-group purpose="location"> | 6003 | <context-group purpose="location"> |
5782 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> | 6004 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> |
5783 | <context context-type="linenumber">31</context> | 6005 | <context context-type="linenumber">31</context> |
@@ -5786,8 +6008,12 @@ color: red; | |||
5786 | <trans-unit id="403587185492002456" datatype="html"> | 6008 | <trans-unit id="403587185492002456" datatype="html"> |
5787 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> | 6009 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> |
5788 | <target state="new">{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</target> | 6010 | <target state="new">{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</target> |
5789 | 6011 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">23</context></context-group> | |
5790 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">23</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">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">73</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> | 6012 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">38</context></context-group> |
6013 | <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">30</context></context-group> | ||
6014 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">73</context></context-group> | ||
6015 | <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> | ||
6016 | </trans-unit> | ||
5791 | <trans-unit id="3068011377000255023" datatype="html"> | 6017 | <trans-unit id="3068011377000255023" datatype="html"> |
5792 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> | 6018 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> |
5793 | <target state="new">{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</target> | 6019 | <target state="new">{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</target> |
@@ -5798,7 +6024,7 @@ color: red; | |||
5798 | </trans-unit> | 6024 | </trans-unit> |
5799 | <trans-unit id="8856905278208146821" datatype="html"> | 6025 | <trans-unit id="8856905278208146821" datatype="html"> |
5800 | <source><x id="ICU" equiv-text="{accountVideosCount, plural, =1 {1 videos} other {{{ accountVideosCount }} videos}}"/> </source> | 6026 | <source><x id="ICU" equiv-text="{accountVideosCount, plural, =1 {1 videos} other {{{ accountVideosCount }} videos}}"/> </source> |
5801 | <target state="new"> <x id="ICU" equiv-text="{accountVideosCount, plural, =1 {1 videos} other {{{ accountVideosCount }} videos}}"/> </target> | 6027 | <target state="translated"><x id="ICU" equiv-text="{accountVideosCount, plural, =1 {1 videó} other {{{ accountVideosCount }} videó}}"/> </target> |
5802 | <context-group purpose="location"> | 6028 | <context-group purpose="location"> |
5803 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> | 6029 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> |
5804 | <context context-type="linenumber">41,42</context> | 6030 | <context context-type="linenumber">41,42</context> |
@@ -5806,31 +6032,31 @@ color: red; | |||
5806 | </trans-unit> | 6032 | </trans-unit> |
5807 | <trans-unit id="3061133792040537550" datatype="html"> | 6033 | <trans-unit id="3061133792040537550" datatype="html"> |
5808 | <source>Show the complete description</source> | 6034 | <source>Show the complete description</source> |
5809 | <target state="new">Show the complete description</target> | 6035 | <target state="translated">A teljes leírás megjelenítése</target> |
5810 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">55</context></context-group> | 6036 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">55</context></context-group> |
5811 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">94</context></context-group> | 6037 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">94</context></context-group> |
5812 | </trans-unit> | 6038 | </trans-unit> |
5813 | <trans-unit id="9098920722959201547" datatype="html"> | 6039 | <trans-unit id="9098920722959201547" datatype="html"> |
5814 | <source>Show more...</source> | 6040 | <source>Show more...</source> |
5815 | <target state="new"> Show more... </target> | 6041 | <target state="translated">Több megjelenítése...</target> |
5816 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">57</context></context-group> | 6042 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">57</context></context-group> |
5817 | <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> | 6043 | <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> |
5818 | </trans-unit> | 6044 | </trans-unit> |
5819 | <trans-unit id="6808894347744915561" datatype="html"> | 6045 | <trans-unit id="6808894347744915561" datatype="html"> |
5820 | <source>Manage account</source> | 6046 | <source>Manage account</source> |
5821 | <target state="new"> Manage account </target> | 6047 | <target state="translated">Fiók kezelése</target> |
5822 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">62</context></context-group> | 6048 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">62</context></context-group> |
5823 | </trans-unit> | 6049 | </trans-unit> |
5824 | <trans-unit id="1311667768861466464" datatype="html"> | 6050 | <trans-unit id="1311667768861466464" datatype="html"> |
5825 | <source>Search account videos</source> | 6051 | <source>Search account videos</source> |
5826 | <target state="new">Search account videos</target> | 6052 | <target state="translated">Keresés a fiók videói közt</target> |
5827 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">80</context></context-group> | 6053 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">80</context></context-group> |
5828 | </trans-unit> | 6054 | </trans-unit> |
5829 | <trans-unit id="5512878593724620692" datatype="html"> | 6055 | <trans-unit id="5512878593724620692" datatype="html"> |
5830 | <source>CHANNELS</source> | 6056 | <source>CHANNELS</source> |
5831 | <target state="new">CHANNELS</target> | 6057 | <target state="translated">CSATORNÁK</target> |
5832 | 6058 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">81</context></context-group> | |
5833 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 6059 | </trans-unit> |
5834 | <trans-unit id="3666829335406793239" datatype="html"> | 6060 | <trans-unit id="3666829335406793239" datatype="html"> |
5835 | <source>This account does not have channels.</source> | 6061 | <source>This account does not have channels.</source> |
5836 | <target state="translated">Ennek a fióknak nincsenek csatornái.</target> | 6062 | <target state="translated">Ennek a fióknak nincsenek csatornái.</target> |
@@ -5845,7 +6071,7 @@ color: red; | |||
5845 | </trans-unit> | 6071 | </trans-unit> |
5846 | <trans-unit id="3068011377000255023" datatype="html"> | 6072 | <trans-unit id="3068011377000255023" datatype="html"> |
5847 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> | 6073 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> |
5848 | <target state="new">{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</target> | 6074 | <target state="translated">{VAR_PLURAL, plural, =1 {1 videó} other {<x id="INTERPOLATION"/> videó}}</target> |
5849 | <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> | 6075 | <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> |
5850 | </trans-unit> | 6076 | </trans-unit> |
5851 | <trans-unit id="8856905278208146821" datatype="html"> | 6077 | <trans-unit id="8856905278208146821" datatype="html"> |
@@ -5855,7 +6081,7 @@ color: red; | |||
5855 | </trans-unit> | 6081 | </trans-unit> |
5856 | <trans-unit id="4071627711041975501" datatype="html"> | 6082 | <trans-unit id="4071627711041975501" datatype="html"> |
5857 | <source>Show this channel</source> | 6083 | <source>Show this channel</source> |
5858 | <target state="new">Show this channel</target> | 6084 | <target state="translated">Csatorna megtekintése</target> |
5859 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">35</context></context-group> | 6085 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">35</context></context-group> |
5860 | </trans-unit> | 6086 | </trans-unit> |
5861 | <trans-unit id="7766488542631150871" datatype="html"> | 6087 | <trans-unit id="7766488542631150871" datatype="html"> |
@@ -5869,8 +6095,10 @@ It will delete <x id="PH_1" equiv-text="videoChannel.videosCount"/> videos uploa | |||
5869 | channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</source> | 6095 | channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</source> |
5870 | <target state="translated">Biztos, hogy törli a(z) <x id="PH" equiv-text="videoChannel.displayName"/> csatornát? Ez törli a csatornára feltöltött <x id="PH_1" equiv-text="videoChannel.videosCount"/> videót, és nem hozhat létre még egy csatornát ugyanezzel a névvel (<x id="PH_2" equiv-text="videoChannel.name"/>)!</target> | 6096 | <target state="translated">Biztos, hogy törli a(z) <x id="PH" equiv-text="videoChannel.displayName"/> csatornát? Ez törli a csatornára feltöltött <x id="PH_1" equiv-text="videoChannel.videosCount"/> videót, és nem hozhat létre még egy csatornát ugyanezzel a névvel (<x id="PH_2" equiv-text="videoChannel.name"/>)!</target> |
5871 | <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> | 6097 | <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> |
5872 | </trans-unit><trans-unit id="4433306639366959484" datatype="html"> | 6098 | </trans-unit> |
5873 | <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> | 6099 | <trans-unit id="4433306639366959484" datatype="html"> |
6100 | <source>Please type the name of the video channel (<x id="PH" equiv-text="videoChannel.name"/>) to confirm</source> | ||
6101 | <target state="translated">A megerősítéshez írja be a videócsatorna nevét (<x id="PH" equiv-text="videoChannel.name"/>)</target> | ||
5874 | <context-group purpose="location"> | 6102 | <context-group purpose="location"> |
5875 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context> | 6103 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context> |
5876 | <context context-type="linenumber">48</context> | 6104 | <context context-type="linenumber">48</context> |
@@ -5891,9 +6119,11 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5891 | <trans-unit id="7828153032795614080" datatype="html"> | 6119 | <trans-unit id="7828153032795614080" datatype="html"> |
5892 | <source>See this video channel</source> | 6120 | <source>See this video channel</source> |
5893 | <target state="translated">Videocsatorna megtekintése</target> | 6121 | <target state="translated">Videocsatorna megtekintése</target> |
5894 | 6122 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">13</context></context-group> | |
5895 | 6123 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">17</context></context-group> | |
5896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">13</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">17</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> | 6124 | <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> |
6125 | <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> | ||
6126 | </trans-unit> | ||
5897 | <trans-unit id="1545109431751219382" datatype="html"> | 6127 | <trans-unit id="1545109431751219382" datatype="html"> |
5898 | <source>This channel doesn't have any videos.</source> | 6128 | <source>This channel doesn't have any videos.</source> |
5899 | <target state="translated">Ennek a csatornának nincs egyetlen videója sem.</target> | 6129 | <target state="translated">Ennek a csatornának nincs egyetlen videója sem.</target> |
@@ -5901,14 +6131,14 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5901 | </trans-unit> | 6131 | </trans-unit> |
5902 | <trans-unit id="2705478076887104088" datatype="html"> | 6132 | <trans-unit id="2705478076887104088" datatype="html"> |
5903 | <source>SHOW THIS CHANNEL ></source> | 6133 | <source>SHOW THIS CHANNEL ></source> |
5904 | <target state="new">SHOW THIS CHANNEL ></target> | 6134 | <target state="translated">CSATORNA MEGJELENÍTÉSE ></target> |
5905 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">46</context></context-group> | 6135 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">46</context></context-group> |
5906 | </trans-unit> | 6136 | </trans-unit> |
5907 | <trans-unit id="4088311569349098646"> | 6137 | <trans-unit id="4088311569349098646"> |
5908 | <source>Stats</source> | 6138 | <source>Stats</source> |
5909 | <target>Statisztikák</target> | 6139 | <target>Statisztikák</target> |
5910 | 6140 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">139</context></context-group> | |
5911 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6141 | </trans-unit> |
5912 | <trans-unit id="4068658588793749132"> | 6142 | <trans-unit id="4068658588793749132"> |
5913 | <source>This channel does not have playlists.</source> | 6143 | <source>This channel does not have playlists.</source> |
5914 | <target>Ennek a csatornának nincsenek lejátszási listái.</target> | 6144 | <target>Ennek a csatornának nincsenek lejátszási listái.</target> |
@@ -5921,7 +6151,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5921 | </trans-unit> | 6151 | </trans-unit> |
5922 | <trans-unit id="1415060111017347427" datatype="html"> | 6152 | <trans-unit id="1415060111017347427" datatype="html"> |
5923 | <source>Network</source> | 6153 | <source>Network</source> |
5924 | <target state="new">Network</target> | 6154 | <target state="translated">Hálózat</target> |
5925 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">9</context></context-group> | 6155 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">9</context></context-group> |
5926 | </trans-unit> | 6156 | </trans-unit> |
5927 | <trans-unit id="3701439542279610547" datatype="html"> | 6157 | <trans-unit id="3701439542279610547" datatype="html"> |
@@ -5931,7 +6161,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5931 | </trans-unit> | 6161 | </trans-unit> |
5932 | <trans-unit id="400578776928464905" datatype="html"> | 6162 | <trans-unit id="400578776928464905" datatype="html"> |
5933 | <source>Follower instances (<x id="INTERPOLATION" equiv-text="{{ followersPagination.totalItems }}"/>)</source> | 6163 | <source>Follower instances (<x id="INTERPOLATION" equiv-text="{{ followersPagination.totalItems }}"/>)</source> |
5934 | <target state="new">Follower instances (<x id="INTERPOLATION" equiv-text="{{ followersPagination.totalItems }}"/>)</target> | 6164 | <target state="translated">Követő példányok (<x id="INTERPOLATION" equiv-text="{{ followersPagination.totalItems }}"/>)</target> |
5935 | <context-group purpose="location"> | 6165 | <context-group purpose="location"> |
5936 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> | 6166 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> |
5937 | <context context-type="linenumber">4</context> | 6167 | <context context-type="linenumber">4</context> |
@@ -5939,13 +6169,12 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5939 | </trans-unit> | 6169 | </trans-unit> |
5940 | <trans-unit id="2081837971167498893" datatype="html"> | 6170 | <trans-unit id="2081837971167498893" datatype="html"> |
5941 | <source>Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</source> | 6171 | <source>Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</source> |
5942 | <target state="new">Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</target> | 6172 | <target state="translated">Követett példányok (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</target> |
5943 | <context-group purpose="location"> | 6173 | <context-group purpose="location"> |
5944 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> | 6174 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> |
5945 | <context context-type="linenumber">16</context> | 6175 | <context context-type="linenumber">16</context> |
5946 | </context-group> | 6176 | </context-group> |
5947 | </trans-unit> | 6177 | </trans-unit> |
5948 | |||
5949 | <trans-unit id="8203367621031610680"> | 6178 | <trans-unit id="8203367621031610680"> |
5950 | <source>Your name</source> | 6179 | <source>Your name</source> |
5951 | <target>Az Ön neve</target> | 6180 | <target>Az Ön neve</target> |
@@ -5970,8 +6199,10 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5970 | <source>About <x id="INTERPOLATION"/></source> | 6199 | <source>About <x id="INTERPOLATION"/></source> |
5971 | <target state="translated">A(z) <x id="INTERPOLATION"/> névjegye</target> | 6200 | <target state="translated">A(z) <x id="INTERPOLATION"/> névjegye</target> |
5972 | <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> | 6201 | <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> |
5973 | </trans-unit><trans-unit id="8525213662266893834" datatype="html"> | 6202 | </trans-unit> |
5974 | <source>Contact us</source><target state="new">Contact us</target> | 6203 | <trans-unit id="8525213662266893834" datatype="html"> |
6204 | <source>Contact us</source> | ||
6205 | <target state="translated">Kapcsolatfelvétel</target> | ||
5975 | <context-group purpose="location"> | 6206 | <context-group purpose="location"> |
5976 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> | 6207 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> |
5977 | <context context-type="linenumber">7</context> | 6208 | <context context-type="linenumber">7</context> |
@@ -5981,7 +6212,6 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5981 | <context context-type="linenumber">3</context> | 6212 | <context context-type="linenumber">3</context> |
5982 | </context-group> | 6213 | </context-group> |
5983 | </trans-unit> | 6214 | </trans-unit> |
5984 | |||
5985 | <trans-unit id="19872047295276660" datatype="html"> | 6215 | <trans-unit id="19872047295276660" datatype="html"> |
5986 | <source>This instance is dedicated to sensitive/NSFW content.</source> | 6216 | <source>This instance is dedicated to sensitive/NSFW content.</source> |
5987 | <target state="translated">Ez a példány érzékeny tartalmakhoz van létrehozva.</target> | 6217 | <target state="translated">Ez a példány érzékeny tartalmakhoz van létrehozva.</target> |
@@ -6009,7 +6239,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6009 | </trans-unit> | 6239 | </trans-unit> |
6010 | <trans-unit id="8765504394950427814" datatype="html"> | 6240 | <trans-unit id="8765504394950427814" datatype="html"> |
6011 | <source>How we will pay for keeping our instance running</source> | 6241 | <source>How we will pay for keeping our instance running</source> |
6012 | <target state="new">How we will pay for keeping our instance running</target> | 6242 | <target state="translated">Hogyan fizetünk a példányunk üzemben tartásáért</target> |
6013 | <context-group purpose="location"> | 6243 | <context-group purpose="location"> |
6014 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> | 6244 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> |
6015 | <context context-type="linenumber">86</context> | 6245 | <context context-type="linenumber">86</context> |
@@ -6064,7 +6294,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6064 | </trans-unit> | 6294 | </trans-unit> |
6065 | <trans-unit id="135286612733607700" datatype="html"> | 6295 | <trans-unit id="135286612733607700" datatype="html"> |
6066 | <source>It is free and open-source software, under <x id="START_LINK"/>AGPLv3 licence<x id="CLOSE_LINK"/>. </source> | 6296 | <source>It is free and open-source software, under <x id="START_LINK"/>AGPLv3 licence<x id="CLOSE_LINK"/>. </source> |
6067 | <target state="new"> It is free and open-source software, under <x id="START_LINK"/>AGPLv3 licence<x id="CLOSE_LINK"/>. </target> | 6297 | <target state="translated">Ez egy <x id="START_LINK"/>AGPLv3 licenc<x id="CLOSE_LINK"/> alatt közzétett szabad és nyílt forráskódú szoftver. </target> |
6068 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">14</context></context-group> | 6298 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">14</context></context-group> |
6069 | </trans-unit> | 6299 | </trans-unit> |
6070 | <trans-unit id="7257048945916143687" datatype="html"> | 6300 | <trans-unit id="7257048945916143687" datatype="html"> |
@@ -6114,7 +6344,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6114 | </trans-unit> | 6344 | </trans-unit> |
6115 | <trans-unit id="6314880288843792309" datatype="html"> | 6345 | <trans-unit id="6314880288843792309" datatype="html"> |
6116 | <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> | 6346 | <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> |
6117 | <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> | 6347 | <target state="translated">A személyes adatait fenyegető fő veszély a BitTorrent használata esetén, hogy az IP címet tárolja a példány BitTorrent követője addig, amíg a videót letölti vagy nézi.</target> |
6118 | <context-group purpose="location"> | 6348 | <context-group purpose="location"> |
6119 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> | 6349 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> |
6120 | <context context-type="linenumber">81,83</context> | 6350 | <context context-type="linenumber">81,83</context> |
@@ -6225,7 +6455,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6225 | </trans-unit> | 6455 | </trans-unit> |
6226 | <trans-unit id="8438752523256358076" datatype="html"> | 6456 | <trans-unit id="8438752523256358076" datatype="html"> |
6227 | <source>Show full list</source> | 6457 | <source>Show full list</source> |
6228 | <target state="new">Show full list</target> | 6458 | <target state="translated">Teljes lista megjelenítése</target> |
6229 | <context-group purpose="location"> | 6459 | <context-group purpose="location"> |
6230 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> | 6460 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> |
6231 | <context context-type="linenumber">12</context> | 6461 | <context context-type="linenumber">12</context> |
@@ -6237,30 +6467,32 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6237 | </trans-unit> | 6467 | </trans-unit> |
6238 | <trans-unit id="7128556172318221342" datatype="html"> | 6468 | <trans-unit id="7128556172318221342" datatype="html"> |
6239 | <source>This instance is not following any other.</source> | 6469 | <source>This instance is not following any other.</source> |
6240 | <target state="new">This instance is not following any other.</target> | 6470 | <target state="translated">Ez a példány nem követ egyetlen másikat sem.</target> |
6241 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">18</context></context-group> | 6471 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">18</context></context-group> |
6242 | </trans-unit> | 6472 | </trans-unit> |
6243 | <trans-unit id="4195286790385468087" datatype="html"> | 6473 | <trans-unit id="4195286790385468087" datatype="html"> |
6244 | <source>About this instance</source> | 6474 | <source>About this instance</source> |
6245 | <target state="translated">A példány névjegye</target> | 6475 | <target state="translated">A példány névjegye</target> |
6246 | 6476 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">24</context></context-group> | |
6247 | <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> | 6477 | </trans-unit> |
6248 | <trans-unit id="8773846522957677259" datatype="html"> | 6478 | <trans-unit id="8773846522957677259" datatype="html"> |
6249 | <source>About PeerTube</source> | 6479 | <source>About PeerTube</source> |
6250 | <target state="translated">A PeerTube névjegye</target> | 6480 | <target state="translated">A PeerTube névjegye</target> |
6251 | 6481 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">49</context></context-group> | |
6252 | <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> | 6482 | </trans-unit> |
6253 | <trans-unit id="1812900507515561988" datatype="html"> | 6483 | <trans-unit id="1812900507515561988" datatype="html"> |
6254 | <source>About this instance's network</source> | 6484 | <source>About this instance's network</source> |
6255 | <target state="new">About this instance's network</target> | 6485 | <target state="translated">A példány hálózatáról</target> |
6256 | 6486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">58</context></context-group> | |
6257 | <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> | 6487 | </trans-unit> |
6258 | <trans-unit id="892073694820881630" datatype="html"> | 6488 | <trans-unit id="892073694820881630" datatype="html"> |
6259 | <source>Link copied</source> | 6489 | <source>Link copied</source> |
6260 | <target state="new">Link copied</target> | 6490 | <target state="translated">Hivatkozás másolva</target> |
6261 | 6491 | <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> | |
6262 | <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"> | 6492 | </trans-unit> |
6263 | <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> | 6493 | <trans-unit id="4807161697338135032" datatype="html"> |
6494 | <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> | ||
6495 | <target state="translated">Írjon az adminisztrátoroknak<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> | ||
6264 | <context-group purpose="location"> | 6496 | <context-group purpose="location"> |
6265 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> | 6497 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> |
6266 | <context context-type="linenumber">3</context> | 6498 | <context context-type="linenumber">3</context> |
@@ -6286,18 +6518,18 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6286 | <trans-unit id="6386856862203107763" datatype="html"> | 6518 | <trans-unit id="6386856862203107763" datatype="html"> |
6287 | <source>Create my account</source> | 6519 | <source>Create my account</source> |
6288 | <target state="translated">Fiókom létrehozása</target> | 6520 | <target state="translated">Fiókom létrehozása</target> |
6289 | 6521 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">39</context></context-group> | |
6290 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 6522 | </trans-unit> |
6291 | <trans-unit id="220345070199640496" datatype="html"> | 6523 | <trans-unit id="220345070199640496" datatype="html"> |
6292 | <source>PeerTube is creating your account...</source> | 6524 | <source>PeerTube is creating your account...</source> |
6293 | <target state="translated">A PeerTube most létrehozza a fiókját…</target> | 6525 | <target state="translated">A PeerTube most létrehozza a fiókját…</target> |
6294 | 6526 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">47</context></context-group> | |
6295 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> | 6527 | </trans-unit> |
6296 | <trans-unit id="397098723873502323" datatype="html"> | 6528 | <trans-unit id="397098723873502323" datatype="html"> |
6297 | <source>Done</source> | 6529 | <source>Done</source> |
6298 | <target state="translated">Kész</target> | 6530 | <target state="translated">Kész</target> |
6299 | 6531 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">43</context></context-group> | |
6300 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> | 6532 | </trans-unit> |
6301 | <trans-unit id="6294302495409052693" datatype="html"> | 6533 | <trans-unit id="6294302495409052693" datatype="html"> |
6302 | <source>Who are we?</source> | 6534 | <source>Who are we?</source> |
6303 | <target state="translated">Kik vagyunk mi?</target> | 6535 | <target state="translated">Kik vagyunk mi?</target> |
@@ -6364,10 +6596,12 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6364 | </trans-unit> | 6596 | </trans-unit> |
6365 | <trans-unit id="5203776997447520497" datatype="html"> | 6597 | <trans-unit id="5203776997447520497" datatype="html"> |
6366 | <source>Channel name cannot be the same as your account name. You can click on the first step to update your account name.</source> | 6598 | <source>Channel name cannot be the same as your account name. You can click on the first step to update your account name.</source> |
6367 | <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> | 6599 | <target state="translated">A csatorna neve nem lehet ugyanaz, mint a fiókja neve. Rákattinthat az első lépésre a fiók nevének frissítéséhez.</target> |
6368 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">51</context></context-group> | 6600 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">51</context></context-group> |
6369 | </trans-unit><trans-unit id="7440807341905682986" datatype="html"> | 6601 | </trans-unit> |
6370 | <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> | 6602 | <trans-unit id="7440807341905682986" datatype="html"> |
6603 | <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> | ||
6604 | <target state="translated">Elmúltam <x id="INTERPOLATION" equiv-text="{{ minimumAge }}"/> éves és elfogadom a <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event)" href='#'>"/>Felhasználási feltételeit<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">"/> és a <x id="START_LINK_1" equiv-text="<a (click)="onCodeOfConductClick($event)" href='#'>"/>Magatartási kódexét<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</ng-container>"/> ennek a példánynak </target> | ||
6371 | <context-group purpose="location"> | 6605 | <context-group purpose="location"> |
6372 | <context context-type="sourcefile">src/app/+signup/+register/register-step-terms.component.html</context> | 6606 | <context context-type="sourcefile">src/app/+signup/+register/register-step-terms.component.html</context> |
6373 | <context context-type="linenumber">5,10</context> | 6607 | <context context-type="linenumber">5,10</context> |
@@ -6380,103 +6614,117 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6380 | </trans-unit> | 6614 | </trans-unit> |
6381 | <trans-unit id="198278273748445199" datatype="html"> | 6615 | <trans-unit id="198278273748445199" datatype="html"> |
6382 | <source>Video uploads are disabled on this instance, hence your account won't be able to upload videos.</source> | 6616 | <source>Video uploads are disabled on this instance, hence your account won't be able to upload videos.</source> |
6383 | <target state="new"> Video uploads are disabled on this instance, hence your account won't be able to upload videos. </target> | 6617 | <target state="translated">Ezen a példányon videók feltöltése nem engedélyezett, így nem fog tudni videókat közzétenni.</target> |
6384 | <context-group purpose="location"> | 6618 | <context-group purpose="location"> |
6385 | <context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context> | 6619 | <context context-type="sourcefile">src/app/+signup/+register/register-step-user.component.html</context> |
6386 | <context context-type="linenumber">4,5</context> | 6620 | <context context-type="linenumber">4,5</context> |
6387 | </context-group> | 6621 | </context-group> |
6388 | </trans-unit> | 6622 | </trans-unit> |
6389 | |||
6390 | <trans-unit id="3301086086650990787" datatype="html"> | 6623 | <trans-unit id="3301086086650990787" datatype="html"> |
6391 | <source>Register</source> | 6624 | <source>Register</source> |
6392 | <target state="translated">Regisztráció</target> | 6625 | <target state="translated">Regisztráció</target> |
6393 | 6626 | <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> | |
6394 | <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> | 6627 | </trans-unit> |
6395 | <trans-unit id="6979021199788941693"> | 6628 | <trans-unit id="6979021199788941693"> |
6396 | <source>Your message has been sent.</source> | 6629 | <source>Your message has been sent.</source> |
6397 | <target>Az üzenete el lett küldve.</target> | 6630 | <target>Az üzenete el lett küldve.</target> |
6398 | 6631 | <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> | |
6399 | <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> | 6632 | </trans-unit> |
6400 | <trans-unit id="2072135752262464360"> | 6633 | <trans-unit id="2072135752262464360"> |
6401 | <source>You already sent this form recently</source> | 6634 | <source>You already sent this form recently</source> |
6402 | <target>Már nemrég elküldte ezt az űrlapot</target> | 6635 | <target>Már nemrég elküldte ezt az űrlapot</target> |
6403 | 6636 | <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> | |
6404 | <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> | 6637 | </trans-unit> |
6405 | <trans-unit id="819067926858619041" datatype="html"> | 6638 | <trans-unit id="819067926858619041" datatype="html"> |
6406 | <source>Account videos</source> | 6639 | <source>Account videos</source> |
6407 | <target state="translated">Fiók videói</target> | 6640 | <target state="translated">Fiók videói</target> |
6408 | 6641 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">35</context></context-group> | |
6409 | <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> | 6642 | </trans-unit> |
6410 | <trans-unit id="4605517634011438234" datatype="html"> | 6643 | <trans-unit id="4605517634011438234" datatype="html"> |
6411 | <source>ACCOUNT</source><target state="new">ACCOUNT</target> | 6644 | <source>ACCOUNT</source> |
6645 | <target state="translated">FIÓK</target> | ||
6412 | <context-group purpose="location"> | 6646 | <context-group purpose="location"> |
6413 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> | 6647 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> |
6414 | <context context-type="linenumber">8</context> | 6648 | <context context-type="linenumber">8</context> |
6415 | </context-group> | 6649 | </context-group> |
6416 | </trans-unit> | 6650 | </trans-unit> |
6417 | |||
6418 | <trans-unit id="6823616469362610020" datatype="html"> | 6651 | <trans-unit id="6823616469362610020" datatype="html"> |
6419 | <source>Account video channels</source> | 6652 | <source>Account video channels</source> |
6420 | <target state="translated">Fiók videócsatornái</target> | 6653 | <target state="translated">Fiók videócsatornái</target> |
6421 | 6654 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">26</context></context-group> | |
6422 | <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> | 6655 | </trans-unit> |
6423 | |||
6424 | <trans-unit id="807777065817324789" datatype="html"> | 6656 | <trans-unit id="807777065817324789" datatype="html"> |
6425 | <source>Display all videos (private, unlisted or not yet published)</source> | 6657 | <source>Display all videos (private, unlisted or not yet published)</source> |
6426 | <target state="new">Display all videos (private, unlisted or not yet published)</target> | 6658 | <target state="translated">Minden videó megjelenítése (privát, nem listázott vagy még nem publikált)</target> |
6427 | 6659 | <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> | |
6428 | 6660 | </trans-unit> | |
6429 | 6661 | <trans-unit id="784681343382270982" datatype="html"> | |
6430 | 6662 | <source>Remove this filter</source> | |
6431 | 6663 | <target state="translated">Szűrő eltávolítása</target> | |
6432 | 6664 | <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> | |
6433 | 6665 | </trans-unit> | |
6434 | <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"> | 6666 | <trans-unit id="5254305728396198887" datatype="html"> |
6435 | <source>Remove this filter</source><target state="new">Remove this filter</target> | 6667 | <source>Sensitive content</source> |
6436 | 6668 | <target state="translated">Érzékeny tartalom</target> | |
6437 | <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"> | 6669 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">115</context></context-group> |
6438 | <source>Sensitive content</source><target state="new">Sensitive content</target> | 6670 | </trans-unit> |
6439 | 6671 | <trans-unit id="5590086849807274701" datatype="html"> | |
6440 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">115</context></context-group></trans-unit><trans-unit id="5590086849807274701" datatype="html"> | 6672 | <source>Scope</source> |
6441 | <source>Scope</source><target state="new">Scope</target> | 6673 | <target state="translated">Hatókör</target> |
6442 | 6674 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">122</context></context-group> | |
6443 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">122</context></context-group></trans-unit><trans-unit id="5019568087038659501" datatype="html"> | 6675 | </trans-unit> |
6444 | <source>Federated</source><target state="new">Federated</target> | 6676 | <trans-unit id="5019568087038659501" datatype="html"> |
6445 | 6677 | <source>Federated</source> | |
6446 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">124</context></context-group></trans-unit><trans-unit id="1949800099101277248" datatype="html"> | 6678 | <target state="translated">Föderált</target> |
6447 | <source>Languages</source><target state="new">Languages</target> | 6679 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">124</context></context-group> |
6448 | 6680 | </trans-unit> | |
6449 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">132</context></context-group></trans-unit><trans-unit id="1902100407096396858" datatype="html"> | 6681 | <trans-unit id="1949800099101277248" datatype="html"> |
6450 | <source>Categories</source><target state="new">Categories</target> | 6682 | <source>Languages</source> |
6451 | 6683 | <target state="translated">Nyelv</target> | |
6452 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">141</context></context-group></trans-unit><trans-unit id="3599150758014724057" datatype="html"> | 6684 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">132</context></context-group> |
6453 | <source>All videos</source><target state="new">All videos</target> | 6685 | </trans-unit> |
6454 | 6686 | <trans-unit id="1902100407096396858" datatype="html"> | |
6455 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">150</context></context-group></trans-unit><trans-unit id="8466337030143068285" datatype="html"> | 6687 | <source>Categories</source> |
6456 | <source>Blurred</source><target state="new">Blurred</target> | 6688 | <target state="translated">Kategóriák</target> |
6457 | 6689 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">141</context></context-group> | |
6458 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">225</context></context-group></trans-unit><trans-unit id="7054829409324166420" datatype="html"> | 6690 | </trans-unit> |
6459 | <source>hidden</source><target state="new">hidden</target> | 6691 | <trans-unit id="3599150758014724057" datatype="html"> |
6460 | 6692 | <source>All videos</source> | |
6461 | <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="5766954855630346873" datatype="html"> | 6693 | <target state="translated">Minden videó</target> |
6462 | <source>blurred</source><target state="new">blurred</target> | 6694 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">150</context></context-group> |
6463 | 6695 | </trans-unit> | |
6464 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">232</context></context-group></trans-unit><trans-unit id="1833483831276078393" datatype="html"> | 6696 | <trans-unit id="8466337030143068285" datatype="html"> |
6465 | <source>displayed</source><target state="new">displayed</target> | 6697 | <source>Blurred</source> |
6466 | 6698 | <target state="translated">Elhomáyosítva</target> | |
6467 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">234</context></context-group></trans-unit> | 6699 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">225</context></context-group> |
6700 | </trans-unit> | ||
6701 | <trans-unit id="7054829409324166420" datatype="html"> | ||
6702 | <source>hidden</source> | ||
6703 | <target state="translated">rejtett</target> | ||
6704 | <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> | ||
6705 | </trans-unit> | ||
6706 | <trans-unit id="5766954855630346873" datatype="html"> | ||
6707 | <source>blurred</source> | ||
6708 | <target state="translated">elhomályosított</target> | ||
6709 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">232</context></context-group> | ||
6710 | </trans-unit> | ||
6711 | <trans-unit id="1833483831276078393" datatype="html"> | ||
6712 | <source>displayed</source> | ||
6713 | <target state="translated">megjelenített</target> | ||
6714 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">234</context></context-group> | ||
6715 | </trans-unit> | ||
6468 | <trans-unit id="4856575356061361269" datatype="html"> | 6716 | <trans-unit id="4856575356061361269" datatype="html"> |
6469 | <source><x id="PH"/> direct account followers </source> | 6717 | <source><x id="PH"/> direct account followers </source> |
6470 | <target state="translated"> | 6718 | <target state="translated"> |
6471 | <x id="PH"/> közvetlen fiókkövető | 6719 | <x id="PH"/> közvetlen fiókkövető |
6472 | </target> | 6720 | </target> |
6473 | 6721 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">152</context></context-group> | |
6474 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">152</context></context-group></trans-unit> | 6722 | </trans-unit> |
6475 | <trans-unit id="6250999352462648289" datatype="html"> | 6723 | <trans-unit id="6250999352462648289" datatype="html"> |
6476 | <source>Report this account</source> | 6724 | <source>Report this account</source> |
6477 | <target state="translated">Fiók jelentése</target> | 6725 | <target state="translated">Fiók jelentése</target> |
6478 | 6726 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">196</context></context-group> | |
6479 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> | 6727 | </trans-unit> |
6480 | <trans-unit id="1504521795586863905" datatype="html"> | 6728 | <trans-unit id="1504521795586863905" datatype="html"> |
6481 | <source>VIDEOS</source> | 6729 | <source>VIDEOS</source> |
6482 | <target state="translated">VIDEÓK</target> | 6730 | <target state="translated">VIDEÓK</target> |
@@ -6486,21 +6734,19 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6486 | <trans-unit id="25349740244798533" datatype="html"> | 6734 | <trans-unit id="25349740244798533" datatype="html"> |
6487 | <source>Username copied</source> | 6735 | <source>Username copied</source> |
6488 | <target state="translated">Felhasználónév lemásolva</target> | 6736 | <target state="translated">Felhasználónév lemásolva</target> |
6489 | 6737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">120</context></context-group> | |
6490 | 6738 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">103</context></context-group> | |
6491 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">120</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit> | 6739 | </trans-unit> |
6492 | <trans-unit id="9221735175659318025" datatype="html"> | 6740 | <trans-unit id="9221735175659318025" datatype="html"> |
6493 | <source>1 subscriber</source> | 6741 | <source>1 subscriber</source> |
6494 | <target state="translated">1 feliratkozó</target> | 6742 | <target state="translated">1 feliratkozó</target> |
6495 | 6743 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">124</context></context-group> | |
6496 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 6744 | </trans-unit> |
6497 | <trans-unit id="4097331874769079975" datatype="html"> | 6745 | <trans-unit id="4097331874769079975" datatype="html"> |
6498 | <source><x id="PH"/> subscribers</source> | 6746 | <source><x id="PH"/> subscribers</source> |
6499 | <target state="translated"><x id="PH"/> feliratkozó</target> | 6747 | <target state="translated"><x id="PH"/> feliratkozó</target> |
6500 | 6748 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">126</context></context-group> | |
6501 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 6749 | </trans-unit> |
6502 | |||
6503 | |||
6504 | <trans-unit id="1035838766454786107" datatype="html"> | 6750 | <trans-unit id="1035838766454786107" datatype="html"> |
6505 | <source>Audio-only</source> | 6751 | <source>Audio-only</source> |
6506 | <target state="translated">Csak hang</target> | 6752 | <target state="translated">Csak hang</target> |
@@ -6538,7 +6784,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6538 | </trans-unit> | 6784 | </trans-unit> |
6539 | <trans-unit id="3671005503070777897" datatype="html"> | 6785 | <trans-unit id="3671005503070777897" datatype="html"> |
6540 | <source>1440p</source> | 6786 | <source>1440p</source> |
6541 | <target state="new">1440p</target> | 6787 | <target state="translated">1440p</target> |
6542 | <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> | 6788 | <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> |
6543 | </trans-unit> | 6789 | </trans-unit> |
6544 | <trans-unit id="597839553814574067" datatype="html"> | 6790 | <trans-unit id="597839553814574067" datatype="html"> |
@@ -6550,8 +6796,10 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6550 | <source>Auto (via ffmpeg)</source> | 6796 | <source>Auto (via ffmpeg)</source> |
6551 | <target>Automatikus (ffmpeg által)</target> | 6797 | <target>Automatikus (ffmpeg által)</target> |
6552 | <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> | 6798 | <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> |
6553 | </trans-unit><trans-unit id="3642770981085338761" datatype="html"> | 6799 | </trans-unit> |
6554 | <source>Followers of your instance</source><target state="new">Followers of your instance</target> | 6800 | <trans-unit id="3642770981085338761" datatype="html"> |
6801 | <source>Followers of your instance</source> | ||
6802 | <target state="translated">A példány követői</target> | ||
6555 | <context-group purpose="location"> | 6803 | <context-group purpose="location"> |
6556 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> | 6804 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> |
6557 | <context context-type="linenumber">3</context> | 6805 | <context context-type="linenumber">3</context> |
@@ -6559,38 +6807,38 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6559 | </trans-unit> | 6807 | </trans-unit> |
6560 | <trans-unit id="931255636742351800" datatype="html"> | 6808 | <trans-unit id="931255636742351800" datatype="html"> |
6561 | <source>No limit</source> | 6809 | <source>No limit</source> |
6562 | <target state="new">No limit</target> | 6810 | <target state="translated">Nincs korlát</target> |
6563 | <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> | 6811 | <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> |
6564 | </trans-unit> | 6812 | </trans-unit> |
6565 | <trans-unit id="5250062810079582285" datatype="html"> | 6813 | <trans-unit id="5250062810079582285" datatype="html"> |
6566 | <source>1 hour</source> | 6814 | <source>1 hour</source> |
6567 | <target state="new">1 hour</target> | 6815 | <target state="translated">1 óra</target> |
6568 | <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> | 6816 | <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> |
6569 | </trans-unit> | 6817 | </trans-unit> |
6570 | <trans-unit id="8662356672298904015" datatype="html"> | 6818 | <trans-unit id="8662356672298904015" datatype="html"> |
6571 | <source>3 hours</source> | 6819 | <source>3 hours</source> |
6572 | <target state="new">3 hours</target> | 6820 | <target state="translated">3 óra</target> |
6573 | <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> | 6821 | <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> |
6574 | </trans-unit> | 6822 | </trans-unit> |
6575 | <trans-unit id="1794624538833178491" datatype="html"> | 6823 | <trans-unit id="1794624538833178491" datatype="html"> |
6576 | <source>5 hours</source> | 6824 | <source>5 hours</source> |
6577 | <target state="new">5 hours</target> | 6825 | <target state="translated">5 óra</target> |
6578 | <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> | 6826 | <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> |
6579 | </trans-unit> | 6827 | </trans-unit> |
6580 | <trans-unit id="4941148355486671862" datatype="html"> | 6828 | <trans-unit id="4941148355486671862" datatype="html"> |
6581 | <source>10 hours</source> | 6829 | <source>10 hours</source> |
6582 | <target state="new">10 hours</target> | 6830 | <target state="translated">10 óra</target> |
6583 | <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> | 6831 | <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> |
6584 | </trans-unit> | 6832 | </trans-unit> |
6585 | <trans-unit id="6659155428791414865" datatype="html"> | 6833 | <trans-unit id="6659155428791414865" datatype="html"> |
6586 | <source>x264, targeting maximum device compatibility</source> | 6834 | <source>x264, targeting maximum device compatibility</source> |
6587 | <target state="new">x264, targeting maximum device compatibility</target> | 6835 | <target state="translated">x264, a legjobb eszköz kompatibilitást megcélozva</target> |
6588 | <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> | 6836 | <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> |
6589 | <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> | 6837 | <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> |
6590 | </trans-unit> | 6838 | </trans-unit> |
6591 | <trans-unit id="1473738049081128420" datatype="html"> | 6839 | <trans-unit id="1473738049081128420" datatype="html"> |
6592 | <source>Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically.</source> | 6840 | <source>Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically.</source> |
6593 | <target state="new"> Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. </target> | 6841 | <target state="translated">A szerver átkódolási és videó kiszolgálási kapacitását nem könnyű megbecsülni és nem lehetséges a PeerTube automatikus hangolása.</target> |
6594 | <context-group purpose="location"> | 6842 | <context-group purpose="location"> |
6595 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 6843 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
6596 | <context context-type="linenumber">9,10</context> | 6844 | <context context-type="linenumber">9,10</context> |
@@ -6598,7 +6846,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6598 | </trans-unit> | 6846 | </trans-unit> |
6599 | <trans-unit id="9122600735711449044" datatype="html"> | 6847 | <trans-unit id="9122600735711449044" datatype="html"> |
6600 | <source>However, you may want to read our guidelines before tweaking the following values.</source> | 6848 | <source>However, you may want to read our guidelines before tweaking the following values.</source> |
6601 | <target state="new"> However, you may want to read our guidelines before tweaking the following values. </target> | 6849 | <target state="translated">Érdemes lehet elolvasni az útmutatót, a következő értékek átállítása előtt.</target> |
6602 | <context-group purpose="location"> | 6850 | <context-group purpose="location"> |
6603 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 6851 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
6604 | <context context-type="linenumber">12,13</context> | 6852 | <context context-type="linenumber">12,13</context> |
@@ -6606,7 +6854,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6606 | </trans-unit> | 6854 | </trans-unit> |
6607 | <trans-unit id="9035429011363248302" datatype="html"> | 6855 | <trans-unit id="9035429011363248302" datatype="html"> |
6608 | <source>Read guidelines</source> | 6856 | <source>Read guidelines</source> |
6609 | <target state="new"> Read guidelines </target> | 6857 | <target state="translated">Útmutató elolvasása</target> |
6610 | <context-group purpose="location"> | 6858 | <context-group purpose="location"> |
6611 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 6859 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
6612 | <context context-type="linenumber">17,18</context> | 6860 | <context context-type="linenumber">17,18</context> |
@@ -6614,7 +6862,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6614 | </trans-unit> | 6862 | </trans-unit> |
6615 | <trans-unit id="2384409178337534505" datatype="html"> | 6863 | <trans-unit id="2384409178337534505" datatype="html"> |
6616 | <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> | 6864 | <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> |
6617 | <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> | 6865 | <target state="translated">A feltöltött videók feldolgozása, hogy azok bármely eszköz számára lejátszható formában legyenek kiszolgálva. Bár ez erőforrásigényes, de a PeerTube egy kritikus része, szóval gondosan járjon el.</target> |
6618 | <context-group purpose="location"> | 6866 | <context-group purpose="location"> |
6619 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 6867 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
6620 | <context context-type="linenumber">28,30</context> | 6868 | <context context-type="linenumber">28,30</context> |
@@ -6622,15 +6870,17 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6622 | </trans-unit> | 6870 | </trans-unit> |
6623 | <trans-unit id="1618463615802675111" datatype="html"> | 6871 | <trans-unit id="1618463615802675111" datatype="html"> |
6624 | <source>threads</source> | 6872 | <source>threads</source> |
6625 | <target state="new">threads</target> | 6873 | <target state="translated">szál</target> |
6626 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">86</context></context-group> | 6874 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">86</context></context-group> |
6627 | </trans-unit> | 6875 | </trans-unit> |
6628 | <trans-unit id="593234948551881507" datatype="html"> | 6876 | <trans-unit id="593234948551881507" datatype="html"> |
6629 | <source>thread</source> | 6877 | <source>thread</source> |
6630 | <target state="new">thread</target> | 6878 | <target state="translated">szál</target> |
6631 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">87</context></context-group> | 6879 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">87</context></context-group> |
6632 | </trans-unit><trans-unit id="1305357231288135414" datatype="html"> | 6880 | </trans-unit> |
6633 | <source>Homepage</source><target state="new">Homepage</target> | 6881 | <trans-unit id="1305357231288135414" datatype="html"> |
6882 | <source>Homepage</source> | ||
6883 | <target state="translated">Főoldal</target> | ||
6634 | <context-group purpose="location"> | 6884 | <context-group purpose="location"> |
6635 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 6885 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
6636 | <context context-type="linenumber">7</context> | 6886 | <context context-type="linenumber">7</context> |
@@ -6639,14 +6889,18 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6639 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-homepage.component.html</context> | 6889 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-homepage.component.html</context> |
6640 | <context context-type="linenumber">13</context> | 6890 | <context context-type="linenumber">13</context> |
6641 | </context-group> | 6891 | </context-group> |
6642 | </trans-unit><trans-unit id="5037437391296624618" datatype="html"> | 6892 | </trans-unit> |
6643 | <source>Information</source><target state="new">Information</target> | 6893 | <trans-unit id="5037437391296624618" datatype="html"> |
6894 | <source>Information</source> | ||
6895 | <target state="translated">Információk</target> | ||
6644 | <context-group purpose="location"> | 6896 | <context-group purpose="location"> |
6645 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 6897 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
6646 | <context context-type="linenumber">15</context> | 6898 | <context context-type="linenumber">15</context> |
6647 | </context-group> | 6899 | </context-group> |
6648 | </trans-unit><trans-unit id="8643289769990675407" datatype="html"> | 6900 | </trans-unit> |
6649 | <source>Basic</source><target state="new">Basic</target> | 6901 | <trans-unit id="8643289769990675407" datatype="html"> |
6902 | <source>Basic</source> | ||
6903 | <target state="translated">Alapvető</target> | ||
6650 | <context-group purpose="location"> | 6904 | <context-group purpose="location"> |
6651 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 6905 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
6652 | <context context-type="linenumber">24</context> | 6906 | <context context-type="linenumber">24</context> |
@@ -6655,9 +6909,11 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6655 | <trans-unit id="2060042292048624940" datatype="html"> | 6909 | <trans-unit id="2060042292048624940" datatype="html"> |
6656 | <source>Configuration updated.</source> | 6910 | <source>Configuration updated.</source> |
6657 | <target state="translated">Beállítás frissítve.</target> | 6911 | <target state="translated">Beállítás frissítve.</target> |
6658 | 6912 | <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">286</context></context-group> | |
6659 | <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">286</context></context-group></trans-unit><trans-unit id="6920964195632624609" datatype="html"> | 6913 | </trans-unit> |
6660 | <source>INSTANCE HOMEPAGE</source><target state="new">INSTANCE HOMEPAGE</target> | 6914 | <trans-unit id="6920964195632624609" datatype="html"> |
6915 | <source>INSTANCE HOMEPAGE</source> | ||
6916 | <target state="translated">PÉLDÁNY KEZDŐOLDAL</target> | ||
6661 | <context-group purpose="location"> | 6917 | <context-group purpose="location"> |
6662 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-homepage.component.html</context> | 6918 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-homepage.component.html</context> |
6663 | <context context-type="linenumber">7</context> | 6919 | <context context-type="linenumber">7</context> |
@@ -6665,9 +6921,9 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6665 | </trans-unit> | 6921 | </trans-unit> |
6666 | <trans-unit id="3203902538239082422" datatype="html"> | 6922 | <trans-unit id="3203902538239082422" datatype="html"> |
6667 | <source>You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</source> | 6923 | <source>You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</source> |
6668 | <target state="new">You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</target> | 6924 | <target state="translated">Bekapcsolta a regisztrációt: ezért automatikusan bekapcsolásra került az "Új videók automatikus visszatartása" lentebb a "Videók" beállításainál.</target> |
6669 | 6925 | <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">101</context></context-group> | |
6670 | <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">101</context></context-group></trans-unit> | 6926 | </trans-unit> |
6671 | <trans-unit id="6284468333579755406" datatype="html"> | 6927 | <trans-unit id="6284468333579755406" datatype="html"> |
6672 | <source>Edit custom configuration</source> | 6928 | <source>Edit custom configuration</source> |
6673 | <target state="translated">Egyéni beállítások szerkesztése</target> | 6929 | <target state="translated">Egyéni beállítások szerkesztése</target> |
@@ -6696,34 +6952,41 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6696 | <trans-unit id="2127446333083057097" datatype="html"> | 6952 | <trans-unit id="2127446333083057097" datatype="html"> |
6697 | <source>Domain is required.</source> | 6953 | <source>Domain is required.</source> |
6698 | <target state="translated">Tartomány szükséges.</target> | 6954 | <target state="translated">Tartomány szükséges.</target> |
6699 | 6955 | <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> | |
6700 | <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"> | 6956 | <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> |
6701 | <source>Hosts entered are invalid.</source><target state="new">Hosts entered are invalid.</target> | 6957 | </trans-unit> |
6958 | <trans-unit id="7951488350851416577" datatype="html"> | ||
6959 | <source>Hosts entered are invalid.</source> | ||
6960 | <target state="translated">A beírt kiszolgáló érvénytelen.</target> | ||
6702 | <context-group purpose="location"> | 6961 | <context-group purpose="location"> |
6703 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 6962 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
6704 | <context context-type="linenumber">93</context> | 6963 | <context context-type="linenumber">93</context> |
6705 | </context-group> | 6964 | </context-group> |
6706 | </trans-unit><trans-unit id="1469559036084108672" datatype="html"> | 6965 | </trans-unit> |
6707 | <source>Hosts entered contain duplicates.</source><target state="new">Hosts entered contain duplicates.</target> | 6966 | <trans-unit id="1469559036084108672" datatype="html"> |
6967 | <source>Hosts entered contain duplicates.</source> | ||
6968 | <target state="translated">A beírt kiszolgálók közt több azonos is szerepel.</target> | ||
6708 | <context-group purpose="location"> | 6969 | <context-group purpose="location"> |
6709 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 6970 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
6710 | <context context-type="linenumber">94</context> | 6971 | <context context-type="linenumber">94</context> |
6711 | </context-group> | 6972 | </context-group> |
6712 | </trans-unit><trans-unit id="5991533283446904296" datatype="html"> | 6973 | </trans-unit> |
6713 | <source>Hosts or handles are invalid.</source><target state="new">Hosts or handles are invalid.</target> | 6974 | <trans-unit id="5991533283446904296" datatype="html"> |
6975 | <source>Hosts or handles are invalid.</source> | ||
6976 | <target state="translated">A kiszolgálók vagy nevek érvénytelenek.</target> | ||
6714 | <context-group purpose="location"> | 6977 | <context-group purpose="location"> |
6715 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 6978 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
6716 | <context context-type="linenumber">102</context> | 6979 | <context context-type="linenumber">102</context> |
6717 | </context-group> | 6980 | </context-group> |
6718 | </trans-unit><trans-unit id="6759198394434886237" datatype="html"> | 6981 | </trans-unit> |
6719 | <source>Hosts or handles contain duplicates.</source><target state="new">Hosts or handles contain duplicates.</target> | 6982 | <trans-unit id="6759198394434886237" datatype="html"> |
6983 | <source>Hosts or handles contain duplicates.</source> | ||
6984 | <target state="translated">A kiszolgálók vagy nevek közt több azonos is szerepel.</target> | ||
6720 | <context-group purpose="location"> | 6985 | <context-group purpose="location"> |
6721 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 6986 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
6722 | <context context-type="linenumber">103</context> | 6987 | <context context-type="linenumber">103</context> |
6723 | </context-group> | 6988 | </context-group> |
6724 | </trans-unit> | 6989 | </trans-unit> |
6725 | |||
6726 | |||
6727 | <trans-unit id="240806681889331244" datatype="html"> | 6990 | <trans-unit id="240806681889331244" datatype="html"> |
6728 | <source>Unlimited</source> | 6991 | <source>Unlimited</source> |
6729 | <target state="translated">Korlátlan</target> | 6992 | <target state="translated">Korlátlan</target> |
@@ -6742,42 +7005,42 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6742 | </trans-unit> | 7005 | </trans-unit> |
6743 | <trans-unit id="616370606803836610" datatype="html"> | 7006 | <trans-unit id="616370606803836610" datatype="html"> |
6744 | <source>100MB</source> | 7007 | <source>100MB</source> |
6745 | <target state="translated">100MB</target> | 7008 | <target state="translated">100 MB</target> |
6746 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">24</context></context-group> | 7009 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">24</context></context-group> |
6747 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">40</context></context-group> | 7010 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">40</context></context-group> |
6748 | </trans-unit> | 7011 | </trans-unit> |
6749 | <trans-unit id="9162997081789455476" datatype="html"> | 7012 | <trans-unit id="9162997081789455476" datatype="html"> |
6750 | <source>500MB</source> | 7013 | <source>500MB</source> |
6751 | <target state="translated">500MB</target> | 7014 | <target state="translated">500 MB</target> |
6752 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">25</context></context-group> | 7015 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">25</context></context-group> |
6753 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">41</context></context-group> | 7016 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">41</context></context-group> |
6754 | </trans-unit> | 7017 | </trans-unit> |
6755 | <trans-unit id="1541266817985876981" datatype="html"> | 7018 | <trans-unit id="1541266817985876981" datatype="html"> |
6756 | <source>1GB</source> | 7019 | <source>1GB</source> |
6757 | <target state="translated">1GB</target> | 7020 | <target state="translated">1 GB</target> |
6758 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">26</context></context-group> | 7021 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">26</context></context-group> |
6759 | </trans-unit> | 7022 | </trans-unit> |
6760 | <trans-unit id="6075751004411938819" datatype="html"> | 7023 | <trans-unit id="6075751004411938819" datatype="html"> |
6761 | <source>5GB</source> | 7024 | <source>5GB</source> |
6762 | <target state="translated">5GB</target> | 7025 | <target state="translated">5 GB</target> |
6763 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">27</context></context-group> | 7026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">27</context></context-group> |
6764 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">43</context></context-group> | 7027 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">43</context></context-group> |
6765 | </trans-unit> | 7028 | </trans-unit> |
6766 | <trans-unit id="246811372655482890" datatype="html"> | 7029 | <trans-unit id="246811372655482890" datatype="html"> |
6767 | <source>20GB</source> | 7030 | <source>20GB</source> |
6768 | <target state="translated">20GB</target> | 7031 | <target state="translated">20 GB</target> |
6769 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">28</context></context-group> | 7032 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">28</context></context-group> |
6770 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">45</context></context-group> | 7033 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">45</context></context-group> |
6771 | </trans-unit> | 7034 | </trans-unit> |
6772 | <trans-unit id="2491910291056632032" datatype="html"> | 7035 | <trans-unit id="2491910291056632032" datatype="html"> |
6773 | <source>50GB</source> | 7036 | <source>50GB</source> |
6774 | <target state="translated">50GB</target> | 7037 | <target state="translated">50 GB</target> |
6775 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">29</context></context-group> | 7038 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">29</context></context-group> |
6776 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">46</context></context-group> | 7039 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">46</context></context-group> |
6777 | </trans-unit> | 7040 | </trans-unit> |
6778 | <trans-unit id="5514849824631859021" datatype="html"> | 7041 | <trans-unit id="5514849824631859021" datatype="html"> |
6779 | <source>100GB</source> | 7042 | <source>100GB</source> |
6780 | <target state="new">100GB</target> | 7043 | <target state="translated">100 GB</target> |
6781 | <context-group purpose="location"> | 7044 | <context-group purpose="location"> |
6782 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> | 7045 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> |
6783 | <context context-type="linenumber">30</context> | 7046 | <context context-type="linenumber">30</context> |
@@ -6785,7 +7048,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6785 | </trans-unit> | 7048 | </trans-unit> |
6786 | <trans-unit id="8245180845645676506" datatype="html"> | 7049 | <trans-unit id="8245180845645676506" datatype="html"> |
6787 | <source>200GB</source> | 7050 | <source>200GB</source> |
6788 | <target state="new">200GB</target> | 7051 | <target state="translated">200 GB</target> |
6789 | <context-group purpose="location"> | 7052 | <context-group purpose="location"> |
6790 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> | 7053 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> |
6791 | <context context-type="linenumber">31</context> | 7054 | <context context-type="linenumber">31</context> |
@@ -6793,7 +7056,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6793 | </trans-unit> | 7056 | </trans-unit> |
6794 | <trans-unit id="5468089754278798237" datatype="html"> | 7057 | <trans-unit id="5468089754278798237" datatype="html"> |
6795 | <source>500GB</source> | 7058 | <source>500GB</source> |
6796 | <target state="new">500GB</target> | 7059 | <target state="translated">500 GB</target> |
6797 | <context-group purpose="location"> | 7060 | <context-group purpose="location"> |
6798 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> | 7061 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> |
6799 | <context context-type="linenumber">32</context> | 7062 | <context context-type="linenumber">32</context> |
@@ -6801,22 +7064,22 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6801 | </trans-unit> | 7064 | </trans-unit> |
6802 | <trans-unit id="3977630500122496087" datatype="html"> | 7065 | <trans-unit id="3977630500122496087" datatype="html"> |
6803 | <source>10MB</source> | 7066 | <source>10MB</source> |
6804 | <target state="translated">10MB</target> | 7067 | <target state="translated">10 MB</target> |
6805 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">38</context></context-group> | 7068 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">38</context></context-group> |
6806 | </trans-unit> | 7069 | </trans-unit> |
6807 | <trans-unit id="2060593120571755546" datatype="html"> | 7070 | <trans-unit id="2060593120571755546" datatype="html"> |
6808 | <source>50MB</source> | 7071 | <source>50MB</source> |
6809 | <target state="translated">50MB</target> | 7072 | <target state="translated">50 MB</target> |
6810 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">39</context></context-group> | 7073 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">39</context></context-group> |
6811 | </trans-unit> | 7074 | </trans-unit> |
6812 | <trans-unit id="7653028819867308249" datatype="html"> | 7075 | <trans-unit id="7653028819867308249" datatype="html"> |
6813 | <source>2GB</source> | 7076 | <source>2GB</source> |
6814 | <target state="translated">2GB</target> | 7077 | <target state="translated">2 GB</target> |
6815 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">42</context></context-group> | 7078 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">42</context></context-group> |
6816 | </trans-unit> | 7079 | </trans-unit> |
6817 | <trans-unit id="7641416475804061087" datatype="html"> | 7080 | <trans-unit id="7641416475804061087" datatype="html"> |
6818 | <source>10GB</source> | 7081 | <source>10GB</source> |
6819 | <target state="new">10GB</target> | 7082 | <target state="translated">10 GB</target> |
6820 | <context-group purpose="location"> | 7083 | <context-group purpose="location"> |
6821 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> | 7084 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> |
6822 | <context context-type="linenumber">44</context> | 7085 | <context context-type="linenumber">44</context> |
@@ -6883,8 +7146,10 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6883 | <x id="PH"/> eltávolítva a példány követőiből | 7146 | <x id="PH"/> eltávolítva a példány követőiből |
6884 | </target> | 7147 | </target> |
6885 | <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> | 7148 | <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> |
6886 | </trans-unit><trans-unit id="6018246591673612412" datatype="html"> | 7149 | </trans-unit> |
6887 | <source>Follow</source><target state="new">Follow</target> | 7150 | <trans-unit id="6018246591673612412" datatype="html"> |
7151 | <source>Follow</source> | ||
7152 | <target state="translated">Követés</target> | ||
6888 | <context-group purpose="location"> | 7153 | <context-group purpose="location"> |
6889 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> | 7154 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> |
6890 | <context context-type="linenumber">3</context> | 7155 | <context context-type="linenumber">3</context> |
@@ -6897,8 +7162,10 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6897 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | 7162 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> |
6898 | <context context-type="linenumber">18</context> | 7163 | <context context-type="linenumber">18</context> |
6899 | </context-group> | 7164 | </context-group> |
6900 | </trans-unit><trans-unit id="3596798855644241001" datatype="html"> | 7165 | </trans-unit> |
6901 | <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> | 7166 | <trans-unit id="3596798855644241001" datatype="html"> |
7167 | <source>1 host (without "http://"), account handle or channel handle per line</source> | ||
7168 | <target state="translated">1 kiszolgáló ("http://" nélkül), fiók név vagy csatorna név soronként</target> | ||
6902 | <context-group purpose="location"> | 7169 | <context-group purpose="location"> |
6903 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> | 7170 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> |
6904 | <context context-type="linenumber">11</context> | 7171 | <context context-type="linenumber">11</context> |
@@ -6909,14 +7176,17 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6909 | <target state="translated"> | 7176 | <target state="translated"> |
6910 | <x id="PH"/> nem érvényes | 7177 | <x id="PH"/> nem érvényes |
6911 | </target> | 7178 | </target> |
6912 | 7179 | <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> | |
6913 | <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> | 7180 | <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> |
7181 | </trans-unit> | ||
6914 | <trans-unit id="2355066641781598196" datatype="html"> | 7182 | <trans-unit id="2355066641781598196" datatype="html"> |
6915 | <source>Follow request(s) sent!</source> | 7183 | <source>Follow request(s) sent!</source> |
6916 | <target state="translated">Követési kérések elküldve!</target> | 7184 | <target state="translated">Követési kérések elküldve!</target> |
6917 | 7185 | <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> | |
6918 | <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"> | 7186 | </trans-unit> |
6919 | <source>Your instance subscriptions</source><target state="new">Your instance subscriptions</target> | 7187 | <trans-unit id="3459358413436264734" datatype="html"> |
7188 | <source>Your instance subscriptions</source> | ||
7189 | <target state="translated">Az ön példány feliratkozásai</target> | ||
6920 | <context-group purpose="location"> | 7190 | <context-group purpose="location"> |
6921 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | 7191 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> |
6922 | <context context-type="linenumber">3</context> | 7192 | <context context-type="linenumber">3</context> |
@@ -6925,8 +7195,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6925 | <trans-unit id="4245720728052819482" datatype="html"> | 7195 | <trans-unit id="4245720728052819482" datatype="html"> |
6926 | <source>Do you really want to unfollow <x id="PH"/>?</source> | 7196 | <source>Do you really want to unfollow <x id="PH"/>?</source> |
6927 | <target state="translated">Biztos, hogy megszünteti a(z) <x id="PH"/> követését?</target> | 7197 | <target state="translated">Biztos, hogy megszünteti a(z) <x id="PH"/> követését?</target> |
6928 | 7198 | <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> | |
6929 | <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> | 7199 | </trans-unit> |
6930 | <trans-unit id="9160510009013134726" datatype="html"> | 7200 | <trans-unit id="9160510009013134726" datatype="html"> |
6931 | <source>Unfollow</source> | 7201 | <source>Unfollow</source> |
6932 | <target state="translated">Követés megszüntetése</target> | 7202 | <target state="translated">Követés megszüntetése</target> |
@@ -6935,8 +7205,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6935 | <trans-unit id="3935234189109112926" datatype="html"> | 7205 | <trans-unit id="3935234189109112926" datatype="html"> |
6936 | <source>You are not following <x id="PH"/> anymore.</source> | 7206 | <source>You are not following <x id="PH"/> anymore.</source> |
6937 | <target state="translated">Többé már nem követi a(z) <x id="PH"/> gépet.</target> | 7207 | <target state="translated">Többé már nem követi a(z) <x id="PH"/> gépet.</target> |
6938 | 7208 | <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> | |
6939 | <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> | 7209 | </trans-unit> |
6940 | <trans-unit id="2593763089859685916" datatype="html"> | 7210 | <trans-unit id="2593763089859685916" datatype="html"> |
6941 | <source>enabled</source> | 7211 | <source>enabled</source> |
6942 | <target state="translated">engedélyezve</target> | 7212 | <target state="translated">engedélyezve</target> |
@@ -6955,33 +7225,33 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6955 | <trans-unit id="81585474102700882" datatype="html"> | 7225 | <trans-unit id="81585474102700882" datatype="html"> |
6956 | <source>Used</source> | 7226 | <source>Used</source> |
6957 | <target state="translated">Használt</target> | 7227 | <target state="translated">Használt</target> |
6958 | 7228 | <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">102</context></context-group> | |
6959 | <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">102</context></context-group></trans-unit> | 7229 | </trans-unit> |
6960 | <trans-unit id="3955868613858648955" datatype="html"> | 7230 | <trans-unit id="3955868613858648955" datatype="html"> |
6961 | <source>Available</source> | 7231 | <source>Available</source> |
6962 | <target state="translated">Elérhető</target> | 7232 | <target state="translated">Elérhető</target> |
6963 | 7233 | <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">102</context></context-group> | |
6964 | <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">102</context></context-group></trans-unit> | 7234 | </trans-unit> |
6965 | <trans-unit id="5875705095657098468" datatype="html"> | 7235 | <trans-unit id="5875705095657098468" datatype="html"> |
6966 | <source>Do you really want to remove this video redundancy?</source> | 7236 | <source>Do you really want to remove this video redundancy?</source> |
6967 | <target state="translated">Valóban el szeretné távolítani ezt a videoredundanciát?</target> | 7237 | <target state="translated">Valóban el szeretné távolítani ezt a videoredundanciát?</target> |
6968 | 7238 | <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">142</context></context-group> | |
6969 | <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">142</context></context-group></trans-unit> | 7239 | </trans-unit> |
6970 | <trans-unit id="9098272570113000349" datatype="html"> | 7240 | <trans-unit id="9098272570113000349" datatype="html"> |
6971 | <source>Remove redundancy</source> | 7241 | <source>Remove redundancy</source> |
6972 | <target state="translated">Redundancia eltávolítása</target> | 7242 | <target state="translated">Redundancia eltávolítása</target> |
6973 | 7243 | <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">143</context></context-group> | |
6974 | <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">143</context></context-group></trans-unit> | 7244 | </trans-unit> |
6975 | <trans-unit id="6537102123107780785" datatype="html"> | 7245 | <trans-unit id="6537102123107780785" datatype="html"> |
6976 | <source>Video redundancies removed!</source> | 7246 | <source>Video redundancies removed!</source> |
6977 | <target state="translated">Videoredundanciák eltávolítva!</target> | 7247 | <target state="translated">Videoredundanciák eltávolítva!</target> |
6978 | 7248 | <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> | |
6979 | <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> | 7249 | </trans-unit> |
6980 | <trans-unit id="8639315630141911544" datatype="html"> | 7250 | <trans-unit id="8639315630141911544" datatype="html"> |
6981 | <source>Account <x id="PH"/> unmuted by your instance.</source> | 7251 | <source>Account <x id="PH"/> unmuted by your instance.</source> |
6982 | <target state="translated">A(z) <x id="PH"/> fiók némítását visszavonta az Ön példánya.</target> | 7252 | <target state="translated">A(z) <x id="PH"/> fiók némítását visszavonta az Ön példánya.</target> |
6983 | 7253 | <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> | |
6984 | <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> | 7254 | </trans-unit> |
6985 | <trans-unit id="3371601176452094961" datatype="html"> | 7255 | <trans-unit id="3371601176452094961" datatype="html"> |
6986 | <source>Instance <x id="PH"/> unmuted by your instance.</source> | 7256 | <source>Instance <x id="PH"/> unmuted by your instance.</source> |
6987 | <target state="translated">A(z) <x id="PH"/> példány némítását visszavonta az Ön példánya.</target> | 7257 | <target state="translated">A(z) <x id="PH"/> példány némítását visszavonta az Ön példánya.</target> |
@@ -6990,9 +7260,9 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6990 | <trans-unit id="1598375456114200087" datatype="html"> | 7260 | <trans-unit id="1598375456114200087" datatype="html"> |
6991 | <source>Instance <x id="PH"/> muted.</source> | 7261 | <source>Instance <x id="PH"/> muted.</source> |
6992 | <target state="translated">A <x id="PH"/> példány némítva.</target> | 7262 | <target state="translated">A <x id="PH"/> példány némítva.</target> |
6993 | 7263 | <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> | |
6994 | 7264 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">145</context></context-group> | |
6995 | <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">145</context></context-group></trans-unit> | 7265 | </trans-unit> |
6996 | <trans-unit id="3096398988891996621" datatype="html"> | 7266 | <trans-unit id="3096398988891996621" datatype="html"> |
6997 | <source>Instance <x id="PH"/> muted by your instance.</source> | 7267 | <source>Instance <x id="PH"/> muted by your instance.</source> |
6998 | <target state="translated">A(z) <x id="PH"/> példány némítva az Ön példánya által.</target> | 7268 | <target state="translated">A(z) <x id="PH"/> példány némítva az Ön példánya által.</target> |
@@ -7026,9 +7296,9 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7026 | <trans-unit id="8768506950499277937" datatype="html"> | 7296 | <trans-unit id="8768506950499277937" datatype="html"> |
7027 | <source>Copyright</source> | 7297 | <source>Copyright</source> |
7028 | <target state="translated">Szerzői jog</target> | 7298 | <target state="translated">Szerzői jog</target> |
7029 | 7299 | <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> | |
7030 | 7300 | <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> | |
7031 | <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">161</context></context-group></trans-unit> | 7301 | </trans-unit> |
7032 | <trans-unit id="3776575731053010580" datatype="html"> | 7302 | <trans-unit id="3776575731053010580" datatype="html"> |
7033 | <source>Server rules</source> | 7303 | <source>Server rules</source> |
7034 | <target state="translated">Kiszolgáló szabályai</target> | 7304 | <target state="translated">Kiszolgáló szabályai</target> |
@@ -7037,127 +7307,127 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7037 | <trans-unit id="6907161397537530258" datatype="html"> | 7307 | <trans-unit id="6907161397537530258" datatype="html"> |
7038 | <source>Thumbnails</source> | 7308 | <source>Thumbnails</source> |
7039 | <target state="translated">Indexképek</target> | 7309 | <target state="translated">Indexképek</target> |
7040 | 7310 | <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> | |
7041 | 7311 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">176</context></context-group> | |
7042 | <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">176</context></context-group></trans-unit> | 7312 | </trans-unit> |
7043 | <trans-unit id="6473213678768782133" datatype="html"> | 7313 | <trans-unit id="6473213678768782133" datatype="html"> |
7044 | <source>Internal actions</source> | 7314 | <source>Internal actions</source> |
7045 | <target state="translated">Belső műveletek</target> | 7315 | <target state="translated">Belső műveletek</target> |
7046 | 7316 | <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">56</context></context-group> | |
7047 | 7317 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">256</context></context-group> | |
7048 | <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">56</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">256</context></context-group></trans-unit> | 7318 | </trans-unit> |
7049 | <trans-unit id="4559872264406386913" datatype="html"> | 7319 | <trans-unit id="4559872264406386913" datatype="html"> |
7050 | <source>Delete report</source> | 7320 | <source>Delete report</source> |
7051 | <target state="translated">Jelentés törlése</target> | 7321 | <target state="translated">Jelentés törlése</target> |
7052 | 7322 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">287</context></context-group> | |
7053 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">287</context></context-group></trans-unit> | 7323 | </trans-unit> |
7054 | <trans-unit id="5793550984155962433" datatype="html"> | 7324 | <trans-unit id="5793550984155962433" datatype="html"> |
7055 | <source>Actions for the flagged account</source> | 7325 | <source>Actions for the flagged account</source> |
7056 | <target state="translated">Műveletek a megjelölt fiókhoz</target> | 7326 | <target state="translated">Műveletek a megjelölt fiókhoz</target> |
7057 | 7327 | <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> | |
7058 | <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> | 7328 | </trans-unit> |
7059 | <trans-unit id="1679841953757186358" datatype="html"> | 7329 | <trans-unit id="1679841953757186358" datatype="html"> |
7060 | <source>Mark as accepted</source> | 7330 | <source>Mark as accepted</source> |
7061 | <target state="translated">Megjelölés elfogadottként</target> | 7331 | <target state="translated">Megjelölés elfogadottként</target> |
7062 | 7332 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">272</context></context-group> | |
7063 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">272</context></context-group></trans-unit> | 7333 | </trans-unit> |
7064 | <trans-unit id="7993358694073742566" datatype="html"> | 7334 | <trans-unit id="7993358694073742566" datatype="html"> |
7065 | <source>Mark as rejected</source> | 7335 | <source>Mark as rejected</source> |
7066 | <target state="translated">Megjelölés visszautasítottként</target> | 7336 | <target state="translated">Megjelölés visszautasítottként</target> |
7067 | 7337 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">277</context></context-group> | |
7068 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">277</context></context-group></trans-unit> | 7338 | </trans-unit> |
7069 | <trans-unit id="4175703770051343108" datatype="html"> | 7339 | <trans-unit id="4175703770051343108" datatype="html"> |
7070 | <source>Add internal note</source> | 7340 | <source>Add internal note</source> |
7071 | <target state="translated">Belső jegyzet hozzáadása</target> | 7341 | <target state="translated">Belső jegyzet hozzáadása</target> |
7072 | 7342 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">282</context></context-group> | |
7073 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">282</context></context-group></trans-unit> | 7343 | </trans-unit> |
7074 | <trans-unit id="296166371893775555" datatype="html"> | 7344 | <trans-unit id="296166371893775555" datatype="html"> |
7075 | <source>Actions for the video</source> | 7345 | <source>Actions for the video</source> |
7076 | <target state="translated">A videó műveletei</target> | 7346 | <target state="translated">A videó műveletei</target> |
7077 | 7347 | <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">79</context></context-group> | |
7078 | 7348 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">346</context></context-group> | |
7079 | <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">79</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">346</context></context-group></trans-unit> | 7349 | </trans-unit> |
7080 | <trans-unit id="3924877328520650445" datatype="html"> | 7350 | <trans-unit id="3924877328520650445" datatype="html"> |
7081 | <source>Block video</source> | 7351 | <source>Block video</source> |
7082 | <target state="translated">Videó letiltása</target> | 7352 | <target state="translated">Videó letiltása</target> |
7083 | 7353 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">351</context></context-group> | |
7084 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">351</context></context-group></trans-unit> | 7354 | </trans-unit> |
7085 | <trans-unit id="4762794934098378428" datatype="html"> | 7355 | <trans-unit id="4762794934098378428" datatype="html"> |
7086 | <source>Video blocked.</source> | 7356 | <source>Video blocked.</source> |
7087 | <target state="translated">Videó letiltva.</target> | 7357 | <target state="translated">Videó letiltva.</target> |
7088 | 7358 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">357</context></context-group> | |
7089 | 7359 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context><context context-type="linenumber">60</context></context-group> | |
7090 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">357</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> | 7360 | </trans-unit> |
7091 | <trans-unit id="4328862996304258770" datatype="html"> | 7361 | <trans-unit id="4328862996304258770" datatype="html"> |
7092 | <source>Unblock video</source> | 7362 | <source>Unblock video</source> |
7093 | <target state="translated">Videó feloldása</target> | 7363 | <target state="translated">Videó feloldása</target> |
7094 | 7364 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">367</context></context-group> | |
7095 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">367</context></context-group></trans-unit> | 7365 | </trans-unit> |
7096 | <trans-unit id="9065327551191479877" datatype="html"> | 7366 | <trans-unit id="9065327551191479877" datatype="html"> |
7097 | <source>Video unblocked.</source> | 7367 | <source>Video unblocked.</source> |
7098 | <target state="translated">Video feloldva.</target> | 7368 | <target state="translated">Video feloldva.</target> |
7099 | 7369 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">373</context></context-group> | |
7100 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">373</context></context-group></trans-unit> | 7370 | </trans-unit> |
7101 | <trans-unit id="1250415136605923486" datatype="html"> | 7371 | <trans-unit id="1250415136605923486" datatype="html"> |
7102 | <source>Do you really want to delete this abuse report?</source> | 7372 | <source>Do you really want to delete this abuse report?</source> |
7103 | <target state="translated">Valóban törölni szeretné ezt a visszaélési jelentést?</target> | 7373 | <target state="translated">Valóban törölni szeretné ezt a visszaélési jelentést?</target> |
7104 | 7374 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">145</context></context-group> | |
7105 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">145</context></context-group></trans-unit> | 7375 | </trans-unit> |
7106 | <trans-unit id="3482559157143817408" datatype="html"> | 7376 | <trans-unit id="3482559157143817408" datatype="html"> |
7107 | <source>Abuse deleted.</source> | 7377 | <source>Abuse deleted.</source> |
7108 | <target state="translated">Visszaélési jelentés törölve.</target> | 7378 | <target state="translated">Visszaélési jelentés törölve.</target> |
7109 | 7379 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">151</context></context-group> | |
7110 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">151</context></context-group></trans-unit> | 7380 | </trans-unit> |
7111 | <trans-unit id="6282990098351939529" datatype="html"> | 7381 | <trans-unit id="6282990098351939529" datatype="html"> |
7112 | <source>Deleted comment</source> | 7382 | <source>Deleted comment</source> |
7113 | <target state="translated">Törölt megjegyzés</target> | 7383 | <target state="translated">Törölt megjegyzés</target> |
7114 | 7384 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">227</context></context-group> | |
7115 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">227</context></context-group></trans-unit> | 7385 | </trans-unit> |
7116 | <trans-unit id="9196775343330824083" datatype="html"> | 7386 | <trans-unit id="9196775343330824083" datatype="html"> |
7117 | <source>Messages with reporter</source> | 7387 | <source>Messages with reporter</source> |
7118 | <target state="translated">Üzenetek a bejelentővel</target> | 7388 | <target state="translated">Üzenetek a bejelentővel</target> |
7119 | 7389 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">261</context></context-group> | |
7120 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">261</context></context-group></trans-unit> | 7390 | </trans-unit> |
7121 | <trans-unit id="8770468575924421391" datatype="html"> | 7391 | <trans-unit id="8770468575924421391" datatype="html"> |
7122 | <source>Messages with moderators</source> | 7392 | <source>Messages with moderators</source> |
7123 | <target state="translated">Üzenetek moderátorokkal</target> | 7393 | <target state="translated">Üzenetek moderátorokkal</target> |
7124 | 7394 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">262</context></context-group> | |
7125 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">262</context></context-group></trans-unit> | 7395 | </trans-unit> |
7126 | <trans-unit id="8528549800795985099" datatype="html"> | 7396 | <trans-unit id="8528549800795985099" datatype="html"> |
7127 | <source>Update internal note</source> | 7397 | <source>Update internal note</source> |
7128 | <target state="translated">Belső jegyzet frissítése</target> | 7398 | <target state="translated">Belső jegyzet frissítése</target> |
7129 | 7399 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">267</context></context-group> | |
7130 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">267</context></context-group></trans-unit> | 7400 | </trans-unit> |
7131 | <trans-unit id="3962242315365992494" datatype="html"> | 7401 | <trans-unit id="3962242315365992494" datatype="html"> |
7132 | <source>Switch video block to manual</source> | 7402 | <source>Switch video block to manual</source> |
7133 | <target state="translated">Videó letiltásának manuálisra állítása</target> | 7403 | <target state="translated">Videó letiltásának manuálisra állítása</target> |
7134 | 7404 | <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">61</context></context-group> | |
7135 | <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">61</context></context-group></trans-unit> | 7405 | </trans-unit> |
7136 | <trans-unit id="6906423861055262169" datatype="html"> | 7406 | <trans-unit id="6906423861055262169" datatype="html"> |
7137 | <source>Video <x id="PH"/> switched to manual block.</source> | 7407 | <source>Video <x id="PH"/> switched to manual block.</source> |
7138 | <target state="translated">A <x id="PH"/> videó kézi letiltásra állítva.</target> | 7408 | <target state="translated">A <x id="PH"/> videó kézi letiltásra állítva.</target> |
7139 | 7409 | <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">67</context></context-group> | |
7140 | <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">67</context></context-group></trans-unit> | 7410 | </trans-unit> |
7141 | <trans-unit id="7293356040886494773" datatype="html"> | 7411 | <trans-unit id="7293356040886494773" datatype="html"> |
7142 | <source>Do you really want to unblock this video? It will be available again in the videos list.</source> | 7412 | <source>Do you really want to unblock this video? It will be available again in the videos list.</source> |
7143 | <target state="translated">Biztosan feloldja a videó tiltását? Újra elérhető lesz a videólistában.</target> | 7413 | <target state="translated">Biztosan feloldja a videó tiltását? Újra elérhető lesz a videólistában.</target> |
7144 | 7414 | <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">132</context></context-group> | |
7145 | 7415 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">180</context></context-group> | |
7146 | <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">132</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">180</context></context-group></trans-unit> | 7416 | </trans-unit> |
7147 | <trans-unit id="4859202148272511129" datatype="html"> | 7417 | <trans-unit id="4859202148272511129" datatype="html"> |
7148 | <source>Unblock</source> | 7418 | <source>Unblock</source> |
7149 | <target state="translated">Feloldás</target> | 7419 | <target state="translated">Feloldás</target> |
7150 | 7420 | <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">83</context></context-group> | |
7151 | 7421 | <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">134</context></context-group> | |
7152 | 7422 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">182</context></context-group> | |
7153 | 7423 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">296</context></context-group> | |
7154 | <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">83</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">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">182</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">296</context></context-group></trans-unit> | 7424 | </trans-unit> |
7155 | <trans-unit id="4922469417589203720" datatype="html"> | 7425 | <trans-unit id="4922469417589203720" datatype="html"> |
7156 | <source>Video <x id="PH"/> unblocked.</source> | 7426 | <source>Video <x id="PH"/> unblocked.</source> |
7157 | <target state="translated">A <x id="PH"/> videó feloldva.</target> | 7427 | <target state="translated">A <x id="PH"/> videó feloldva.</target> |
7158 | 7428 | <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">140</context></context-group> | |
7159 | 7429 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">188</context></context-group> | |
7160 | <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">140</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">188</context></context-group></trans-unit> | 7430 | </trans-unit> |
7161 | <trans-unit id="6286037250766429054" datatype="html"> | 7431 | <trans-unit id="6286037250766429054" datatype="html"> |
7162 | <source>yes</source> | 7432 | <source>yes</source> |
7163 | <target state="translated">igen</target> | 7433 | <target state="translated">igen</target> |
@@ -7173,25 +7443,25 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7173 | <trans-unit id="212615365039028546" datatype="html"> | 7443 | <trans-unit id="212615365039028546" datatype="html"> |
7174 | <source>You don't have plugins installed yet.</source> | 7444 | <source>You don't have plugins installed yet.</source> |
7175 | <target state="translated">Még nincsenek telepített bővítményei.</target> | 7445 | <target state="translated">Még nincsenek telepített bővítményei.</target> |
7176 | 7446 | <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">86</context></context-group> | |
7177 | <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">86</context></context-group></trans-unit> | 7447 | </trans-unit> |
7178 | <trans-unit id="1710094819987243777" datatype="html"> | 7448 | <trans-unit id="1710094819987243777" datatype="html"> |
7179 | <source>You don't have themes installed yet.</source> | 7449 | <source>You don't have themes installed yet.</source> |
7180 | <target state="translated">Még nincsenek telepített témái.</target> | 7450 | <target state="translated">Még nincsenek telepített témái.</target> |
7181 | 7451 | <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">89</context></context-group> | |
7182 | <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">89</context></context-group></trans-unit> | 7452 | </trans-unit> |
7183 | <trans-unit id="931472057457682240" datatype="html"> | 7453 | <trans-unit id="931472057457682240" datatype="html"> |
7184 | <source>Update to <x id="PH"/> </source> | 7454 | <source>Update to <x id="PH"/> </source> |
7185 | <target state="translated">Frissítés erre: | 7455 | <target state="translated">Frissítés erre: |
7186 | <x id="PH"/> | 7456 | <x id="PH"/> |
7187 | </target> | 7457 | </target> |
7188 | 7458 | <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">97</context></context-group> | |
7189 | <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">97</context></context-group></trans-unit> | 7459 | </trans-unit> |
7190 | <trans-unit id="9107383323119159110" datatype="html"> | 7460 | <trans-unit id="9107383323119159110" datatype="html"> |
7191 | <source>Do you really want to uninstall <x id="PH"/>?</source> | 7461 | <source>Do you really want to uninstall <x id="PH"/>?</source> |
7192 | <target state="translated">Valóban el szeretné távolítani a(z) <x id="PH"/> bővítményt?</target> | 7462 | <target state="translated">Valóban el szeretné távolítani a(z) <x id="PH"/> bővítményt?</target> |
7193 | 7463 | <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">110</context></context-group> | |
7194 | <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">110</context></context-group></trans-unit> | 7464 | </trans-unit> |
7195 | <trans-unit id="4474510732215437338" datatype="html"> | 7465 | <trans-unit id="4474510732215437338" datatype="html"> |
7196 | <source>Uninstall</source> | 7466 | <source>Uninstall</source> |
7197 | <target state="translated">Eltávolítás</target> | 7467 | <target state="translated">Eltávolítás</target> |
@@ -7202,30 +7472,30 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7202 | <target state="translated"> | 7472 | <target state="translated"> |
7203 | <x id="PH"/> eltávolítva. | 7473 | <x id="PH"/> eltávolítva. |
7204 | </target> | 7474 | </target> |
7205 | 7475 | <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">118</context></context-group> | |
7206 | <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">118</context></context-group></trans-unit> | 7476 | </trans-unit> |
7207 | <trans-unit id="7914215986085479339" datatype="html"> | 7477 | <trans-unit id="7914215986085479339" datatype="html"> |
7208 | <source>This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes.</source> | 7478 | <source>This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes.</source> |
7209 | <target state="new">This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes.</target> | 7479 | <target state="new">This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes.</target> |
7210 | 7480 | <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">134</context></context-group> | |
7211 | <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">134</context></context-group></trans-unit> | 7481 | </trans-unit> |
7212 | <trans-unit id="2849750161085431718" datatype="html"> | 7482 | <trans-unit id="2849750161085431718" datatype="html"> |
7213 | <source>Upgrade</source> | 7483 | <source>Upgrade</source> |
7214 | <target state="new">Upgrade</target> | 7484 | <target state="new">Upgrade</target> |
7215 | 7485 | <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> | |
7216 | <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> | 7486 | </trans-unit> |
7217 | <trans-unit id="7686590072950686188" datatype="html"> | 7487 | <trans-unit id="7686590072950686188" datatype="html"> |
7218 | <source>Proceed upgrade</source> | 7488 | <source>Proceed upgrade</source> |
7219 | <target state="new">Proceed upgrade</target> | 7489 | <target state="new">Proceed upgrade</target> |
7220 | 7490 | <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> | |
7221 | <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> | 7491 | </trans-unit> |
7222 | <trans-unit id="7830308409197461339" datatype="html"> | 7492 | <trans-unit id="7830308409197461339" datatype="html"> |
7223 | <source><x id="PH"/> updated. </source> | 7493 | <source><x id="PH"/> updated. </source> |
7224 | <target state="translated"> | 7494 | <target state="translated"> |
7225 | <x id="PH"/> frissítve. | 7495 | <x id="PH"/> frissítve. |
7226 | </target> | 7496 | </target> |
7227 | 7497 | <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">150</context></context-group> | |
7228 | <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">150</context></context-group></trans-unit> | 7498 | </trans-unit> |
7229 | <trans-unit id="3229595422546554334" datatype="html"> | 7499 | <trans-unit id="3229595422546554334" datatype="html"> |
7230 | <source>Jobs</source> | 7500 | <source>Jobs</source> |
7231 | <target state="translated">Feladatok</target> | 7501 | <target state="translated">Feladatok</target> |
@@ -7239,25 +7509,25 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7239 | <trans-unit id="3150704904301058778" datatype="html"> | 7509 | <trans-unit id="3150704904301058778" datatype="html"> |
7240 | <source>The plugin index is not available. Please retry later.</source> | 7510 | <source>The plugin index is not available. Please retry later.</source> |
7241 | <target state="translated">A bővítményindex nem érhető el. Próbálja újra később.</target> | 7511 | <target state="translated">A bővítményindex nem érhető el. Próbálja újra később.</target> |
7242 | 7512 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">100</context></context-group> | |
7243 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">100</context></context-group></trans-unit> | 7513 | </trans-unit> |
7244 | <trans-unit id="1387301493234848481" datatype="html"> | 7514 | <trans-unit id="1387301493234848481" datatype="html"> |
7245 | <source>Please only install plugins or themes you trust, since they can execute any code on your instance.</source> | 7515 | <source>Please only install plugins or themes you trust, since they can execute any code on your instance.</source> |
7246 | <target state="translated">Csak olyan bővítményeket vagy témákat telepítsen, amelyekben megbízik, mivel azok bármilyen kódot végrehajthatnak az Ön példányán.</target> | 7516 | <target state="translated">Csak olyan bővítményeket vagy témákat telepítsen, amelyekben megbízik, mivel azok bármilyen kódot végrehajthatnak az Ön példányán.</target> |
7247 | 7517 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">134</context></context-group> | |
7248 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">134</context></context-group></trans-unit> | 7518 | </trans-unit> |
7249 | <trans-unit id="2994182849694226596" datatype="html"> | 7519 | <trans-unit id="2994182849694226596" datatype="html"> |
7250 | <source>Install <x id="PH"/>?</source> | 7520 | <source>Install <x id="PH"/>?</source> |
7251 | <target state="translated">Telepíti a(z) <x id="PH"/> bővítményt?</target> | 7521 | <target state="translated">Telepíti a(z) <x id="PH"/> bővítményt?</target> |
7252 | 7522 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">135</context></context-group> | |
7253 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit> | 7523 | </trans-unit> |
7254 | <trans-unit id="6703720397495603345" datatype="html"> | 7524 | <trans-unit id="6703720397495603345" datatype="html"> |
7255 | <source><x id="PH"/> installed. </source> | 7525 | <source><x id="PH"/> installed. </source> |
7256 | <target state="translated"> | 7526 | <target state="translated"> |
7257 | <x id="PH"/> telepítve. | 7527 | <x id="PH"/> telepítve. |
7258 | </target> | 7528 | </target> |
7259 | 7529 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">147</context></context-group> | |
7260 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">147</context></context-group></trans-unit> | 7530 | </trans-unit> |
7261 | <trans-unit id="1875025899004073421" datatype="html"> | 7531 | <trans-unit id="1875025899004073421" datatype="html"> |
7262 | <source>Settings updated.</source> | 7532 | <source>Settings updated.</source> |
7263 | <target state="translated">Beállítások frissítve.</target> | 7533 | <target state="translated">Beállítások frissítve.</target> |
@@ -7266,23 +7536,23 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7266 | <trans-unit id="6901018060567164184" datatype="html"> | 7536 | <trans-unit id="6901018060567164184" datatype="html"> |
7267 | <source>Plugins</source> | 7537 | <source>Plugins</source> |
7268 | <target state="translated">Bővítmények</target> | 7538 | <target state="translated">Bővítmények</target> |
7269 | 7539 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">31</context></context-group> | |
7270 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">31</context></context-group></trans-unit> | 7540 | </trans-unit> |
7271 | <trans-unit id="2798270190074840767" datatype="html"> | 7541 | <trans-unit id="2798270190074840767" datatype="html"> |
7272 | <source>Themes</source> | 7542 | <source>Themes</source> |
7273 | <target state="translated">Témák</target> | 7543 | <target state="translated">Témák</target> |
7274 | 7544 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">35</context></context-group> | |
7275 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">35</context></context-group></trans-unit> | 7545 | </trans-unit> |
7276 | <trans-unit id="2941409202780782189" datatype="html"> | 7546 | <trans-unit id="2941409202780782189" datatype="html"> |
7277 | <source>plugin</source> | 7547 | <source>plugin</source> |
7278 | <target state="translated">bővítmény</target> | 7548 | <target state="translated">bővítmény</target> |
7279 | 7549 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">43</context></context-group> | |
7280 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">43</context></context-group></trans-unit> | 7550 | </trans-unit> |
7281 | <trans-unit id="840045833311458646" datatype="html"> | 7551 | <trans-unit id="840045833311458646" datatype="html"> |
7282 | <source>theme</source> | 7552 | <source>theme</source> |
7283 | <target state="translated">téma</target> | 7553 | <target state="translated">téma</target> |
7284 | 7554 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">46</context></context-group> | |
7285 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 7555 | </trans-unit> |
7286 | <trans-unit id="2483018961011868950" datatype="html"> | 7556 | <trans-unit id="2483018961011868950" datatype="html"> |
7287 | <source>IP address</source> | 7557 | <source>IP address</source> |
7288 | <target state="new">IP address</target> | 7558 | <target state="new">IP address</target> |
@@ -7408,9 +7678,9 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7408 | <trans-unit id="1519954996184640001" datatype="html"> | 7678 | <trans-unit id="1519954996184640001" datatype="html"> |
7409 | <source>Error</source> | 7679 | <source>Error</source> |
7410 | <target state="translated">Hiba</target> | 7680 | <target state="translated">Hiba</target> |
7411 | 7681 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">103</context></context-group> | |
7412 | 7682 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">18</context></context-group> | |
7413 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">103</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> | 7683 | </trans-unit> |
7414 | <trans-unit id="5076187961693950167" datatype="html"> | 7684 | <trans-unit id="5076187961693950167" datatype="html"> |
7415 | <source>Standard logs</source> | 7685 | <source>Standard logs</source> |
7416 | <target state="translated">Szabványos naplók</target> | 7686 | <target state="translated">Szabványos naplók</target> |
@@ -7424,8 +7694,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7424 | <trans-unit id="1886888801485703107" datatype="html"> | 7694 | <trans-unit id="1886888801485703107" datatype="html"> |
7425 | <source>User <x id="PH"/> created.</source> | 7695 | <source>User <x id="PH"/> created.</source> |
7426 | <target state="translated"><x id="PH"/> felhasználó létrehozva.</target> | 7696 | <target state="translated"><x id="PH"/> felhasználó létrehozva.</target> |
7427 | 7697 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">77</context></context-group> | |
7428 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 7698 | </trans-unit> |
7429 | <trans-unit id="8286337167859377104" datatype="html"> | 7699 | <trans-unit id="8286337167859377104" datatype="html"> |
7430 | <source>Create user</source> | 7700 | <source>Create user</source> |
7431 | <target state="translated">Felhasználó létrehozása</target> | 7701 | <target state="translated">Felhasználó létrehozása</target> |
@@ -7449,25 +7719,23 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7449 | <trans-unit id="149953821752893163" datatype="html"> | 7719 | <trans-unit id="149953821752893163" datatype="html"> |
7450 | <source>Update user password</source> | 7720 | <source>Update user password</source> |
7451 | <target state="translated">Felhasználó jelszavának frissítése</target> | 7721 | <target state="translated">Felhasználó jelszavának frissítése</target> |
7452 | 7722 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">53</context></context-group> | |
7453 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">53</context></context-group></trans-unit> | 7723 | </trans-unit> |
7454 | |||
7455 | |||
7456 | <trans-unit id="780323526182667308" datatype="html"> | 7724 | <trans-unit id="780323526182667308" datatype="html"> |
7457 | <source>User <x id="PH"/> updated.</source> | 7725 | <source>User <x id="PH"/> updated.</source> |
7458 | <target state="translated"><x id="PH"/> felhasználó frissítve.</target> | 7726 | <target state="translated"><x id="PH"/> felhasználó frissítve.</target> |
7459 | 7727 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">92</context></context-group> | |
7460 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">92</context></context-group></trans-unit> | 7728 | </trans-unit> |
7461 | <trans-unit id="1349763489797682899" datatype="html"> | 7729 | <trans-unit id="1349763489797682899" datatype="html"> |
7462 | <source>Update user</source> | 7730 | <source>Update user</source> |
7463 | <target state="translated">Felhasználó frissítése</target> | 7731 | <target state="translated">Felhasználó frissítése</target> |
7464 | 7732 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">111</context></context-group> | |
7465 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">111</context></context-group></trans-unit> | 7733 | </trans-unit> |
7466 | <trans-unit id="8819563010322372715" datatype="html"> | 7734 | <trans-unit id="8819563010322372715" datatype="html"> |
7467 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> | 7735 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> |
7468 | <target state="translated">Egy jelszó-visszaállítást kérő e-mail lett küldve <x id="PH"/> számára.</target> | 7736 | <target state="translated">Egy jelszó-visszaállítást kérő e-mail lett küldve <x id="PH"/> számára.</target> |
7469 | 7737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">118</context></context-group> | |
7470 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7738 | </trans-unit> |
7471 | <trans-unit id="7483807629538115183" datatype="html"> | 7739 | <trans-unit id="7483807629538115183" datatype="html"> |
7472 | <source>Users list</source> | 7740 | <source>Users list</source> |
7473 | <target state="translated">Felhasználók listája</target> | 7741 | <target state="translated">Felhasználók listája</target> |
@@ -7481,21 +7749,19 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7481 | <trans-unit id="5552039423287890133" datatype="html"> | 7749 | <trans-unit id="5552039423287890133" datatype="html"> |
7482 | <source>Update a user</source> | 7750 | <source>Update a user</source> |
7483 | <target state="translated">Felhasználó frissítése</target> | 7751 | <target state="translated">Felhasználó frissítése</target> |
7484 | 7752 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context><context context-type="linenumber">45</context></context-group> | |
7485 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7753 | </trans-unit> |
7486 | <trans-unit id="8564701209009684429" datatype="html"> | 7754 | <trans-unit id="8564701209009684429" datatype="html"> |
7487 | <source>Federation</source> | 7755 | <source>Federation</source> |
7488 | <target state="translated">Föderáció</target> | 7756 | <target state="translated">Föderáció</target> |
7489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</context></context-group> | 7757 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</context></context-group> |
7490 | </trans-unit> | 7758 | </trans-unit> |
7491 | |||
7492 | |||
7493 | <trans-unit id="3767259920053407667" datatype="html"> | 7759 | <trans-unit id="3767259920053407667" datatype="html"> |
7494 | <source>Videos will be deleted, comments will be tombstoned.</source> | 7760 | <source>Videos will be deleted, comments will be tombstoned.</source> |
7495 | <target state="translated">A videók törölve lesznek, a hozzászólások el lesznek temetve.</target> | 7761 | <target state="translated">A videók törölve lesznek, a hozzászólások el lesznek temetve.</target> |
7496 | 7762 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">82</context></context-group> | |
7497 | 7763 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">267</context></context-group> | |
7498 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">82</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">267</context></context-group></trans-unit> | 7764 | </trans-unit> |
7499 | <trans-unit id="4209525355702493436" datatype="html"> | 7765 | <trans-unit id="4209525355702493436" datatype="html"> |
7500 | <source>Ban</source> | 7766 | <source>Ban</source> |
7501 | <target state="translated">Kitiltás</target> | 7767 | <target state="translated">Kitiltás</target> |
@@ -7505,35 +7771,41 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7505 | <trans-unit id="3855396975723886053" datatype="html"> | 7771 | <trans-unit id="3855396975723886053" datatype="html"> |
7506 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> | 7772 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> |
7507 | <target state="translated">A felhasználó nem lesz képes többé bejelentkezni, de a videók és a hozzászólások meg lesznek tartva, ahogy vannak.</target> | 7773 | <target state="translated">A felhasználó nem lesz képes többé bejelentkezni, de a videók és a hozzászólások meg lesznek tartva, ahogy vannak.</target> |
7508 | 7774 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">88</context></context-group> | |
7509 | 7775 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">272</context></context-group> | |
7510 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">88</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">272</context></context-group></trans-unit> | 7776 | </trans-unit> |
7511 | <trans-unit id="4451482225013335720" datatype="html"> | 7777 | <trans-unit id="4451482225013335720" datatype="html"> |
7512 | <source>Unban</source> | 7778 | <source>Unban</source> |
7513 | <target state="translated">Kitiltás visszavonása</target> | 7779 | <target state="translated">Kitiltás visszavonása</target> |
7514 | 7780 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">93</context></context-group> | |
7515 | 7781 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">172</context></context-group> | |
7516 | 7782 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">66</context></context-group> | |
7517 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">93</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">172</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">66</context></context-group></trans-unit> | 7783 | </trans-unit> |
7518 | <trans-unit id="7210277223053877333" datatype="html"> | 7784 | <trans-unit id="7210277223053877333" datatype="html"> |
7519 | <source>Set Email as Verified</source> | 7785 | <source>Set Email as Verified</source> |
7520 | <target state="translated">E-mail beállítása ellenőrzöttre</target> | 7786 | <target state="translated">E-mail beállítása ellenőrzöttre</target> |
7521 | 7787 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">100</context></context-group> | |
7522 | 7788 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">283</context></context-group> | |
7523 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">100</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">283</context></context-group></trans-unit><trans-unit id="4207916966377787111" datatype="html"> | 7789 | </trans-unit> |
7524 | <source>Created</source><target state="new">Created</target> | 7790 | <trans-unit id="4207916966377787111" datatype="html"> |
7791 | <source>Created</source> | ||
7792 | <target state="new">Created</target> | ||
7525 | <context-group purpose="location"> | 7793 | <context-group purpose="location"> |
7526 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> | 7794 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> |
7527 | <context context-type="linenumber">115</context> | 7795 | <context context-type="linenumber">115</context> |
7528 | </context-group> | 7796 | </context-group> |
7529 | </trans-unit><trans-unit id="8140268298586972139" datatype="html"> | 7797 | </trans-unit> |
7530 | <source>Daily quota</source><target state="new">Daily quota</target> | 7798 | <trans-unit id="8140268298586972139" datatype="html"> |
7799 | <source>Daily quota</source> | ||
7800 | <target state="new">Daily quota</target> | ||
7531 | <context-group purpose="location"> | 7801 | <context-group purpose="location"> |
7532 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> | 7802 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> |
7533 | <context context-type="linenumber">120</context> | 7803 | <context context-type="linenumber">120</context> |
7534 | </context-group> | 7804 | </context-group> |
7535 | </trans-unit><trans-unit id="7910076708497708162" datatype="html"> | 7805 | </trans-unit> |
7536 | <source>Last login</source><target state="new">Last login</target> | 7806 | <trans-unit id="7910076708497708162" datatype="html"> |
7807 | <source>Last login</source> | ||
7808 | <target state="new">Last login</target> | ||
7537 | <context-group purpose="location"> | 7809 | <context-group purpose="location"> |
7538 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> | 7810 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> |
7539 | <context context-type="linenumber">122</context> | 7811 | <context context-type="linenumber">122</context> |
@@ -7542,83 +7814,83 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7542 | <trans-unit id="3403978719736970622" datatype="html"> | 7814 | <trans-unit id="3403978719736970622" datatype="html"> |
7543 | <source>You cannot ban root.</source> | 7815 | <source>You cannot ban root.</source> |
7544 | <target state="translated">Nem tilthatja ki a rendszergazdát.</target> | 7816 | <target state="translated">Nem tilthatja ki a rendszergazdát.</target> |
7545 | 7817 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">159</context></context-group> | |
7546 | 7818 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">54</context></context-group> | |
7547 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">159</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">54</context></context-group></trans-unit> | 7819 | </trans-unit> |
7548 | <trans-unit id="4884272193574287483" datatype="html"> | 7820 | <trans-unit id="4884272193574287483" datatype="html"> |
7549 | <source>Do you really want to unban <x id="PH"/> users?</source> | 7821 | <source>Do you really want to unban <x id="PH"/> users?</source> |
7550 | <target state="translated">Valóban vissza szeretné vonni <x id="PH"/> felhasználó kitiltását?</target> | 7822 | <target state="translated">Valóban vissza szeretné vonni <x id="PH"/> felhasználó kitiltását?</target> |
7551 | 7823 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">172</context></context-group> | |
7552 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">172</context></context-group></trans-unit> | 7824 | </trans-unit> |
7553 | <trans-unit id="8712248120167780385" datatype="html"> | 7825 | <trans-unit id="8712248120167780385" datatype="html"> |
7554 | <source><x id="PH"/> users unbanned. </source> | 7826 | <source><x id="PH"/> users unbanned. </source> |
7555 | <target state="translated"> | 7827 | <target state="translated"> |
7556 | <x id="PH"/> felhasználó kitiltása visszavonva. | 7828 | <x id="PH"/> felhasználó kitiltása visszavonva. |
7557 | </target> | 7829 | </target> |
7558 | 7830 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">178</context></context-group> | |
7559 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">178</context></context-group></trans-unit> | 7831 | </trans-unit> |
7560 | <trans-unit id="5325873477837320044" datatype="html"> | 7832 | <trans-unit id="5325873477837320044" datatype="html"> |
7561 | <source>You cannot delete root.</source> | 7833 | <source>You cannot delete root.</source> |
7562 | <target state="translated">Nem törölheti a rendszergazdát.</target> | 7834 | <target state="translated">Nem törölheti a rendszergazdát.</target> |
7563 | 7835 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">189</context></context-group> | |
7564 | 7836 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">82</context></context-group> | |
7565 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">189</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">82</context></context-group></trans-unit> | 7837 | </trans-unit> |
7566 | <trans-unit id="4086135983283545219" datatype="html"> | 7838 | <trans-unit id="4086135983283545219" datatype="html"> |
7567 | <source>If you remove these users, you will not be able to create others with the same username!</source> | 7839 | <source>If you remove these users, you will not be able to create others with the same username!</source> |
7568 | <target state="translated">Ha eltávolítja ezeket a felhasználókat, akkor nem fog tudni másokat létrehozni ugyanezzel a felhasználónévvel!</target> | 7840 | <target state="translated">Ha eltávolítja ezeket a felhasználókat, akkor nem fog tudni másokat létrehozni ugyanezzel a felhasználónévvel!</target> |
7569 | 7841 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">194</context></context-group> | |
7570 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">194</context></context-group></trans-unit> | 7842 | </trans-unit> |
7571 | <trans-unit id="7166936623843420016" datatype="html"> | 7843 | <trans-unit id="7166936623843420016" datatype="html"> |
7572 | <source><x id="PH"/> users deleted. </source> | 7844 | <source><x id="PH"/> users deleted. </source> |
7573 | <target state="translated"> | 7845 | <target state="translated"> |
7574 | <x id="PH"/> felhasználó törölve. | 7846 | <x id="PH"/> felhasználó törölve. |
7575 | </target> | 7847 | </target> |
7576 | 7848 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">201</context></context-group> | |
7577 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">201</context></context-group></trans-unit> | 7849 | </trans-unit> |
7578 | <trans-unit id="8360664597512051242" datatype="html"> | 7850 | <trans-unit id="8360664597512051242" datatype="html"> |
7579 | <source><x id="PH"/> users email set as verified. </source> | 7851 | <source><x id="PH"/> users email set as verified. </source> |
7580 | <target state="translated"> | 7852 | <target state="translated"> |
7581 | <x id="PH"/> felhasználó e-mail-címe ellenőrzöttre lett állítva. | 7853 | <x id="PH"/> felhasználó e-mail-címe ellenőrzöttre lett állítva. |
7582 | </target> | 7854 | </target> |
7583 | 7855 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">213</context></context-group> | |
7584 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit> | 7856 | </trans-unit> |
7585 | <trans-unit id="7390990800435887351" datatype="html"> | 7857 | <trans-unit id="7390990800435887351" datatype="html"> |
7586 | <source>Account <x id="PH"/> unmuted.</source> | 7858 | <source>Account <x id="PH"/> unmuted.</source> |
7587 | <target state="translated">A(z) <x id="PH"/> fiók némítása visszavonva.</target> | 7859 | <target state="translated">A(z) <x id="PH"/> fiók némítása visszavonva.</target> |
7588 | 7860 | <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> | |
7589 | 7861 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">131</context></context-group> | |
7590 | <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">131</context></context-group></trans-unit> | 7862 | </trans-unit> |
7591 | <trans-unit id="7246356397085094208" datatype="html"> | 7863 | <trans-unit id="7246356397085094208" datatype="html"> |
7592 | <source>Instance <x id="PH"/> unmuted.</source> | 7864 | <source>Instance <x id="PH"/> unmuted.</source> |
7593 | <target state="translated">A(z) <x id="PH"/> példány némítása visszavonva.</target> | 7865 | <target state="translated">A(z) <x id="PH"/> példány némítása visszavonva.</target> |
7594 | 7866 | <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> | |
7595 | 7867 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">159</context></context-group> | |
7596 | <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">159</context></context-group></trans-unit> | 7868 | </trans-unit> |
7597 | <trans-unit id="5551551295632950210" datatype="html"> | 7869 | <trans-unit id="5551551295632950210" datatype="html"> |
7598 | <source>Videos history is enabled</source> | 7870 | <source>Videos history is enabled</source> |
7599 | <target state="translated">Videók előzményei engedélyezve</target> | 7871 | <target state="translated">Videók előzményei engedélyezve</target> |
7600 | 7872 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">114</context></context-group> | |
7601 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">114</context></context-group></trans-unit> | 7873 | </trans-unit> |
7602 | <trans-unit id="9136227503281311926" datatype="html"> | 7874 | <trans-unit id="9136227503281311926" datatype="html"> |
7603 | <source>Videos history is disabled</source> | 7875 | <source>Videos history is disabled</source> |
7604 | <target state="translated">Videók előzményei letiltva</target> | 7876 | <target state="translated">Videók előzményei letiltva</target> |
7605 | 7877 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">115</context></context-group> | |
7606 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">115</context></context-group></trans-unit> | 7878 | </trans-unit> |
7607 | <trans-unit id="8966726118414892732" datatype="html"> | 7879 | <trans-unit id="8966726118414892732" datatype="html"> |
7608 | <source>Delete videos history</source> | 7880 | <source>Delete videos history</source> |
7609 | <target state="translated">Videók előzményeinek törlése</target> | 7881 | <target state="translated">Videók előzményeinek törlése</target> |
7610 | 7882 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">127</context></context-group> | |
7611 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | 7883 | </trans-unit> |
7612 | <trans-unit id="2482543433481435105" datatype="html"> | 7884 | <trans-unit id="2482543433481435105" datatype="html"> |
7613 | <source>Are you sure you want to delete all your videos history?</source> | 7885 | <source>Are you sure you want to delete all your videos history?</source> |
7614 | <target state="translated">Biztosan törölni szeretné az összes videója előzményét?</target> | 7886 | <target state="translated">Biztosan törölni szeretné az összes videója előzményét?</target> |
7615 | 7887 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">128</context></context-group> | |
7616 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> | 7888 | </trans-unit> |
7617 | <trans-unit id="4051606152827088952" datatype="html"> | 7889 | <trans-unit id="4051606152827088952" datatype="html"> |
7618 | <source>Videos history deleted</source> | 7890 | <source>Videos history deleted</source> |
7619 | <target state="translated">Videók előzményei törölve</target> | 7891 | <target state="translated">Videók előzményei törölve</target> |
7620 | 7892 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">136</context></context-group> | |
7621 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">136</context></context-group></trans-unit> | 7893 | </trans-unit> |
7622 | <trans-unit id="1486537403020619891" datatype="html"> | 7894 | <trans-unit id="1486537403020619891" datatype="html"> |
7623 | <source>My watch history</source> | 7895 | <source>My watch history</source> |
7624 | <target state="new">My watch history</target> | 7896 | <target state="new">My watch history</target> |
@@ -7635,8 +7907,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7635 | <trans-unit id="3183245287221165928" datatype="html"> | 7907 | <trans-unit id="3183245287221165928" datatype="html"> |
7636 | <source>Ownership accepted</source> | 7908 | <source>Ownership accepted</source> |
7637 | <target state="translated">Tulajdonjog elfogadva</target> | 7909 | <target state="translated">Tulajdonjog elfogadva</target> |
7638 | 7910 | <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> | |
7639 | <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> | 7911 | </trans-unit> |
7640 | <trans-unit id="6012072687166259654" datatype="html"> | 7912 | <trans-unit id="6012072687166259654" datatype="html"> |
7641 | <source>Please check your emails to verify your new email.</source> | 7913 | <source>Please check your emails to verify your new email.</source> |
7642 | <target state="translated">Nézze meg az e-mailjeit az új e-mailje ellenőrzéséhez.</target> | 7914 | <target state="translated">Nézze meg az e-mailjeit az új e-mailje ellenőrzéséhez.</target> |
@@ -7659,24 +7931,24 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7659 | <trans-unit id="853586874765134886" datatype="html"> | 7931 | <trans-unit id="853586874765134886" datatype="html"> |
7660 | <source>You current password is invalid.</source> | 7932 | <source>You current password is invalid.</source> |
7661 | <target state="translated">A jelenlegi jelszava érvénytelen.</target> | 7933 | <target state="translated">A jelenlegi jelszava érvénytelen.</target> |
7662 | 7934 | <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> | |
7663 | 7935 | <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> | |
7664 | <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> | 7936 | </trans-unit> |
7665 | <trans-unit id="6159571046971090595" datatype="html"> | 7937 | <trans-unit id="6159571046971090595" datatype="html"> |
7666 | <source>Password updated.</source> | 7938 | <source>Password updated.</source> |
7667 | <target state="translated">Jelszó frissítve.</target> | 7939 | <target state="translated">Jelszó frissítve.</target> |
7668 | 7940 | <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> | |
7669 | <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> | 7941 | </trans-unit> |
7670 | <trans-unit id="5179099584732142331" datatype="html"> | 7942 | <trans-unit id="5179099584732142331" datatype="html"> |
7671 | <source>Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</source> | 7943 | <source>Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</source> |
7672 | <target state="translated">Biztosan törölni szeretné a fiókját? Ez törölni fogja az összes adatát, beleértve a csatornákat, a videókat és a hozzászólásokat is. A többi kiszolgálón és egyéb harmadik feleknél gyorsítótárazott tartalom törlése tovább tarthat.</target> | 7944 | <target state="translated">Biztosan törölni szeretné a fiókját? Ez törölni fogja az összes adatát, beleértve a csatornákat, a videókat és a hozzászólásokat is. A többi kiszolgálón és egyéb harmadik feleknél gyorsítótárazott tartalom törlése tovább tarthat.</target> |
7673 | 7945 | <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">23</context></context-group> | |
7674 | <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">23</context></context-group></trans-unit> | 7946 | </trans-unit> |
7675 | <trans-unit id="6897292459203320054" datatype="html"> | 7947 | <trans-unit id="6897292459203320054" datatype="html"> |
7676 | <source>Type your username to confirm</source> | 7948 | <source>Type your username to confirm</source> |
7677 | <target state="translated">Írja be felhasználónevét a megerősítéshez</target> | 7949 | <target state="translated">Írja be felhasználónevét a megerősítéshez</target> |
7678 | 7950 | <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">24</context></context-group> | |
7679 | <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">24</context></context-group></trans-unit> | 7951 | </trans-unit> |
7680 | <trans-unit id="3122895472333547524" datatype="html"> | 7952 | <trans-unit id="3122895472333547524" datatype="html"> |
7681 | <source>Delete your account</source> | 7953 | <source>Delete your account</source> |
7682 | <target state="translated">Fiók törlése</target> | 7954 | <target state="translated">Fiók törlése</target> |
@@ -7685,19 +7957,19 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7685 | <trans-unit id="2520605306994744004" datatype="html"> | 7957 | <trans-unit id="2520605306994744004" datatype="html"> |
7686 | <source>Delete my account</source> | 7958 | <source>Delete my account</source> |
7687 | <target state="translated">Fiókom törlése</target> | 7959 | <target state="translated">Fiókom törlése</target> |
7688 | 7960 | <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">27</context></context-group> | |
7689 | <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">27</context></context-group></trans-unit> | 7961 | </trans-unit> |
7690 | <trans-unit id="3902597758945766483" datatype="html"> | 7962 | <trans-unit id="3902597758945766483" datatype="html"> |
7691 | <source>Your account is deleted.</source> | 7963 | <source>Your account is deleted.</source> |
7692 | <target state="translated">A fiókja törölve.</target> | 7964 | <target state="translated">A fiókja törölve.</target> |
7693 | 7965 | <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">34</context></context-group> | |
7694 | <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">34</context></context-group></trans-unit> | 7966 | </trans-unit> |
7695 | <trans-unit id="4776289814033837037" datatype="html"> | 7967 | <trans-unit id="4776289814033837037" datatype="html"> |
7696 | <source>Interface settings updated.</source> | 7968 | <source>Interface settings updated.</source> |
7697 | <target state="translated">A felület beállításai frissítve.</target> | 7969 | <target state="translated">A felület beállításai frissítve.</target> |
7698 | 7970 | <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> | |
7699 | 7971 | <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> | |
7700 | <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> | 7972 | </trans-unit> |
7701 | <trans-unit id="77907918814566205" datatype="html"> | 7973 | <trans-unit id="77907918814566205" datatype="html"> |
7702 | <source>New video from your subscriptions</source> | 7974 | <source>New video from your subscriptions</source> |
7703 | <target state="translated">Új videó a feliratkozásaiból</target> | 7975 | <target state="translated">Új videó a feliratkozásaiból</target> |
@@ -7787,13 +8059,13 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7787 | <trans-unit id="5095562193296630034" datatype="html"> | 8059 | <trans-unit id="5095562193296630034" datatype="html"> |
7788 | <source>Preferences saved</source> | 8060 | <source>Preferences saved</source> |
7789 | <target state="translated">Beállítások mentve</target> | 8061 | <target state="translated">Beállítások mentve</target> |
7790 | 8062 | <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">94</context></context-group> | |
7791 | <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">94</context></context-group></trans-unit> | 8063 | </trans-unit> |
7792 | <trans-unit id="4967231969832964676" datatype="html"> | 8064 | <trans-unit id="4967231969832964676" datatype="html"> |
7793 | <source>Profile updated.</source> | 8065 | <source>Profile updated.</source> |
7794 | <target state="translated">Profil frissítve.</target> | 8066 | <target state="translated">Profil frissítve.</target> |
7795 | 8067 | <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> | |
7796 | <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> | 8068 | </trans-unit> |
7797 | <trans-unit id="6721822899525405039" datatype="html"> | 8069 | <trans-unit id="6721822899525405039" datatype="html"> |
7798 | <source>People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source> | 8070 | <source>People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source> |
7799 | <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> | 8071 | <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> |
@@ -7805,72 +8077,71 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7805 | <trans-unit id="3525866160632851851" datatype="html"> | 8077 | <trans-unit id="3525866160632851851" datatype="html"> |
7806 | <source>Avatar changed.</source> | 8078 | <source>Avatar changed.</source> |
7807 | <target state="translated">Profilkép megváltoztatva.</target> | 8079 | <target state="translated">Profilkép megváltoztatva.</target> |
7808 | 8080 | <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> | |
7809 | 8081 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">111</context></context-group> | |
7810 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">111</context></context-group></trans-unit> | 8082 | </trans-unit> |
7811 | <trans-unit id="8920809083620698740" datatype="html"> | 8083 | <trans-unit id="8920809083620698740" datatype="html"> |
7812 | <source>avatar</source> | 8084 | <source>avatar</source> |
7813 | <target state="new">avatar</target> | 8085 | <target state="new">avatar</target> |
7814 | 8086 | <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> | |
7815 | 8087 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">118</context></context-group> | |
7816 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 8088 | </trans-unit> |
7817 | <trans-unit id="2775050991871557896" datatype="html"> | 8089 | <trans-unit id="2775050991871557896" datatype="html"> |
7818 | <source>Avatar deleted.</source> | 8090 | <source>Avatar deleted.</source> |
7819 | <target state="new">Avatar deleted.</target> | 8091 | <target state="new">Avatar deleted.</target> |
7820 | 8092 | <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> | |
7821 | 8093 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">128</context></context-group> | |
7822 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> | 8094 | </trans-unit> |
7823 | <trans-unit id="1233062525939746039" datatype="html"> | 8095 | <trans-unit id="1233062525939746039" datatype="html"> |
7824 | <source>Unknown language</source> | 8096 | <source>Unknown language</source> |
7825 | <target state="translated">Ismeretlen nyelv</target> | 8097 | <target state="translated">Ismeretlen nyelv</target> |
7826 | 8098 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">41</context></context-group> | |
7827 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit> | 8099 | </trans-unit> |
7828 | <trans-unit id="3761504852202418603" datatype="html"> | 8100 | <trans-unit id="3761504852202418603" datatype="html"> |
7829 | <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source> | 8101 | <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source> |
7830 | <target state="translated">Túl sok nyelv engedélyezett. Engedélyezze az összeset, vagy maradjon 20 engedélyezett nyelv alatt.</target> | 8102 | <target state="translated">Túl sok nyelv engedélyezett. Engedélyezze az összeset, vagy maradjon 20 engedélyezett nyelv alatt.</target> |
7831 | 8103 | <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> | |
7832 | <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> | 8104 | </trans-unit> |
7833 | <trans-unit id="3960396487495291449" datatype="html"> | 8105 | <trans-unit id="3960396487495291449" datatype="html"> |
7834 | <source>Video settings updated.</source> | 8106 | <source>Video settings updated.</source> |
7835 | <target state="translated">Videobeállítások frissítve.</target> | 8107 | <target state="translated">Videobeállítások frissítve.</target> |
7836 | 8108 | <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> | |
7837 | <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> | 8109 | </trans-unit> |
7838 | <trans-unit id="3326446048041727269" datatype="html"> | 8110 | <trans-unit id="3326446048041727269" datatype="html"> |
7839 | <source>Display/Video settings updated.</source> | 8111 | <source>Display/Video settings updated.</source> |
7840 | <target state="translated">A megjelenítési és a videobeállítások frissítve.</target> | 8112 | <target state="translated">A megjelenítési és a videobeállítások frissítve.</target> |
7841 | 8113 | <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> | |
7842 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.ts</context><context context-type="linenumber">130</context></context-group></trans-unit> | 8114 | </trans-unit> |
7843 | <trans-unit id="1137937154872046253" datatype="html"> | 8115 | <trans-unit id="1137937154872046253" datatype="html"> |
7844 | <source>Video channel <x id="PH"/> created.</source> | 8116 | <source>Video channel <x id="PH"/> created.</source> |
7845 | <target state="translated">A(z) <x id="PH"/> videócsatorna létrehozva.</target> | 8117 | <target state="translated">A(z) <x id="PH"/> videócsatorna létrehozva.</target> |
7846 | 8118 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">66</context></context-group> | |
7847 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 8119 | </trans-unit> |
7848 | <trans-unit id="8723777130353305761" datatype="html"> | 8120 | <trans-unit id="8723777130353305761" datatype="html"> |
7849 | <source>This name already exists on this instance.</source> | 8121 | <source>This name already exists on this instance.</source> |
7850 | <target state="translated">Ez a név már létezik ebben a példányban.</target> | 8122 | <target state="translated">Ez a név már létezik ebben a példányban.</target> |
7851 | 8123 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">72</context></context-group> | |
7852 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 8124 | </trans-unit> |
7853 | <trans-unit id="7589345916094713536" datatype="html"> | 8125 | <trans-unit id="7589345916094713536" datatype="html"> |
7854 | <source>Video channel <x id="PH"/> updated.</source> | 8126 | <source>Video channel <x id="PH"/> updated.</source> |
7855 | <target state="translated">A(z) <x id="PH"/> videocsatorna frissítve.</target> | 8127 | <target state="translated">A(z) <x id="PH"/> videocsatorna frissítve.</target> |
7856 | 8128 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">96</context></context-group> | |
7857 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">96</context></context-group></trans-unit> | 8129 | </trans-unit> |
7858 | <trans-unit id="8407755843502300957" datatype="html"> | 8130 | <trans-unit id="8407755843502300957" datatype="html"> |
7859 | <source>Banner changed.</source> | 8131 | <source>Banner changed.</source> |
7860 | <target state="new">Banner changed.</target> | 8132 | <target state="new">Banner changed.</target> |
7861 | 8133 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">141</context></context-group> | |
7862 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">141</context></context-group></trans-unit> | 8134 | </trans-unit> |
7863 | <trans-unit id="689638706960732906" datatype="html"> | 8135 | <trans-unit id="689638706960732906" datatype="html"> |
7864 | <source>banner</source> | 8136 | <source>banner</source> |
7865 | <target state="new">banner</target> | 8137 | <target state="new">banner</target> |
7866 | 8138 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">148</context></context-group> | |
7867 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">148</context></context-group></trans-unit> | 8139 | </trans-unit> |
7868 | <trans-unit id="3230561499965076671" datatype="html"> | 8140 | <trans-unit id="3230561499965076671" datatype="html"> |
7869 | <source>Banner deleted.</source> | 8141 | <source>Banner deleted.</source> |
7870 | <target state="new">Banner deleted.</target> | 8142 | <target state="new">Banner deleted.</target> |
7871 | 8143 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">158</context></context-group> | |
7872 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">158</context></context-group></trans-unit> | 8144 | </trans-unit> |
7873 | |||
7874 | <trans-unit id="624066830180032195" datatype="html"> | 8145 | <trans-unit id="624066830180032195" datatype="html"> |
7875 | <source>Video channel <x id="PH"/> deleted.</source> | 8146 | <source>Video channel <x id="PH"/> deleted.</source> |
7876 | <target state="translated">A(z) <x id="PH"/> videócsatorna törölve.</target> | 8147 | <target state="translated">A(z) <x id="PH"/> videócsatorna törölve.</target> |
@@ -7879,8 +8150,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7879 | <trans-unit id="6450826648284332649" datatype="html"> | 8150 | <trans-unit id="6450826648284332649" datatype="html"> |
7880 | <source>Views for the day</source> | 8151 | <source>Views for the day</source> |
7881 | <target state="translated">A nap megtekintései</target> | 8152 | <target state="translated">A nap megtekintései</target> |
7882 | 8153 | <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> | |
7883 | <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> | 8154 | </trans-unit> |
7884 | <trans-unit id="6059091237492573541" datatype="html"> | 8155 | <trans-unit id="6059091237492573541" datatype="html"> |
7885 | <source>Update video channel</source> | 8156 | <source>Update video channel</source> |
7886 | <target state="translated">Videócsatorna frissítése</target> | 8157 | <target state="translated">Videócsatorna frissítése</target> |
@@ -7906,8 +8177,10 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7906 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> | 8177 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> |
7907 | <context context-type="linenumber">48</context> | 8178 | <context context-type="linenumber">48</context> |
7908 | </context-group> | 8179 | </context-group> |
7909 | </trans-unit><trans-unit id="1636934520301910285" datatype="html"> | 8180 | </trans-unit> |
7910 | <source>Reset password</source><target state="new">Reset password</target> | 8181 | <trans-unit id="1636934520301910285" datatype="html"> |
8182 | <source>Reset password</source> | ||
8183 | <target state="new">Reset password</target> | ||
7911 | <context-group purpose="location"> | 8184 | <context-group purpose="location"> |
7912 | <context context-type="sourcefile">src/app/+reset-password/reset-password-routing.module.ts</context> | 8185 | <context context-type="sourcefile">src/app/+reset-password/reset-password-routing.module.ts</context> |
7913 | <context context-type="linenumber">11</context> | 8186 | <context context-type="linenumber">11</context> |
@@ -7924,8 +8197,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7924 | <trans-unit id="5032453707232754344" datatype="html"> | 8197 | <trans-unit id="5032453707232754344" datatype="html"> |
7925 | <source>Playlist <x id="PH"/> created.</source> | 8198 | <source>Playlist <x id="PH"/> created.</source> |
7926 | <target state="translated">A(z) <x id="PH"/> lejátszási lista létrehozva.</target> | 8199 | <target state="translated">A(z) <x id="PH"/> lejátszási lista létrehozva.</target> |
7927 | 8200 | <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> | |
7928 | <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> | 8201 | </trans-unit> |
7929 | <trans-unit id="5674286808255988565" datatype="html"> | 8202 | <trans-unit id="5674286808255988565" datatype="html"> |
7930 | <source>Create</source> | 8203 | <source>Create</source> |
7931 | <target state="translated">Létrehozás</target> | 8204 | <target state="translated">Létrehozás</target> |
@@ -7935,9 +8208,9 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7935 | <trans-unit id="8869957234869568361" datatype="html"> | 8208 | <trans-unit id="8869957234869568361" datatype="html"> |
7936 | <source>Update playlist</source> | 8209 | <source>Update playlist</source> |
7937 | <target state="translated">Lejátszólista frissítése</target> | 8210 | <target state="translated">Lejátszólista frissítése</target> |
7938 | 8211 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">66</context></context-group> | |
7939 | 8212 | <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> | |
7940 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">66</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> | 8213 | </trans-unit> |
7941 | <trans-unit id="5851560788527570644" datatype="html"> | 8214 | <trans-unit id="5851560788527570644" datatype="html"> |
7942 | <source>Notifications</source> | 8215 | <source>Notifications</source> |
7943 | <target state="translated">Értesítések</target> | 8216 | <target state="translated">Értesítések</target> |
@@ -7946,7 +8219,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7946 | </trans-unit> | 8219 | </trans-unit> |
7947 | <trans-unit id="6658000829978978023" datatype="html"> | 8220 | <trans-unit id="6658000829978978023" datatype="html"> |
7948 | <source>Applications</source> | 8221 | <source>Applications</source> |
7949 | <target state="new">Applications</target> | 8222 | <target state="translated">Alkalmazások</target> |
7950 | <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> | 8223 | <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> |
7951 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">127</context></context-group> | 8224 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">127</context></context-group> |
7952 | </trans-unit> | 8225 | </trans-unit> |
@@ -7958,15 +8231,15 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7958 | <trans-unit id="1431617394009162547" datatype="html"> | 8231 | <trans-unit id="1431617394009162547" datatype="html"> |
7959 | <source>Playlist <x id="PH"/> updated.</source> | 8232 | <source>Playlist <x id="PH"/> updated.</source> |
7960 | <target state="translated">A(z) <x id="PH"/> lejátszási lista frissítve.</target> | 8233 | <target state="translated">A(z) <x id="PH"/> lejátszási lista frissítve.</target> |
7961 | 8234 | <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> | |
7962 | <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> | 8235 | </trans-unit> |
7963 | <trans-unit id="2027805873922338635" datatype="html"> | 8236 | <trans-unit id="2027805873922338635" datatype="html"> |
7964 | <source>Do you really want to delete <x id="PH"/>?</source> | 8237 | <source>Do you really want to delete <x id="PH"/>?</source> |
7965 | <target state="translated">Valóban törölni szeretné a(z) <x id="PH"/> lejátszási listát?</target> | 8238 | <target state="translated">Valóban törölni szeretné a(z) <x id="PH"/> lejátszási listát?</target> |
7966 | 8239 | <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> | |
7967 | 8240 | <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> | |
7968 | 8241 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">143</context></context-group> | |
7969 | <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">143</context></context-group></trans-unit> | 8242 | </trans-unit> |
7970 | <trans-unit id="4844578664427956129" datatype="html"> | 8243 | <trans-unit id="4844578664427956129" datatype="html"> |
7971 | <source>Change ownership</source> | 8244 | <source>Change ownership</source> |
7972 | <target state="new">Change ownership</target> | 8245 | <target state="new">Change ownership</target> |
@@ -7985,20 +8258,21 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7985 | <trans-unit id="5752861278140673787" datatype="html"> | 8258 | <trans-unit id="5752861278140673787" datatype="html"> |
7986 | <source>Ownership changes</source> | 8259 | <source>Ownership changes</source> |
7987 | <target state="new">Ownership changes</target> | 8260 | <target state="new">Ownership changes</target> |
7988 | 8261 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">107</context></context-group> | |
7989 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">107</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> | 8262 | <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> |
8263 | </trans-unit> | ||
7990 | <trans-unit id="8197117721861453263" datatype="html"> | 8264 | <trans-unit id="8197117721861453263" datatype="html"> |
7991 | <source>Do you really want to delete <x id="PH"/> videos?</source> | 8265 | <source>Do you really want to delete <x id="PH"/> videos?</source> |
7992 | <target state="translated">Valóban törölni szeretne <x id="PH"/> videót?</target> | 8266 | <target state="translated">Valóban törölni szeretne <x id="PH"/> videót?</target> |
7993 | 8267 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">116</context></context-group> | |
7994 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">116</context></context-group></trans-unit> | 8268 | </trans-unit> |
7995 | <trans-unit id="2728855911908920537" datatype="html"> | 8269 | <trans-unit id="2728855911908920537" datatype="html"> |
7996 | <source><x id="PH"/> videos deleted. </source> | 8270 | <source><x id="PH"/> videos deleted. </source> |
7997 | <target state="translated"> | 8271 | <target state="translated"> |
7998 | <x id="PH"/> videó törölve. | 8272 | <x id="PH"/> videó törölve. |
7999 | </target> | 8273 | </target> |
8000 | 8274 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">133</context></context-group> | |
8001 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit> | 8275 | </trans-unit> |
8002 | <trans-unit id="2027805873922338635" datatype="html"> | 8276 | <trans-unit id="2027805873922338635" datatype="html"> |
8003 | <source>Do you really want to delete <x id="PH"/>? </source> | 8277 | <source>Do you really want to delete <x id="PH"/>? </source> |
8004 | <target state="translated">Valóban törölni szeretné a(z) | 8278 | <target state="translated">Valóban törölni szeretné a(z) |
@@ -8012,15 +8286,17 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8012 | <trans-unit id="2767660806989176400" datatype="html"> | 8286 | <trans-unit id="2767660806989176400" datatype="html"> |
8013 | <source>Video <x id="PH"/> deleted.</source> | 8287 | <source>Video <x id="PH"/> deleted.</source> |
8014 | <target state="translated">A(z) <x id="PH"/> videó törölve.</target> | 8288 | <target state="translated">A(z) <x id="PH"/> videó törölve.</target> |
8015 | 8289 | <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> | |
8016 | 8290 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">214</context></context-group> | |
8017 | <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/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">214</context></context-group></trans-unit> | 8291 | </trans-unit> |
8018 | <trans-unit id="6810714890760227072" datatype="html"> | 8292 | <trans-unit id="6810714890760227072" datatype="html"> |
8019 | <source>Ownership change request sent.</source> | 8293 | <source>Ownership change request sent.</source> |
8020 | <target state="translated">Tulajdonjog-változtatási kérelem elküldve.</target> | 8294 | <target state="translated">Tulajdonjog-változtatási kérelem elküldve.</target> |
8021 | 8295 | <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> | |
8022 | <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"> | 8296 | </trans-unit> |
8023 | <source>Sort by</source><target state="new">Sort by</target> | 8297 | <trans-unit id="7699622144571229146" datatype="html"> |
8298 | <source>Sort by</source> | ||
8299 | <target state="new">Sort by</target> | ||
8024 | <context-group purpose="location"> | 8300 | <context-group purpose="location"> |
8025 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context> | 8301 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context> |
8026 | <context context-type="linenumber">26</context> | 8302 | <context context-type="linenumber">26</context> |
@@ -8049,8 +8325,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8049 | <trans-unit id="1991904494976135035" datatype="html"> | 8325 | <trans-unit id="1991904494976135035" datatype="html"> |
8050 | <source>My abuse reports</source> | 8326 | <source>My abuse reports</source> |
8051 | <target state="translated">Visszaélési jelentések</target> | 8327 | <target state="translated">Visszaélési jelentések</target> |
8052 | 8328 | <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> | |
8053 | <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> | 8329 | </trans-unit> |
8054 | <trans-unit id="5752861278140673787" datatype="html"> | 8330 | <trans-unit id="5752861278140673787" datatype="html"> |
8055 | <source>Ownership changes</source> | 8331 | <source>Ownership changes</source> |
8056 | <target state="translated">Tulajdonjog-változtatások</target> | 8332 | <target state="translated">Tulajdonjog-változtatások</target> |
@@ -8059,13 +8335,13 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8059 | <trans-unit id="5983006734882925930" datatype="html"> | 8335 | <trans-unit id="5983006734882925930" datatype="html"> |
8060 | <source>My video history</source> | 8336 | <source>My video history</source> |
8061 | <target state="new">My video history</target> | 8337 | <target state="new">My video history</target> |
8062 | 8338 | <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> | |
8063 | <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></trans-unit> | 8339 | </trans-unit> |
8064 | <trans-unit id="8181077408762380407" datatype="html"> | 8340 | <trans-unit id="8181077408762380407" datatype="html"> |
8065 | <source>Channels</source> | 8341 | <source>Channels</source> |
8066 | <target state="new">Channels</target> | 8342 | <target state="new">Channels</target> |
8067 | 8343 | <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> | |
8068 | <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></trans-unit> | 8344 | </trans-unit> |
8069 | <trans-unit id="8936704404804793618" datatype="html"> | 8345 | <trans-unit id="8936704404804793618" datatype="html"> |
8070 | <source>Videos</source> | 8346 | <source>Videos</source> |
8071 | <target state="new">Videos</target> | 8347 | <target state="new">Videos</target> |
@@ -8079,47 +8355,46 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8079 | <trans-unit id="7916647920967632052" datatype="html"> | 8355 | <trans-unit id="7916647920967632052" datatype="html"> |
8080 | <source>max size</source> | 8356 | <source>max size</source> |
8081 | <target state="translated">legnagyobb méret</target> | 8357 | <target state="translated">legnagyobb méret</target> |
8082 | 8358 | <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> | |
8083 | 8359 | <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> | |
8084 | <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> | 8360 | </trans-unit> |
8085 | <trans-unit id="6489275254908395777" datatype="html"> | 8361 | <trans-unit id="6489275254908395777" datatype="html"> |
8086 | <source>Maximize editor</source> | 8362 | <source>Maximize editor</source> |
8087 | <target state="new">Maximize editor</target> | 8363 | <target state="new">Maximize editor</target> |
8088 | 8364 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context><context context-type="linenumber">49</context></context-group> | |
8089 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context><context context-type="linenumber">49</context></context-group></trans-unit> | 8365 | </trans-unit> |
8090 | <trans-unit id="4243591013849340688" datatype="html"> | 8366 | <trans-unit id="4243591013849340688" datatype="html"> |
8091 | <source>Exit maximized editor</source> | 8367 | <source>Exit maximized editor</source> |
8092 | <target state="new">Exit maximized editor</target> | 8368 | <target state="new">Exit maximized editor</target> |
8093 | 8369 | <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> | |
8094 | <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> | 8370 | </trans-unit> |
8095 | <trans-unit id="6537885755702623401" datatype="html"> | 8371 | <trans-unit id="6537885755702623401" datatype="html"> |
8096 | <source>Now please check your emails to verify your account and complete signup.</source> | 8372 | <source>Now please check your emails to verify your account and complete signup.</source> |
8097 | <target state="translated">Most nézze meg az e-mailjeit a fiókja ellenőrzéséhez és a regisztráció befejezéséhez.</target> | 8373 | <target state="translated">Most nézze meg az e-mailjeit a fiókja ellenőrzéséhez és a regisztráció befejezéséhez.</target> |
8098 | 8374 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">129</context></context-group> | |
8099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit> | 8375 | </trans-unit> |
8100 | <trans-unit id="2847376451647729886" datatype="html"> | 8376 | <trans-unit id="2847376451647729886" datatype="html"> |
8101 | <source>You are now logged in as <x id="PH"/>!</source> | 8377 | <source>You are now logged in as <x id="PH"/>!</source> |
8102 | <target state="translated">Most <x id="PH"/> néven van bejelentkezve.</target> | 8378 | <target state="translated">Most <x id="PH"/> néven van bejelentkezve.</target> |
8103 | 8379 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">137</context></context-group> | |
8104 | <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> | 8380 | </trans-unit> |
8105 | <trans-unit id="2687679787442328897" datatype="html"> | 8381 | <trans-unit id="2687679787442328897" datatype="html"> |
8106 | <source>An email with verification link will be sent to <x id="PH"/>.</source> | 8382 | <source>An email with verification link will be sent to <x id="PH"/>.</source> |
8107 | <target state="translated">Egy ellenőrző hivatkozást tartalmazó e-mail lesz küldve erre a címre: <x id="PH"/>.</target> | 8383 | <target state="translated">Egy ellenőrző hivatkozást tartalmazó e-mail lesz küldve erre a címre: <x id="PH"/>.</target> |
8108 | 8384 | <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">39</context></context-group> | |
8109 | <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">39</context></context-group></trans-unit> | 8385 | </trans-unit> |
8110 | <trans-unit id="4180693983967989981" datatype="html"> | 8386 | <trans-unit id="4180693983967989981" datatype="html"> |
8111 | <source>Unable to find user id or verification string.</source> | 8387 | <source>Unable to find user id or verification string.</source> |
8112 | <target state="translated">Nem található a felhasználó-azonosító vagy az ellenőrző karakterlánc.</target> | 8388 | <target state="translated">Nem található a felhasználó-azonosító vagy az ellenőrző karakterlánc.</target> |
8113 | <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> | 8389 | <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> |
8114 | <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">33</context></context-group> | 8390 | <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">33</context></context-group> |
8115 | </trans-unit> | 8391 | </trans-unit> |
8116 | |||
8117 | <trans-unit id="1783173774503340906" datatype="html"> | 8392 | <trans-unit id="1783173774503340906" datatype="html"> |
8118 | <source>Subscribe to the account</source> | 8393 | <source>Subscribe to the account</source> |
8119 | <target state="translated">Feliratkozás a fiókra</target> | 8394 | <target state="translated">Feliratkozás a fiókra</target> |
8120 | 8395 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">71</context></context-group> | |
8121 | 8396 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">713</context></context-group> | |
8122 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">71</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">713</context></context-group></trans-unit> | 8397 | </trans-unit> |
8123 | <trans-unit id="3131904093925601441" datatype="html"> | 8398 | <trans-unit id="3131904093925601441" datatype="html"> |
8124 | <source>PLAYLISTS</source> | 8399 | <source>PLAYLISTS</source> |
8125 | <target state="new">PLAYLISTS</target> | 8400 | <target state="new">PLAYLISTS</target> |
@@ -8131,99 +8406,110 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8131 | <trans-unit id="7709367721354853232" datatype="html"> | 8406 | <trans-unit id="7709367721354853232" datatype="html"> |
8132 | <source>Focus the search bar</source> | 8407 | <source>Focus the search bar</source> |
8133 | <target state="translated">Fókuszálás a keresősávra</target> | 8408 | <target state="translated">Fókuszálás a keresősávra</target> |
8134 | 8409 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">270</context></context-group> | |
8135 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">270</context></context-group></trans-unit> | 8410 | </trans-unit> |
8136 | <trans-unit id="4049262826107502276" datatype="html"> | 8411 | <trans-unit id="4049262826107502276" datatype="html"> |
8137 | <source>Toggle the left menu</source> | 8412 | <source>Toggle the left menu</source> |
8138 | <target state="translated">A bal oldali menü ki- és bekapcsolása</target> | 8413 | <target state="translated">A bal oldali menü ki- és bekapcsolása</target> |
8139 | 8414 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">275</context></context-group> | |
8140 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">275</context></context-group></trans-unit> | 8415 | </trans-unit> |
8141 | <trans-unit id="5409372033656550095" datatype="html"> | 8416 | <trans-unit id="5409372033656550095" datatype="html"> |
8142 | <source>Go to the discover videos page</source> | 8417 | <source>Go to the discover videos page</source> |
8143 | <target state="translated">Ugrás a videók felfedezése oldalra</target> | 8418 | <target state="translated">Ugrás a videók felfedezése oldalra</target> |
8144 | 8419 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">280</context></context-group> | |
8145 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">280</context></context-group></trans-unit> | 8420 | </trans-unit> |
8146 | <trans-unit id="4278050445961255445" datatype="html"> | 8421 | <trans-unit id="4278050445961255445" datatype="html"> |
8147 | <source>Go to the trending videos page</source> | 8422 | <source>Go to the trending videos page</source> |
8148 | <target state="translated">Ugrás a felkapott videók oldalra</target> | 8423 | <target state="translated">Ugrás a felkapott videók oldalra</target> |
8149 | 8424 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">285</context></context-group> | |
8150 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">285</context></context-group></trans-unit> | 8425 | </trans-unit> |
8151 | <trans-unit id="3242234958443825475" datatype="html"> | 8426 | <trans-unit id="3242234958443825475" datatype="html"> |
8152 | <source>Go to the recently added videos page</source> | 8427 | <source>Go to the recently added videos page</source> |
8153 | <target state="translated">Ugrás a legutóbb hozzáadott videók oldalára</target> | 8428 | <target state="translated">Ugrás a legutóbb hozzáadott videók oldalára</target> |
8154 | 8429 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">290</context></context-group> | |
8155 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">290</context></context-group></trans-unit> | 8430 | </trans-unit> |
8156 | <trans-unit id="2887122197778293919" datatype="html"> | 8431 | <trans-unit id="2887122197778293919" datatype="html"> |
8157 | <source>Go to the local videos page</source> | 8432 | <source>Go to the local videos page</source> |
8158 | <target state="translated">Ugrás a helyi videók oldalára</target> | 8433 | <target state="translated">Ugrás a helyi videók oldalára</target> |
8159 | 8434 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">295</context></context-group> | |
8160 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">295</context></context-group></trans-unit> | 8435 | </trans-unit> |
8161 | <trans-unit id="8009065619559214982" datatype="html"> | 8436 | <trans-unit id="8009065619559214982" datatype="html"> |
8162 | <source>Go to the videos upload page</source> | 8437 | <source>Go to the videos upload page</source> |
8163 | <target state="translated">Ugrás a videók feltöltési oldalára</target> | 8438 | <target state="translated">Ugrás a videók feltöltési oldalára</target> |
8164 | 8439 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">300</context></context-group> | |
8165 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">300</context></context-group></trans-unit> | 8440 | </trans-unit> |
8166 | <trans-unit id="3779524668013120370" datatype="html"> | 8441 | <trans-unit id="3779524668013120370" datatype="html"> |
8167 | <source>Go to my subscriptions</source> | 8442 | <source>Go to my subscriptions</source> |
8168 | <target state="translated">Ugrás a feliratkozásaimhoz</target> | 8443 | <target state="translated">Ugrás a feliratkozásaimhoz</target> |
8169 | 8444 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">63</context></context-group> | |
8170 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">63</context></context-group></trans-unit> | 8445 | </trans-unit> |
8171 | <trans-unit id="1136469849928650779" datatype="html"> | 8446 | <trans-unit id="1136469849928650779" datatype="html"> |
8172 | <source>Go to my videos</source> | 8447 | <source>Go to my videos</source> |
8173 | <target state="translated">Ugrás a videóimhoz</target> | 8448 | <target state="translated">Ugrás a videóimhoz</target> |
8174 | 8449 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">67</context></context-group> | |
8175 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 8450 | </trans-unit> |
8176 | <trans-unit id="7836683738999600376" datatype="html"> | 8451 | <trans-unit id="7836683738999600376" datatype="html"> |
8177 | <source>Go to my imports</source> | 8452 | <source>Go to my imports</source> |
8178 | <target state="translated">Ugrás az importálásaimhoz</target> | 8453 | <target state="translated">Ugrás az importálásaimhoz</target> |
8179 | 8454 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">71</context></context-group> | |
8180 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">71</context></context-group></trans-unit> | 8455 | </trans-unit> |
8181 | <trans-unit id="7511292153332773503" datatype="html"> | 8456 | <trans-unit id="7511292153332773503" datatype="html"> |
8182 | <source>Go to my channels</source> | 8457 | <source>Go to my channels</source> |
8183 | <target state="translated">Ugrás a csatornáimhoz</target> | 8458 | <target state="translated">Ugrás a csatornáimhoz</target> |
8184 | 8459 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">75</context></context-group> | |
8185 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">75</context></context-group></trans-unit> | 8460 | </trans-unit> |
8186 | <trans-unit id="2013324644839511073" datatype="html"> | 8461 | <trans-unit id="2013324644839511073" datatype="html"> |
8187 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="error.text"/>. | 8462 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="err.text"/>. |
8188 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> | 8463 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> |
8189 | <target state="translated">Az OAuth kliens hitelesítő adatai nem kérhetők le: <x id="PH" equiv-text="error.text"/>. Győződjön meg róla, hogy helyesen állította be a PeerTube-ot (konfiguráció / könyvtár), különösképpen a „webserver” szakaszban.</target> | 8464 | <target state="translated">Az OAuth kliens hitelesítő adatai nem kérhetők le: <x id="PH" equiv-text="error.text"/>. Győződjön meg róla, hogy helyesen állította be a PeerTube-ot (konfiguráció / könyvtár), különösképpen a „webserver” szakaszban.</target> |
8190 | 8465 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">98</context></context-group> | |
8191 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">98</context></context-group></trans-unit> | 8466 | </trans-unit> |
8192 | <trans-unit id="375263728166936544" datatype="html"> | 8467 | <trans-unit id="375263728166936544" datatype="html"> |
8193 | <source>You need to reconnect.</source> | 8468 | <source>You need to reconnect.</source> |
8194 | <target state="translated">Újra kell csatlakoznia.</target> | 8469 | <target state="translated">Újra kell csatlakoznia.</target> |
8195 | 8470 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">221</context></context-group> | |
8196 | <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> | 8471 | </trans-unit> |
8197 | <trans-unit id="2206638022166154361" datatype="html"> | 8472 | <trans-unit id="2206638022166154361" datatype="html"> |
8198 | <source>Keyboard Shortcuts:</source> | 8473 | <source>Keyboard Shortcuts:</source> |
8199 | <target state="translated">Gyorsbillentyűk:</target> | 8474 | <target state="translated">Gyorsbillentyűk:</target> |
8200 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/hotkeys/hotkeys.component.ts</context><context context-type="linenumber">11</context></context-group> | 8475 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/hotkeys/hotkeys.component.ts</context><context context-type="linenumber">11</context></context-group> |
8201 | </trans-unit><trans-unit id="3608407683173066091" datatype="html"> | 8476 | </trans-unit> |
8202 | <source>My history</source><target state="new">My history</target> | 8477 | <trans-unit id="3608407683173066091" datatype="html"> |
8478 | <source>My history</source> | ||
8479 | <target state="new">My history</target> | ||
8203 | <context-group purpose="location"> | 8480 | <context-group purpose="location"> |
8204 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> | 8481 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> |
8205 | <context context-type="linenumber">98</context> | 8482 | <context context-type="linenumber">98</context> |
8206 | </context-group> | 8483 | </context-group> |
8207 | </trans-unit><trans-unit id="4024404994702813072" datatype="html"> | 8484 | </trans-unit> |
8208 | <source>In my library</source><target state="new">In my library</target> | 8485 | <trans-unit id="4024404994702813072" datatype="html"> |
8486 | <source>In my library</source> | ||
8487 | <target state="new">In my library</target> | ||
8209 | <context-group purpose="location"> | 8488 | <context-group purpose="location"> |
8210 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> | 8489 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> |
8211 | <context context-type="linenumber">104</context> | 8490 | <context context-type="linenumber">104</context> |
8212 | </context-group> | 8491 | </context-group> |
8213 | </trans-unit><trans-unit id="232050922346936574" datatype="html"> | 8492 | </trans-unit> |
8214 | <source>Trending</source><target state="new">Trending</target> | 8493 | <trans-unit id="232050922346936574" datatype="html"> |
8215 | 8494 | <source>Trending</source> | |
8216 | <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"> | 8495 | <target state="new">Trending</target> |
8217 | <source>ON <x id="PH" equiv-text="config.instance.name"/></source><target state="new">ON <x id="PH" equiv-text="config.instance.name"/></target> | 8496 | <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> |
8497 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">131</context></context-group> | ||
8498 | </trans-unit> | ||
8499 | <trans-unit id="6470888608149621404" datatype="html"> | ||
8500 | <source>ON <x id="PH" equiv-text="config.instance.name"/></source> | ||
8501 | <target state="new">ON <x id="PH" equiv-text="config.instance.name"/></target> | ||
8218 | <context-group purpose="location"> | 8502 | <context-group purpose="location"> |
8219 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> | 8503 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> |
8220 | <context context-type="linenumber">150</context> | 8504 | <context context-type="linenumber">150</context> |
8221 | </context-group> | 8505 | </context-group> |
8222 | </trans-unit><trans-unit id="2821179408673282599" datatype="html"> | 8506 | </trans-unit> |
8223 | <source>Home</source><target state="new">Home</target> | 8507 | <trans-unit id="2821179408673282599" datatype="html"> |
8224 | 8508 | <source>Home</source> | |
8225 | 8509 | <target state="new">Home</target> | |
8226 | <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> | 8510 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">115</context></context-group> |
8511 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">116</context></context-group> | ||
8512 | </trans-unit> | ||
8227 | <trans-unit id="4648900870671159218" datatype="html"> | 8513 | <trans-unit id="4648900870671159218" datatype="html"> |
8228 | <source>Success</source> | 8514 | <source>Success</source> |
8229 | <target state="translated">Sikerült</target> | 8515 | <target state="translated">Sikerült</target> |
@@ -8232,105 +8518,107 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8232 | <trans-unit id="1266887509445371246" datatype="html"> | 8518 | <trans-unit id="1266887509445371246" datatype="html"> |
8233 | <source>Incorrect username or password.</source> | 8519 | <source>Incorrect username or password.</source> |
8234 | <target state="translated">Helytelen felhasználónév vagy jelszó.</target> | 8520 | <target state="translated">Helytelen felhasználónév vagy jelszó.</target> |
8235 | 8521 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">163</context></context-group> | |
8236 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 8522 | </trans-unit> |
8237 | <trans-unit id="6974874606619467663" datatype="html"> | 8523 | <trans-unit id="6974874606619467663" datatype="html"> |
8238 | <source>Your account is blocked.</source> | 8524 | <source>Your account is blocked.</source> |
8239 | <target state="translated">A fiókja le van tiltva.</target> | 8525 | <target state="translated">A fiókja le van tiltva.</target> |
8240 | 8526 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">164</context></context-group> | |
8241 | <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> | 8527 | </trans-unit> |
8242 | <trans-unit id="7939914198003891823" datatype="html"> | 8528 | <trans-unit id="7939914198003891823" datatype="html"> |
8243 | <source>any language</source> | 8529 | <source>any language</source> |
8244 | <target state="translated">bármely nyelv</target> | 8530 | <target state="translated">bármely nyelv</target> |
8245 | 8531 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">266</context></context-group> | |
8246 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">266</context></context-group></trans-unit> | 8532 | </trans-unit> |
8247 | |||
8248 | <trans-unit id="5633144232269377096" datatype="html"> | 8533 | <trans-unit id="5633144232269377096" datatype="html"> |
8249 | <source>hide</source> | 8534 | <source>hide</source> |
8250 | <target state="translated">elrejtés</target> | 8535 | <target state="translated">elrejtés</target> |
8251 | 8536 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">301</context></context-group> | |
8252 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">301</context></context-group></trans-unit> | 8537 | </trans-unit> |
8253 | <trans-unit id="8603861867909474404" datatype="html"> | 8538 | <trans-unit id="8603861867909474404" datatype="html"> |
8254 | <source>blur</source> | 8539 | <source>blur</source> |
8255 | <target state="translated">homályosítás</target> | 8540 | <target state="translated">homályosítás</target> |
8256 | 8541 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">305</context></context-group> | |
8257 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">305</context></context-group></trans-unit> | 8542 | </trans-unit> |
8258 | <trans-unit id="4534458451100881847" datatype="html"> | 8543 | <trans-unit id="4534458451100881847" datatype="html"> |
8259 | <source>display</source> | 8544 | <source>display</source> |
8260 | <target state="translated">megjelenítés</target> | 8545 | <target state="translated">megjelenítés</target> |
8261 | 8546 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">309</context></context-group> | |
8262 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">309</context></context-group></trans-unit> | 8547 | </trans-unit> |
8263 | <trans-unit id="4467323362722952678" datatype="html"> | 8548 | <trans-unit id="4467323362722952678" datatype="html"> |
8264 | <source>Unknown</source> | 8549 | <source>Unknown</source> |
8265 | <target state="translated">Ismeretlen</target> | 8550 | <target state="translated">Ismeretlen</target> |
8266 | 8551 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">196</context></context-group> | |
8267 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> | 8552 | </trans-unit> |
8268 | <trans-unit id="8781423666414310853" datatype="html"> | 8553 | <trans-unit id="8781423666414310853" datatype="html"> |
8269 | <source>Your password has been successfully reset!</source> | 8554 | <source>Your password has been successfully reset!</source> |
8270 | <target state="translated">A jelszava sikeresen vissza lett állítva!</target> | 8555 | <target state="translated">A jelszava sikeresen vissza lett állítva!</target> |
8271 | <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> | 8556 | <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> |
8272 | </trans-unit> | 8557 | </trans-unit> |
8273 | |||
8274 | <trans-unit id="6048892649018070225" datatype="html"> | 8558 | <trans-unit id="6048892649018070225" datatype="html"> |
8275 | <source>Today</source> | 8559 | <source>Today</source> |
8276 | <target state="translated">Ma</target> | 8560 | <target state="translated">Ma</target> |
8277 | 8561 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">41</context></context-group> | |
8278 | 8562 | <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> | |
8279 | 8563 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">123</context></context-group> | |
8280 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">41</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">123</context></context-group></trans-unit> | 8564 | </trans-unit> |
8281 | <trans-unit id="4498682414491138092" datatype="html"> | 8565 | <trans-unit id="4498682414491138092" datatype="html"> |
8282 | <source>Yesterday</source> | 8566 | <source>Yesterday</source> |
8283 | <target state="translated">Tegnap</target> | 8567 | <target state="translated">Tegnap</target> |
8284 | 8568 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">124</context></context-group> | |
8285 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 8569 | </trans-unit> |
8286 | <trans-unit id="5073473933031004097" datatype="html"> | 8570 | <trans-unit id="5073473933031004097" datatype="html"> |
8287 | <source>This week</source> | 8571 | <source>This week</source> |
8288 | <target state="new">This week</target> | 8572 | <target state="new">This week</target> |
8289 | 8573 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">125</context></context-group> | |
8290 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> | 8574 | </trans-unit> |
8291 | <trans-unit id="842657237693374355" datatype="html"> | 8575 | <trans-unit id="842657237693374355" datatype="html"> |
8292 | <source>This month</source> | 8576 | <source>This month</source> |
8293 | <target state="new">This month</target> | 8577 | <target state="new">This month</target> |
8294 | 8578 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">126</context></context-group> | |
8295 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 8579 | </trans-unit> |
8296 | <trans-unit id="4463380307954693363" datatype="html"> | 8580 | <trans-unit id="4463380307954693363" datatype="html"> |
8297 | <source>Last month</source> | 8581 | <source>Last month</source> |
8298 | <target state="translated">Múlt hónap</target> | 8582 | <target state="translated">Múlt hónap</target> |
8299 | 8583 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">127</context></context-group> | |
8300 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | 8584 | </trans-unit> |
8301 | <trans-unit id="7473676707373218484" datatype="html"> | 8585 | <trans-unit id="7473676707373218484" datatype="html"> |
8302 | <source>Older</source> | 8586 | <source>Older</source> |
8303 | <target state="translated">Régebbiek</target> | 8587 | <target state="translated">Régebbiek</target> |
8304 | 8588 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">128</context></context-group> | |
8305 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> | 8589 | </trans-unit> |
8306 | <trans-unit id="5036991421517255667" datatype="html"> | 8590 | <trans-unit id="5036991421517255667" datatype="html"> |
8307 | <source>Cannot load more videos. Try again later.</source> | 8591 | <source>Cannot load more videos. Try again later.</source> |
8308 | <target state="translated">Több videó nem tölthető be. Próbálja újra később.</target> | 8592 | <target state="translated">Több videó nem tölthető be. Próbálja újra később.</target> |
8309 | 8593 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">225</context></context-group> | |
8310 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">225</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">127</context></context-group></trans-unit> | 8594 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">127</context></context-group> |
8311 | 8595 | </trans-unit> | |
8312 | <trans-unit id="4873149362496451858" datatype="html"> | 8596 | <trans-unit id="4873149362496451858" datatype="html"> |
8313 | <source>Last 7 days</source> | 8597 | <source>Last 7 days</source> |
8314 | <target state="translated">Elmúlt 7 nap</target> | 8598 | <target state="translated">Elmúlt 7 nap</target> |
8315 | 8599 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">45</context></context-group> | |
8316 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 8600 | </trans-unit> |
8317 | <trans-unit id="2949150997160654358" datatype="html"> | 8601 | <trans-unit id="2949150997160654358" datatype="html"> |
8318 | <source>Last 30 days</source> | 8602 | <source>Last 30 days</source> |
8319 | <target state="translated">Elmúlt 30 nap</target> | 8603 | <target state="translated">Elmúlt 30 nap</target> |
8320 | 8604 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">49</context></context-group> | |
8321 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">49</context></context-group></trans-unit> | 8605 | </trans-unit> |
8322 | <trans-unit id="5328600704510694984" datatype="html"> | 8606 | <trans-unit id="5328600704510694984" datatype="html"> |
8323 | <source>Last 365 days</source> | 8607 | <source>Last 365 days</source> |
8324 | <target state="translated">Elmúlt 365 nap</target> | 8608 | <target state="translated">Elmúlt 365 nap</target> |
8325 | 8609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">53</context></context-group> | |
8326 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">53</context></context-group></trans-unit><trans-unit id="2392481201920342009" datatype="html"> | 8610 | </trans-unit> |
8327 | <source>VOD videos</source><target state="new">VOD videos</target> | 8611 | <trans-unit id="2392481201920342009" datatype="html"> |
8612 | <source>VOD videos</source> | ||
8613 | <target state="translated">VOD videók</target> | ||
8328 | <context-group purpose="location"> | 8614 | <context-group purpose="location"> |
8329 | <context context-type="sourcefile">src/app/+search/search-filters.component.ts</context> | 8615 | <context context-type="sourcefile">src/app/+search/search-filters.component.ts</context> |
8330 | <context context-type="linenumber">60</context> | 8616 | <context context-type="linenumber">60</context> |
8331 | </context-group> | 8617 | </context-group> |
8332 | </trans-unit><trans-unit id="2180217594100853008" datatype="html"> | 8618 | </trans-unit> |
8333 | <source>Live videos</source><target state="new">Live videos</target> | 8619 | <trans-unit id="2180217594100853008" datatype="html"> |
8620 | <source>Live videos</source> | ||
8621 | <target state="translated">Élő közvetítések</target> | ||
8334 | <context-group purpose="location"> | 8622 | <context-group purpose="location"> |
8335 | <context context-type="sourcefile">src/app/+search/search-filters.component.ts</context> | 8623 | <context context-type="sourcefile">src/app/+search/search-filters.component.ts</context> |
8336 | <context context-type="linenumber">64</context> | 8624 | <context context-type="linenumber">64</context> |
@@ -8339,47 +8627,48 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8339 | <trans-unit id="8487565500496466433" datatype="html"> | 8627 | <trans-unit id="8487565500496466433" datatype="html"> |
8340 | <source>Short (< 4 min)</source> | 8628 | <source>Short (< 4 min)</source> |
8341 | <target state="translated">Rövid (< 4 perc)</target> | 8629 | <target state="translated">Rövid (< 4 perc)</target> |
8342 | 8630 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">71</context></context-group> | |
8343 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">71</context></context-group></trans-unit> | 8631 | </trans-unit> |
8344 | <trans-unit id="3642535017283477339" datatype="html"> | 8632 | <trans-unit id="3642535017283477339" datatype="html"> |
8345 | <source>Medium (4-10 min)</source> | 8633 | <source>Medium (4-10 min)</source> |
8346 | <target state="translated">Közepes (4-10 perc)</target> | 8634 | <target state="translated">Közepes (4-10 perc)</target> |
8347 | 8635 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">75</context></context-group> | |
8348 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">75</context></context-group></trans-unit> | 8636 | </trans-unit> |
8349 | <trans-unit id="6613870447286561244" datatype="html"> | 8637 | <trans-unit id="6613870447286561244" datatype="html"> |
8350 | <source>Long (> 10 min)</source> | 8638 | <source>Long (> 10 min)</source> |
8351 | <target state="translated">Hosszú (> 10 perc)</target> | 8639 | <target state="translated">Hosszú (> 10 perc)</target> |
8352 | 8640 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">79</context></context-group> | |
8353 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8641 | </trans-unit> |
8354 | <trans-unit id="1787083504545967" datatype="html"> | 8642 | <trans-unit id="1787083504545967" datatype="html"> |
8355 | <source>Relevance</source> | 8643 | <source>Relevance</source> |
8356 | <target state="translated">Fontosság</target> | 8644 | <target state="translated">Fontosság</target> |
8357 | 8645 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">86</context></context-group> | |
8358 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">86</context></context-group></trans-unit> | 8646 | </trans-unit> |
8359 | <trans-unit id="7944277186358179990" datatype="html"> | 8647 | <trans-unit id="7944277186358179990" datatype="html"> |
8360 | <source>Publish date</source> | 8648 | <source>Publish date</source> |
8361 | <target state="translated">Közzétételi dátum</target> | 8649 | <target state="translated">Közzétételi dátum</target> |
8362 | 8650 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">90</context></context-group> | |
8363 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">90</context></context-group></trans-unit> | 8651 | </trans-unit> |
8364 | <trans-unit id="2123659921722214537" datatype="html"> | 8652 | <trans-unit id="2123659921722214537" datatype="html"> |
8365 | <source>Views</source> | 8653 | <source>Views</source> |
8366 | <target state="translated">Megtekintések</target> | 8654 | <target state="translated">Megtekintések</target> |
8367 | 8655 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">94</context></context-group> | |
8368 | 8656 | </trans-unit> | |
8369 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit> | ||
8370 | <trans-unit id="3208627574396957172" datatype="html"> | 8657 | <trans-unit id="3208627574396957172" datatype="html"> |
8371 | <source>Search index is unavailable. Retrying with instance results instead.</source> | 8658 | <source>Search index is unavailable. Retrying with instance results instead.</source> |
8372 | <target state="translated">A keresőindex nem érhető el. Újrapróbálkozás a példány találataival.</target> | 8659 | <target state="translated">A keresőindex nem érhető el. Újrapróbálkozás a példány találataival.</target> |
8373 | 8660 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">163</context></context-group> | |
8374 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 8661 | </trans-unit> |
8375 | <trans-unit id="307702206382241469" datatype="html"> | 8662 | <trans-unit id="307702206382241469" datatype="html"> |
8376 | <source>Search error</source> | 8663 | <source>Search error</source> |
8377 | <target state="translated">Keresési hiba</target> | 8664 | <target state="translated">Keresési hiba</target> |
8378 | 8665 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">164</context></context-group> | |
8379 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">164</context></context-group></trans-unit><trans-unit id="8491751845906232809" datatype="html"> | 8666 | </trans-unit> |
8380 | <source>PeerTube instance host filter is invalid</source><target state="new">PeerTube instance host filter is invalid</target> | 8667 | <trans-unit id="8491751845906232809" datatype="html"> |
8381 | 8668 | <source>PeerTube instance host filter is invalid</source> | |
8382 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">332</context></context-group></trans-unit> | 8669 | <target state="new">PeerTube instance host filter is invalid</target> |
8670 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">332</context></context-group> | ||
8671 | </trans-unit> | ||
8383 | <trans-unit id="4580988005648117665" datatype="html"> | 8672 | <trans-unit id="4580988005648117665" datatype="html"> |
8384 | <source>Search</source> | 8673 | <source>Search</source> |
8385 | <target state="translated">Keresés</target> | 8674 | <target state="translated">Keresés</target> |
@@ -8401,9 +8690,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8401 | <target state="translated"> | 8690 | <target state="translated"> |
8402 | <x id="PH"/> évvel ezelőtt | 8691 | <x id="PH"/> évvel ezelőtt |
8403 | </target> | 8692 | </target> |
8404 | 8693 | <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> | |
8405 | <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"> | 8694 | </trans-unit> |
8406 | <source>1 year ago</source><target state="new">1 year ago</target> | 8695 | <trans-unit id="8392321423487952834" datatype="html"> |
8696 | <source>1 year ago</source> | ||
8697 | <target state="new">1 year ago</target> | ||
8407 | <context-group purpose="location"> | 8698 | <context-group purpose="location"> |
8408 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> | 8699 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> |
8409 | <context context-type="linenumber">12</context> | 8700 | <context context-type="linenumber">12</context> |
@@ -8413,15 +8704,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8413 | <context context-type="linenumber">17</context> | 8704 | <context context-type="linenumber">17</context> |
8414 | </context-group> | 8705 | </context-group> |
8415 | </trans-unit> | 8706 | </trans-unit> |
8416 | |||
8417 | <trans-unit id="9022576335789205254" datatype="html"> | 8707 | <trans-unit id="9022576335789205254" datatype="html"> |
8418 | <source><x id="PH"/> months ago </source> | 8708 | <source><x id="PH"/> months ago </source> |
8419 | <target state="translated"> | 8709 | <target state="translated"> |
8420 | <x id="PH"/> hónappal ezelőtt | 8710 | <x id="PH"/> hónappal ezelőtt |
8421 | </target> | 8711 | </target> |
8422 | 8712 | <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> | |
8423 | <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"> | 8713 | </trans-unit> |
8424 | <source>1 month ago</source><target state="new">1 month ago</target> | 8714 | <trans-unit id="6874778750344205852" datatype="html"> |
8715 | <source>1 month ago</source> | ||
8716 | <target state="new">1 month ago</target> | ||
8425 | <context-group purpose="location"> | 8717 | <context-group purpose="location"> |
8426 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> | 8718 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> |
8427 | <context context-type="linenumber">19</context> | 8719 | <context context-type="linenumber">19</context> |
@@ -8431,61 +8723,63 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8431 | <context context-type="linenumber">24</context> | 8723 | <context context-type="linenumber">24</context> |
8432 | </context-group> | 8724 | </context-group> |
8433 | </trans-unit> | 8725 | </trans-unit> |
8434 | |||
8435 | <trans-unit id="6473426250245763193" datatype="html"> | 8726 | <trans-unit id="6473426250245763193" datatype="html"> |
8436 | <source><x id="PH"/> weeks ago </source> | 8727 | <source><x id="PH"/> weeks ago </source> |
8437 | <target state="translated"> | 8728 | <target state="translated"> |
8438 | <x id="PH"/> héttel ezelőtt | 8729 | <x id="PH"/> héttel ezelőtt |
8439 | </target> | 8730 | </target> |
8440 | 8731 | <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> | |
8441 | <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"> | 8732 | </trans-unit> |
8442 | <source>1 week ago</source><target state="new">1 week ago</target> | 8733 | <trans-unit id="6538455390369999912" datatype="html"> |
8734 | <source>1 week ago</source> | ||
8735 | <target state="new">1 week ago</target> | ||
8443 | <context-group purpose="location"> | 8736 | <context-group purpose="location"> |
8444 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> | 8737 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> |
8445 | <context context-type="linenumber">26</context> | 8738 | <context context-type="linenumber">26</context> |
8446 | </context-group> | 8739 | </context-group> |
8447 | </trans-unit> | 8740 | </trans-unit> |
8448 | |||
8449 | <trans-unit id="5186107770140555014" datatype="html"> | 8741 | <trans-unit id="5186107770140555014" datatype="html"> |
8450 | <source><x id="PH"/> days ago </source> | 8742 | <source><x id="PH"/> days ago </source> |
8451 | <target state="translated"> | 8743 | <target state="translated"> |
8452 | <x id="PH"/> nappal ezelőtt | 8744 | <x id="PH"/> nappal ezelőtt |
8453 | </target> | 8745 | </target> |
8454 | 8746 | <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> | |
8455 | <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"> | 8747 | </trans-unit> |
8456 | <source>1 day ago</source><target state="new">1 day ago</target> | 8748 | <trans-unit id="3927517496763161987" datatype="html"> |
8749 | <source>1 day ago</source> | ||
8750 | <target state="new">1 day ago</target> | ||
8457 | <context-group purpose="location"> | 8751 | <context-group purpose="location"> |
8458 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> | 8752 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> |
8459 | <context context-type="linenumber">30</context> | 8753 | <context context-type="linenumber">30</context> |
8460 | </context-group> | 8754 | </context-group> |
8461 | </trans-unit> | 8755 | </trans-unit> |
8462 | |||
8463 | <trans-unit id="6522428509564266583" datatype="html"> | 8756 | <trans-unit id="6522428509564266583" datatype="html"> |
8464 | <source><x id="PH"/> hours ago </source> | 8757 | <source><x id="PH"/> hours ago </source> |
8465 | <target state="translated"> | 8758 | <target state="translated"> |
8466 | <x id="PH"/> órával ezelőtt | 8759 | <x id="PH"/> órával ezelőtt |
8467 | </target> | 8760 | </target> |
8468 | 8761 | <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> | |
8469 | <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"> | 8762 | </trans-unit> |
8470 | <source>1 hour ago</source><target state="new">1 hour ago</target> | 8763 | <trans-unit id="6285422673271535468" datatype="html"> |
8764 | <source>1 hour ago</source> | ||
8765 | <target state="new">1 hour ago</target> | ||
8471 | <context-group purpose="location"> | 8766 | <context-group purpose="location"> |
8472 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> | 8767 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> |
8473 | <context context-type="linenumber">34</context> | 8768 | <context context-type="linenumber">34</context> |
8474 | </context-group> | 8769 | </context-group> |
8475 | </trans-unit> | 8770 | </trans-unit> |
8476 | |||
8477 | <trans-unit id="8256466313580256940" datatype="html"> | 8771 | <trans-unit id="8256466313580256940" datatype="html"> |
8478 | <source><x id="PH"/> min ago </source> | 8772 | <source><x id="PH"/> min ago </source> |
8479 | <target state="translated"> | 8773 | <target state="translated"> |
8480 | <x id="PH"/> perccel ezelőtt | 8774 | <x id="PH"/> perccel ezelőtt |
8481 | </target> | 8775 | </target> |
8482 | 8776 | <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> | |
8483 | <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> | 8777 | </trans-unit> |
8484 | <trans-unit id="4733690367258997247" datatype="html"> | 8778 | <trans-unit id="4733690367258997247" datatype="html"> |
8485 | <source>just now</source> | 8779 | <source>just now</source> |
8486 | <target state="translated">épp most</target> | 8780 | <target state="translated">épp most</target> |
8487 | 8781 | <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> | |
8488 | <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> | 8782 | </trans-unit> |
8489 | <trans-unit id="2222108104954671970" datatype="html"> | 8783 | <trans-unit id="2222108104954671970" datatype="html"> |
8490 | <source><x id="PH"/> sec </source> | 8784 | <source><x id="PH"/> sec </source> |
8491 | <target state="translated"> | 8785 | <target state="translated"> |
@@ -8570,20 +8864,26 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8570 | <source>Signup limit must be a number.</source> | 8864 | <source>Signup limit must be a number.</source> |
8571 | <target state="translated">A regisztrációkorlátnak számnak kell lennie.</target> | 8865 | <target state="translated">A regisztrációkorlátnak számnak kell lennie.</target> |
8572 | <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> | 8866 | <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> |
8573 | </trans-unit><trans-unit id="346485141381099383" datatype="html"> | 8867 | </trans-unit> |
8574 | <source>Signup minimum age is required.</source><target state="new">Signup minimum age is required.</target> | 8868 | <trans-unit id="346485141381099383" datatype="html"> |
8869 | <source>Signup minimum age is required.</source> | ||
8870 | <target state="new">Signup minimum age is required.</target> | ||
8575 | <context-group purpose="location"> | 8871 | <context-group purpose="location"> |
8576 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> | 8872 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> |
8577 | <context context-type="linenumber">55</context> | 8873 | <context context-type="linenumber">55</context> |
8578 | </context-group> | 8874 | </context-group> |
8579 | </trans-unit><trans-unit id="4230672031132838318" datatype="html"> | 8875 | </trans-unit> |
8580 | <source>Signup minimum age must be greater than 1.</source><target state="new">Signup minimum age must be greater than 1.</target> | 8876 | <trans-unit id="4230672031132838318" datatype="html"> |
8877 | <source>Signup minimum age must be greater than 1.</source> | ||
8878 | <target state="new">Signup minimum age must be greater than 1.</target> | ||
8581 | <context-group purpose="location"> | 8879 | <context-group purpose="location"> |
8582 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> | 8880 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> |
8583 | <context context-type="linenumber">56</context> | 8881 | <context context-type="linenumber">56</context> |
8584 | </context-group> | 8882 | </context-group> |
8585 | </trans-unit><trans-unit id="5929230001329133993" datatype="html"> | 8883 | </trans-unit> |
8586 | <source>Signup minimum age must be a number.</source><target state="new">Signup minimum age must be a number.</target> | 8884 | <trans-unit id="5929230001329133993" datatype="html"> |
8885 | <source>Signup minimum age must be a number.</source> | ||
8886 | <target state="new">Signup minimum age must be a number.</target> | ||
8587 | <context-group purpose="location"> | 8887 | <context-group purpose="location"> |
8588 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> | 8888 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> |
8589 | <context context-type="linenumber">57</context> | 8889 | <context context-type="linenumber">57</context> |
@@ -8592,95 +8892,95 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8592 | <trans-unit id="240096858386658337" datatype="html"> | 8892 | <trans-unit id="240096858386658337" datatype="html"> |
8593 | <source>Admin email is required.</source> | 8893 | <source>Admin email is required.</source> |
8594 | <target state="translated">A rendszergazda e-mail-címének megadása kötelező.</target> | 8894 | <target state="translated">A rendszergazda e-mail-címének megadása kötelező.</target> |
8595 | 8895 | <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> | |
8596 | <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> | 8896 | </trans-unit> |
8597 | <trans-unit id="4392533896009432078" datatype="html"> | 8897 | <trans-unit id="4392533896009432078" datatype="html"> |
8598 | <source>Admin email must be valid.</source> | 8898 | <source>Admin email must be valid.</source> |
8599 | <target state="translated">A rendszergazda e-mail-címének érvényesnek kell lennie.</target> | 8899 | <target state="translated">A rendszergazda e-mail-címének érvényesnek kell lennie.</target> |
8600 | 8900 | <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> | |
8601 | <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> | 8901 | </trans-unit> |
8602 | <trans-unit id="6172217783476989430" datatype="html"> | 8902 | <trans-unit id="6172217783476989430" datatype="html"> |
8603 | <source>Transcoding threads is required.</source> | 8903 | <source>Transcoding threads is required.</source> |
8604 | <target state="translated">Az átkódolási szálak megadása kötelező.</target> | 8904 | <target state="translated">Az átkódolási szálak megadása kötelező.</target> |
8605 | 8905 | <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> | |
8606 | <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> | 8906 | </trans-unit> |
8607 | <trans-unit id="5320424292625586941" datatype="html"> | 8907 | <trans-unit id="5320424292625586941" datatype="html"> |
8608 | <source>Transcoding threads must be greater or equal to 0.</source> | 8908 | <source>Transcoding threads must be greater or equal to 0.</source> |
8609 | <target state="translated">Az átkódolási szálaknak legalább 0-nak kell lenniük.</target> | 8909 | <target state="translated">Az átkódolási szálaknak legalább 0-nak kell lenniük.</target> |
8610 | 8910 | <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> | |
8611 | <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> | 8911 | </trans-unit> |
8612 | <trans-unit id="8185661254949728718" datatype="html"> | 8912 | <trans-unit id="8185661254949728718" datatype="html"> |
8613 | <source>Max live duration is required.</source> | 8913 | <source>Max live duration is required.</source> |
8614 | <target state="new">Max live duration is required.</target> | 8914 | <target state="new">Max live duration is required.</target> |
8615 | 8915 | <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> | |
8616 | <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> | 8916 | </trans-unit> |
8617 | <trans-unit id="8892863662898651766" datatype="html"> | 8917 | <trans-unit id="8892863662898651766" datatype="html"> |
8618 | <source>Max live duration should be greater or equal to -1.</source> | 8918 | <source>Max live duration should be greater or equal to -1.</source> |
8619 | <target state="new">Max live duration should be greater or equal to -1.</target> | 8919 | <target state="new">Max live duration should be greater or equal to -1.</target> |
8620 | 8920 | <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> | |
8621 | <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> | 8921 | </trans-unit> |
8622 | <trans-unit id="8196240396863235661" datatype="html"> | 8922 | <trans-unit id="8196240396863235661" datatype="html"> |
8623 | <source>Max instance lives is required.</source> | 8923 | <source>Max instance lives is required.</source> |
8624 | <target state="new">Max instance lives is required.</target> | 8924 | <target state="new">Max instance lives is required.</target> |
8625 | 8925 | <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> | |
8626 | <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> | 8926 | </trans-unit> |
8627 | <trans-unit id="913683464711184925" datatype="html"> | 8927 | <trans-unit id="913683464711184925" datatype="html"> |
8628 | <source>Max instance lives should be greater or equal to -1.</source> | 8928 | <source>Max instance lives should be greater or equal to -1.</source> |
8629 | <target state="new">Max instance lives should be greater or equal to -1.</target> | 8929 | <target state="new">Max instance lives should be greater or equal to -1.</target> |
8630 | 8930 | <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> | |
8631 | <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> | 8931 | </trans-unit> |
8632 | <trans-unit id="5614457087254770778" datatype="html"> | 8932 | <trans-unit id="5614457087254770778" datatype="html"> |
8633 | <source>Max user lives is required.</source> | 8933 | <source>Max user lives is required.</source> |
8634 | <target state="new">Max user lives is required.</target> | 8934 | <target state="new">Max user lives is required.</target> |
8635 | 8935 | <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> | |
8636 | <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> | 8936 | </trans-unit> |
8637 | <trans-unit id="2779726697233311712" datatype="html"> | 8937 | <trans-unit id="2779726697233311712" datatype="html"> |
8638 | <source>Max user lives should be greater or equal to -1.</source> | 8938 | <source>Max user lives should be greater or equal to -1.</source> |
8639 | <target state="new">Max user lives should be greater or equal to -1.</target> | 8939 | <target state="new">Max user lives should be greater or equal to -1.</target> |
8640 | 8940 | <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> | |
8641 | <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> | 8941 | </trans-unit> |
8642 | <trans-unit id="5832601947705094130" datatype="html"> | 8942 | <trans-unit id="5832601947705094130" datatype="html"> |
8643 | <source>Concurrency is required.</source> | 8943 | <source>Concurrency is required.</source> |
8644 | <target state="new">Concurrency is required.</target> | 8944 | <target state="new">Concurrency is required.</target> |
8645 | 8945 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">104</context></context-group> | |
8646 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">104</context></context-group></trans-unit> | 8946 | </trans-unit> |
8647 | <trans-unit id="4751566092251132371" datatype="html"> | 8947 | <trans-unit id="4751566092251132371" datatype="html"> |
8648 | <source>Concurrency should be greater or equal to 1.</source> | 8948 | <source>Concurrency should be greater or equal to 1.</source> |
8649 | <target state="new">Concurrency should be greater or equal to 1.</target> | 8949 | <target state="new">Concurrency should be greater or equal to 1.</target> |
8650 | 8950 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">105</context></context-group> | |
8651 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">105</context></context-group></trans-unit> | 8951 | </trans-unit> |
8652 | <trans-unit id="75589896034107743" datatype="html"> | 8952 | <trans-unit id="75589896034107743" datatype="html"> |
8653 | <source>Index URL should be a URL</source> | 8953 | <source>Index URL should be a URL</source> |
8654 | <target state="translated">Az index URL-nek URL-nek kell lennie</target> | 8954 | <target state="translated">Az index URL-nek URL-nek kell lennie</target> |
8655 | 8955 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">112</context></context-group> | |
8656 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">112</context></context-group></trans-unit> | 8956 | </trans-unit> |
8657 | <trans-unit id="3964961007325702684" datatype="html"> | 8957 | <trans-unit id="3964961007325702684" datatype="html"> |
8658 | <source>Search index URL should be a URL</source> | 8958 | <source>Search index URL should be a URL</source> |
8659 | <target state="translated">A keresőindex URL egy URL kell legyen</target> | 8959 | <target state="translated">A keresőindex URL egy URL kell legyen</target> |
8660 | 8960 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">119</context></context-group> | |
8661 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">119</context></context-group></trans-unit> | 8961 | </trans-unit> |
8662 | <trans-unit id="8602814243662345124" datatype="html"> | 8962 | <trans-unit id="8602814243662345124" datatype="html"> |
8663 | <source>Email is required.</source> | 8963 | <source>Email is required.</source> |
8664 | <target state="translated">Az e-mail-cím megadása kötelező.</target> | 8964 | <target state="translated">Az e-mail-cím megadása kötelező.</target> |
8665 | 8965 | <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> | |
8666 | 8966 | <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> | |
8667 | <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> | 8967 | </trans-unit> |
8668 | <trans-unit id="4591482207344282590" datatype="html"> | 8968 | <trans-unit id="4591482207344282590" datatype="html"> |
8669 | <source>Email must be valid.</source> | 8969 | <source>Email must be valid.</source> |
8670 | <target state="translated">Az e-mail-címnek érvényesnek kell lennie.</target> | 8970 | <target state="translated">Az e-mail-címnek érvényesnek kell lennie.</target> |
8671 | 8971 | <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> | |
8672 | 8972 | <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> | |
8673 | <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> | 8973 | </trans-unit> |
8674 | <trans-unit id="544279804045883862" datatype="html"> | 8974 | <trans-unit id="544279804045883862" datatype="html"> |
8675 | <source>Handle is required.</source> | 8975 | <source>Handle is required.</source> |
8676 | <target state="new">Handle is required.</target> | 8976 | <target state="new">Handle is required.</target> |
8677 | 8977 | <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> | |
8678 | <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> | 8978 | </trans-unit> |
8679 | <trans-unit id="2805037637775107078" datatype="html"> | 8979 | <trans-unit id="2805037637775107078" datatype="html"> |
8680 | <source>Handle must be valid (eg. chocobozzz@example.com).</source> | 8980 | <source>Handle must be valid (eg. chocobozzz@example.com).</source> |
8681 | <target state="new">Handle must be valid (eg. chocobozzz@example.com).</target> | 8981 | <target state="new">Handle must be valid (eg. chocobozzz@example.com).</target> |
8682 | 8982 | <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> | |
8683 | <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> | 8983 | </trans-unit> |
8684 | <trans-unit id="4968369344159400023" datatype="html"> | 8984 | <trans-unit id="4968369344159400023" datatype="html"> |
8685 | <source>Your name is required.</source> | 8985 | <source>Your name is required.</source> |
8686 | <target state="translated">Az Ön nevének megadása kötelező.</target> | 8986 | <target state="translated">Az Ön nevének megadása kötelező.</target> |
@@ -8729,16 +9029,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8729 | <trans-unit id="3868123820758341861" datatype="html"> | 9029 | <trans-unit id="3868123820758341861" datatype="html"> |
8730 | <source>Username is required.</source> | 9030 | <source>Username is required.</source> |
8731 | <target state="translated">A felhasználónév megadása kötelező.</target> | 9031 | <target state="translated">A felhasználónév megadása kötelező.</target> |
8732 | 9032 | <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> | |
8733 | 9033 | <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> | |
8734 | <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> | 9034 | </trans-unit> |
8735 | <trans-unit id="3577237269587081090" datatype="html"> | 9035 | <trans-unit id="3577237269587081090" datatype="html"> |
8736 | <source>Password is required.</source> | 9036 | <source>Password is required.</source> |
8737 | <target state="translated">A jelszó megadása kötelező.</target> | 9037 | <target state="translated">A jelszó megadása kötelező.</target> |
8738 | 9038 | <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> | |
8739 | 9039 | <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> | |
8740 | 9040 | <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> | |
8741 | <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> | 9041 | </trans-unit> |
8742 | <trans-unit id="3152303769378345477" datatype="html"> | 9042 | <trans-unit id="3152303769378345477" datatype="html"> |
8743 | <source>Confirmation of the password is required.</source> | 9043 | <source>Confirmation of the password is required.</source> |
8744 | <target state="translated">A jelszó megerősítése kötelező.</target> | 9044 | <target state="translated">A jelszó megerősítése kötelező.</target> |
@@ -8747,129 +9047,129 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8747 | <trans-unit id="4786141633412279939" datatype="html"> | 9047 | <trans-unit id="4786141633412279939" datatype="html"> |
8748 | <source>Username must be at least 1 character long.</source> | 9048 | <source>Username must be at least 1 character long.</source> |
8749 | <target state="translated">A felhasználónévnek legalább 1 karakter hosszúságúnak kell lennie.</target> | 9049 | <target state="translated">A felhasználónévnek legalább 1 karakter hosszúságúnak kell lennie.</target> |
8750 | 9050 | <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> | |
8751 | <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> | 9051 | </trans-unit> |
8752 | <trans-unit id="1019755749203839300" datatype="html"> | 9052 | <trans-unit id="1019755749203839300" datatype="html"> |
8753 | <source>Username cannot be more than 50 characters long.</source> | 9053 | <source>Username cannot be more than 50 characters long.</source> |
8754 | <target state="translated">A felhasználónév nem lehet hosszabb 50 karakternél.</target> | 9054 | <target state="translated">A felhasználónév nem lehet hosszabb 50 karakternél.</target> |
8755 | 9055 | <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> | |
8756 | <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> | 9056 | </trans-unit> |
8757 | <trans-unit id="5621067256208426608" datatype="html"> | 9057 | <trans-unit id="5621067256208426608" datatype="html"> |
8758 | <source>Username should be lowercase alphanumeric; dots and underscores are allowed.</source> | 9058 | <source>Username should be lowercase alphanumeric; dots and underscores are allowed.</source> |
8759 | <target state="translated">A felhasználónévnek kisbetűkből és számokból kell állnia. A pont és az aláhúzás is engedélyezett.</target> | 9059 | <target state="translated">A felhasználónévnek kisbetűkből és számokból kell állnia. A pont és az aláhúzás is engedélyezett.</target> |
8760 | 9060 | <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> | |
8761 | <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> | 9061 | </trans-unit> |
8762 | <trans-unit id="6288154707582132676" datatype="html"> | 9062 | <trans-unit id="6288154707582132676" datatype="html"> |
8763 | <source>Channel name is required.</source> | 9063 | <source>Channel name is required.</source> |
8764 | <target state="translated">A csatornanév kötelező.</target> | 9064 | <target state="translated">A csatornanév kötelező.</target> |
8765 | 9065 | <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> | |
8766 | <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> | 9066 | </trans-unit> |
8767 | <trans-unit id="8178814467139959283" datatype="html"> | 9067 | <trans-unit id="8178814467139959283" datatype="html"> |
8768 | <source>Channel name must be at least 1 character long.</source> | 9068 | <source>Channel name must be at least 1 character long.</source> |
8769 | <target state="translated">A csatornanévnek legalább 1 karakteresnek kell lennie.</target> | 9069 | <target state="translated">A csatornanévnek legalább 1 karakteresnek kell lennie.</target> |
8770 | 9070 | <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> | |
8771 | <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> | 9071 | </trans-unit> |
8772 | <trans-unit id="8602785819772117007" datatype="html"> | 9072 | <trans-unit id="8602785819772117007" datatype="html"> |
8773 | <source>Channel name cannot be more than 50 characters long.</source> | 9073 | <source>Channel name cannot be more than 50 characters long.</source> |
8774 | <target state="translated">A csatornanévnek legfeljebb 50 karakteresnek kell lennie.</target> | 9074 | <target state="translated">A csatornanévnek legfeljebb 50 karakteresnek kell lennie.</target> |
8775 | 9075 | <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> | |
8776 | <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> | 9076 | </trans-unit> |
8777 | <trans-unit id="3419415520566928243" datatype="html"> | 9077 | <trans-unit id="3419415520566928243" datatype="html"> |
8778 | <source>Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores.</source> | 9078 | <source>Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores.</source> |
8779 | <target state="new">Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores.</target> | 9079 | <target state="new">Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores.</target> |
8780 | 9080 | <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> | |
8781 | <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> | 9081 | </trans-unit> |
8782 | <trans-unit id="525871656034789056" datatype="html"> | 9082 | <trans-unit id="525871656034789056" datatype="html"> |
8783 | <source>Password must be at least 6 characters long.</source> | 9083 | <source>Password must be at least 6 characters long.</source> |
8784 | <target state="translated">A jelszónak legalább 6 karakter hosszúságúnak kell lennie.</target> | 9084 | <target state="translated">A jelszónak legalább 6 karakter hosszúságúnak kell lennie.</target> |
8785 | 9085 | <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> | |
8786 | 9086 | <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> | |
8787 | <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> | 9087 | </trans-unit> |
8788 | <trans-unit id="1099684476181448167" datatype="html"> | 9088 | <trans-unit id="1099684476181448167" datatype="html"> |
8789 | <source>Password cannot be more than 255 characters long.</source> | 9089 | <source>Password cannot be more than 255 characters long.</source> |
8790 | <target state="translated">A jelszó nem lehet hosszabb 255 karakternél.</target> | 9090 | <target state="translated">A jelszó nem lehet hosszabb 255 karakternél.</target> |
8791 | 9091 | <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> | |
8792 | 9092 | <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> | |
8793 | <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> | 9093 | </trans-unit> |
8794 | <trans-unit id="3392630942539073768" datatype="html"> | 9094 | <trans-unit id="3392630942539073768" datatype="html"> |
8795 | <source>The new password and the confirmed password do not correspond.</source> | 9095 | <source>The new password and the confirmed password do not correspond.</source> |
8796 | <target state="translated">Az új jelszó és a megerősített jelszó nem egyezik.</target> | 9096 | <target state="translated">Az új jelszó és a megerősített jelszó nem egyezik.</target> |
8797 | 9097 | <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> | |
8798 | <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> | 9098 | </trans-unit> |
8799 | <trans-unit id="2027337371129904473" datatype="html"> | 9099 | <trans-unit id="2027337371129904473" datatype="html"> |
8800 | <source>Video quota is required.</source> | 9100 | <source>Video quota is required.</source> |
8801 | <target state="translated">A videokvóta megadása kötelező.</target> | 9101 | <target state="translated">A videokvóta megadása kötelező.</target> |
8802 | 9102 | <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> | |
8803 | <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> | 9103 | </trans-unit> |
8804 | <trans-unit id="267386529333143660" datatype="html"> | 9104 | <trans-unit id="267386529333143660" datatype="html"> |
8805 | <source>Quota must be greater than -1.</source> | 9105 | <source>Quota must be greater than -1.</source> |
8806 | <target state="translated">A kvótának nagyobbnak kell lennie −1-nél.</target> | 9106 | <target state="translated">A kvótának nagyobbnak kell lennie −1-nél.</target> |
8807 | 9107 | <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> | |
8808 | <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> | 9108 | </trans-unit> |
8809 | <trans-unit id="1220179061234048936" datatype="html"> | 9109 | <trans-unit id="1220179061234048936" datatype="html"> |
8810 | <source>Daily upload limit is required.</source> | 9110 | <source>Daily upload limit is required.</source> |
8811 | <target state="translated">A napi feltöltési korlát megadása kötelező.</target> | 9111 | <target state="translated">A napi feltöltési korlát megadása kötelező.</target> |
8812 | 9112 | <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> | |
8813 | <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> | 9113 | </trans-unit> |
8814 | <trans-unit id="8959404382357999234" datatype="html"> | 9114 | <trans-unit id="8959404382357999234" datatype="html"> |
8815 | <source>Daily upload limit must be greater than -1.</source> | 9115 | <source>Daily upload limit must be greater than -1.</source> |
8816 | <target state="translated">A napi feltöltési korlátnak nagyobbnak kell lennie −1-nél.</target> | 9116 | <target state="translated">A napi feltöltési korlátnak nagyobbnak kell lennie −1-nél.</target> |
8817 | 9117 | <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> | |
8818 | <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> | 9118 | </trans-unit> |
8819 | <trans-unit id="4796798537475457493" datatype="html"> | 9119 | <trans-unit id="4796798537475457493" datatype="html"> |
8820 | <source>User role is required.</source> | 9120 | <source>User role is required.</source> |
8821 | <target state="translated">A felhasználói szerep megadása kötelező.</target> | 9121 | <target state="translated">A felhasználói szerep megadása kötelező.</target> |
8822 | 9122 | <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> | |
8823 | <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> | 9123 | </trans-unit> |
8824 | <trans-unit id="2761226139624435788" datatype="html"> | 9124 | <trans-unit id="2761226139624435788" datatype="html"> |
8825 | <source>Description must be at least 3 characters long.</source> | 9125 | <source>Description must be at least 3 characters long.</source> |
8826 | <target state="translated">A leírásnak legalább 3 karakter hosszúságúnak kell lennie.</target> | 9126 | <target state="translated">A leírásnak legalább 3 karakter hosszúságúnak kell lennie.</target> |
8827 | 9127 | <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> | |
8828 | 9128 | <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> | |
8829 | 9129 | <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> | |
8830 | <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> | 9130 | </trans-unit> |
8831 | <trans-unit id="4717982586356605243" datatype="html"> | 9131 | <trans-unit id="4717982586356605243" datatype="html"> |
8832 | <source>Description cannot be more than 1000 characters long.</source> | 9132 | <source>Description cannot be more than 1000 characters long.</source> |
8833 | <target state="translated">A leírás nem lehet hosszabb 1000 karakternél.</target> | 9133 | <target state="translated">A leírás nem lehet hosszabb 1000 karakternél.</target> |
8834 | 9134 | <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> | |
8835 | 9135 | <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> | |
8836 | 9136 | <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> | |
8837 | <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> | 9137 | </trans-unit> |
8838 | <trans-unit id="1814372869868173571" datatype="html"> | 9138 | <trans-unit id="1814372869868173571" datatype="html"> |
8839 | <source>You must agree with the instance terms in order to register on it.</source> | 9139 | <source>You must agree with the instance terms in order to register on it.</source> |
8840 | <target state="translated">El kell fogadnia a példány használati feltételeit, hogy regisztrálni tudjon rá.</target> | 9140 | <target state="translated">El kell fogadnia a példány használati feltételeit, hogy regisztrálni tudjon rá.</target> |
8841 | 9141 | <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> | |
8842 | <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> | 9142 | </trans-unit> |
8843 | <trans-unit id="7803960725351649605" datatype="html"> | 9143 | <trans-unit id="7803960725351649605" datatype="html"> |
8844 | <source>Ban reason must be at least 3 characters long.</source> | 9144 | <source>Ban reason must be at least 3 characters long.</source> |
8845 | <target state="translated">A kitiltás indokának legalább 3 karakter hosszúságúnak kell lennie.</target> | 9145 | <target state="translated">A kitiltás indokának legalább 3 karakter hosszúságúnak kell lennie.</target> |
8846 | 9146 | <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> | |
8847 | <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> | 9147 | </trans-unit> |
8848 | <trans-unit id="3851609012243698179" datatype="html"> | 9148 | <trans-unit id="3851609012243698179" datatype="html"> |
8849 | <source>Ban reason cannot be more than 250 characters long.</source> | 9149 | <source>Ban reason cannot be more than 250 characters long.</source> |
8850 | <target state="translated">A kitiltás indoka nem lehet hosszabb 250 karakternél.</target> | 9150 | <target state="translated">A kitiltás indoka nem lehet hosszabb 250 karakternél.</target> |
8851 | 9151 | <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> | |
8852 | <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> | 9152 | </trans-unit> |
8853 | <trans-unit id="6632896893630378443" datatype="html"> | 9153 | <trans-unit id="6632896893630378443" datatype="html"> |
8854 | <source>Display name is required.</source> | 9154 | <source>Display name is required.</source> |
8855 | <target state="translated">A megjelenített név megadása kötelező.</target> | 9155 | <target state="translated">A megjelenített név megadása kötelező.</target> |
8856 | 9156 | <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> | |
8857 | 9157 | <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> | |
8858 | 9158 | <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> | |
8859 | <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> | 9159 | </trans-unit> |
8860 | <trans-unit id="1303578752658966736" datatype="html"> | 9160 | <trans-unit id="1303578752658966736" datatype="html"> |
8861 | <source>Display name must be at least 1 character long.</source> | 9161 | <source>Display name must be at least 1 character long.</source> |
8862 | <target state="translated">A megjelenített névnek legalább 1 karakter hosszúságúnak kell lennie.</target> | 9162 | <target state="translated">A megjelenített névnek legalább 1 karakter hosszúságúnak kell lennie.</target> |
8863 | 9163 | <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> | |
8864 | 9164 | <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> | |
8865 | 9165 | <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> | |
8866 | <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> | 9166 | </trans-unit> |
8867 | <trans-unit id="4613240543124934954" datatype="html"> | 9167 | <trans-unit id="4613240543124934954" datatype="html"> |
8868 | <source>Display name cannot be more than 50 characters long.</source> | 9168 | <source>Display name cannot be more than 50 characters long.</source> |
8869 | <target state="translated">A megjelenített név nem lehet hosszabb 50 karakternél.</target> | 9169 | <target state="translated">A megjelenített név nem lehet hosszabb 50 karakternél.</target> |
8870 | 9170 | <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> | |
8871 | 9171 | <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> | |
8872 | <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> | 9172 | </trans-unit> |
8873 | <trans-unit id="1000468652492651683" datatype="html"> | 9173 | <trans-unit id="1000468652492651683" datatype="html"> |
8874 | <source>Report reason is required.</source> | 9174 | <source>Report reason is required.</source> |
8875 | <target state="translated">A jelentés indokának megadása kötelező.</target> | 9175 | <target state="translated">A jelentés indokának megadása kötelező.</target> |
@@ -8953,33 +9253,33 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8953 | <trans-unit id="4444753420973870540" datatype="html"> | 9253 | <trans-unit id="4444753420973870540" datatype="html"> |
8954 | <source>Name is required.</source> | 9254 | <source>Name is required.</source> |
8955 | <target state="translated">A név megadása kötelező.</target> | 9255 | <target state="translated">A név megadása kötelező.</target> |
8956 | 9256 | <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> | |
8957 | <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> | 9257 | </trans-unit> |
8958 | <trans-unit id="4006797705713167676" datatype="html"> | 9258 | <trans-unit id="4006797705713167676" datatype="html"> |
8959 | <source>Name must be at least 1 character long.</source> | 9259 | <source>Name must be at least 1 character long.</source> |
8960 | <target state="translated">A névnek legalább 1 karakter hosszúságúnak kell lennie.</target> | 9260 | <target state="translated">A névnek legalább 1 karakter hosszúságúnak kell lennie.</target> |
8961 | 9261 | <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> | |
8962 | <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> | 9262 | </trans-unit> |
8963 | <trans-unit id="2233809696503670883" datatype="html"> | 9263 | <trans-unit id="2233809696503670883" datatype="html"> |
8964 | <source>Name cannot be more than 50 characters long.</source> | 9264 | <source>Name cannot be more than 50 characters long.</source> |
8965 | <target state="translated">A név nem lehet hosszabb 50 karakternél.</target> | 9265 | <target state="translated">A név nem lehet hosszabb 50 karakternél.</target> |
8966 | 9266 | <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> | |
8967 | <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> | 9267 | </trans-unit> |
8968 | <trans-unit id="7915656854942800659" datatype="html"> | 9268 | <trans-unit id="7915656854942800659" datatype="html"> |
8969 | <source>Name should be lowercase alphanumeric; dots and underscores are allowed.</source> | 9269 | <source>Name should be lowercase alphanumeric; dots and underscores are allowed.</source> |
8970 | <target state="translated">A névnek kisbetűkből és számokból kell állnia. A pont és az aláhúzás is engedélyezett.</target> | 9270 | <target state="translated">A névnek kisbetűkből és számokból kell állnia. A pont és az aláhúzás is engedélyezett.</target> |
8971 | 9271 | <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> | |
8972 | <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> | 9272 | </trans-unit> |
8973 | <trans-unit id="6880459830525364741" datatype="html"> | 9273 | <trans-unit id="6880459830525364741" datatype="html"> |
8974 | <source>Support text must be at least 3 characters long.</source> | 9274 | <source>Support text must be at least 3 characters long.</source> |
8975 | <target state="translated">A támogatási szövegnek legalább 3 karakter hosszúságúnak kell lennie.</target> | 9275 | <target state="translated">A támogatási szövegnek legalább 3 karakter hosszúságúnak kell lennie.</target> |
8976 | 9276 | <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> | |
8977 | <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> | 9277 | </trans-unit> |
8978 | <trans-unit id="6461548560008228165" datatype="html"> | 9278 | <trans-unit id="6461548560008228165" datatype="html"> |
8979 | <source>Support text cannot be more than 1000 characters long</source> | 9279 | <source>Support text cannot be more than 1000 characters long</source> |
8980 | <target state="translated">A támogatási szöveg nem lehet hosszabb 1000 karakternél</target> | 9280 | <target state="translated">A támogatási szöveg nem lehet hosszabb 1000 karakternél</target> |
8981 | 9281 | <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> | |
8982 | <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> | 9282 | </trans-unit> |
8983 | <trans-unit id="5637879201055173642" datatype="html"> | 9283 | <trans-unit id="5637879201055173642" datatype="html"> |
8984 | <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> | 9284 | <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> |
8985 | <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. | 9285 | <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. |
@@ -9145,14 +9445,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9145 | <source>PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</source> | 9445 | <source>PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</source> |
9146 | <target state="translated">A PeerTube nem tudja kezelni az ilyen fájlokat. A támogatott kiterjesztések: <x id="PH"/>}.</target> | 9446 | <target state="translated">A PeerTube nem tudja kezelni az ilyen fájlokat. A támogatott kiterjesztések: <x id="PH"/>}.</target> |
9147 | <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> | 9447 | <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> |
9148 | </trans-unit><trans-unit id="3393133458004181121" datatype="html"> | 9448 | </trans-unit> |
9149 | <source>All categories</source><target state="new">All categories</target> | 9449 | <trans-unit id="3393133458004181121" datatype="html"> |
9450 | <source>All categories</source> | ||
9451 | <target state="new">All categories</target> | ||
9150 | <context-group purpose="location"> | 9452 | <context-group purpose="location"> |
9151 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.ts</context> | 9453 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.ts</context> |
9152 | <context context-type="linenumber">24</context> | 9454 | <context context-type="linenumber">24</context> |
9153 | </context-group> | 9455 | </context-group> |
9154 | </trans-unit><trans-unit id="3999967345340145904" datatype="html"> | 9456 | </trans-unit> |
9155 | <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> | 9457 | <trans-unit id="3999967345340145904" datatype="html"> |
9458 | <source>You can't select more than <x id="PH" equiv-text="this.maxItems"/> items</source> | ||
9459 | <target state="new">You can't select more than <x id="PH" equiv-text="this.maxItems"/> items</target> | ||
9156 | <context-group purpose="location"> | 9460 | <context-group purpose="location"> |
9157 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox-all.component.ts</context> | 9461 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox-all.component.ts</context> |
9158 | <context context-type="linenumber">81</context> | 9462 | <context context-type="linenumber">81</context> |
@@ -9161,8 +9465,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9161 | <trans-unit id="6708273825233539746" datatype="html"> | 9465 | <trans-unit id="6708273825233539746" datatype="html"> |
9162 | <source>Add a new option</source> | 9466 | <source>Add a new option</source> |
9163 | <target state="translated">Új lehetőség hozzáadása</target> | 9467 | <target state="translated">Új lehetőség hozzáadása</target> |
9164 | 9468 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.ts</context><context context-type="linenumber">27</context></context-group> | |
9165 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.ts</context><context context-type="linenumber">27</context></context-group></trans-unit> | 9469 | </trans-unit> |
9166 | <trans-unit id="4076995379551303829" datatype="html"> | 9470 | <trans-unit id="4076995379551303829" datatype="html"> |
9167 | <source>Custom value...</source> | 9471 | <source>Custom value...</source> |
9168 | <target state="new">Custom value...</target> | 9472 | <target state="new">Custom value...</target> |
@@ -9436,77 +9740,78 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9436 | <trans-unit id="2830831449226931729" datatype="html"> | 9740 | <trans-unit id="2830831449226931729" datatype="html"> |
9437 | <source>Instance languages</source> | 9741 | <source>Instance languages</source> |
9438 | <target state="translated">Példány nyelvei</target> | 9742 | <target state="translated">Példány nyelvei</target> |
9439 | 9743 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">179</context></context-group> | |
9440 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">179</context></context-group></trans-unit> | 9744 | </trans-unit> |
9441 | <trans-unit id="40119547597591062" datatype="html"> | 9745 | <trans-unit id="40119547597591062" datatype="html"> |
9442 | <source>All languages</source> | 9746 | <source>All languages</source> |
9443 | <target state="translated">Összes nyelv</target> | 9747 | <target state="translated">Összes nyelv</target> |
9444 | 9748 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">180</context></context-group> | |
9445 | 9749 | <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> | |
9446 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">180</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> | 9750 | </trans-unit> |
9447 | <trans-unit id="996392855508119363" datatype="html"> | 9751 | <trans-unit id="996392855508119363" datatype="html"> |
9448 | <source>Hidden</source> | 9752 | <source>Hidden</source> |
9449 | <target state="translated">Rejtett</target> | 9753 | <target state="translated">Rejtett</target> |
9450 | 9754 | <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> | |
9451 | <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> | 9755 | </trans-unit> |
9452 | <trans-unit id="2173989454916398137" datatype="html"> | 9756 | <trans-unit id="2173989454916398137" datatype="html"> |
9453 | <source>Blurred with confirmation request</source> | 9757 | <source>Blurred with confirmation request</source> |
9454 | <target state="translated">Elhomályosítva megerősítő kéréssel</target> | 9758 | <target state="translated">Elhomályosítva megerősítő kéréssel</target> |
9455 | 9759 | <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> | |
9456 | <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> | 9760 | </trans-unit> |
9457 | <trans-unit id="8929218224642530466" datatype="html"> | 9761 | <trans-unit id="8929218224642530466" datatype="html"> |
9458 | <source>Displayed</source> | 9762 | <source>Displayed</source> |
9459 | <target state="translated">Megjelenített</target> | 9763 | <target state="translated">Megjelenített</target> |
9460 | 9764 | <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> | |
9461 | <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">227</context></context-group></trans-unit> | 9765 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">227</context></context-group> |
9766 | </trans-unit> | ||
9462 | <trans-unit id="6291055174438137560" datatype="html"> | 9767 | <trans-unit id="6291055174438137560" datatype="html"> |
9463 | <source>~ 1 minute</source> | 9768 | <source>~ 1 minute</source> |
9464 | <target state="translated">~ 1 perc</target> | 9769 | <target state="translated">~ 1 perc</target> |
9465 | 9770 | <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> | |
9466 | <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> | 9771 | </trans-unit> |
9467 | <trans-unit id="189524047518780716" datatype="html"> | 9772 | <trans-unit id="189524047518780716" datatype="html"> |
9468 | <source>~ <x id="PH"/> minutes</source> | 9773 | <source>~ <x id="PH"/> minutes</source> |
9469 | <target state="translated">~ <x id="PH"/> perc</target> | 9774 | <target state="translated">~ <x id="PH"/> perc</target> |
9470 | 9775 | <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> | |
9471 | <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> | 9776 | </trans-unit> |
9472 | <trans-unit id="6028521920505655348" datatype="html"> | 9777 | <trans-unit id="6028521920505655348" datatype="html"> |
9473 | <source><x id="PH"/> of full HD videos </source> | 9778 | <source><x id="PH"/> of full HD videos </source> |
9474 | <target state="translated"> | 9779 | <target state="translated"> |
9475 | <x id="PH"/> teljes HD videó | 9780 | <x id="PH"/> teljes HD videó |
9476 | </target> | 9781 | </target> |
9477 | 9782 | <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> | |
9478 | <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> | 9783 | </trans-unit> |
9479 | <trans-unit id="117588083391484998" datatype="html"> | 9784 | <trans-unit id="117588083391484998" datatype="html"> |
9480 | <source><x id="PH"/> of HD videos </source> | 9785 | <source><x id="PH"/> of HD videos </source> |
9481 | <target state="translated"> | 9786 | <target state="translated"> |
9482 | <x id="PH"/> HD videó | 9787 | <x id="PH"/> HD videó |
9483 | </target> | 9788 | </target> |
9484 | 9789 | <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> | |
9485 | <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> | 9790 | </trans-unit> |
9486 | <trans-unit id="6636555695556123073" datatype="html"> | 9791 | <trans-unit id="6636555695556123073" datatype="html"> |
9487 | <source><x id="PH"/> of average quality videos </source> | 9792 | <source><x id="PH"/> of average quality videos </source> |
9488 | <target state="translated"> | 9793 | <target state="translated"> |
9489 | <x id="PH"/> átlagos minőségű videó | 9794 | <x id="PH"/> átlagos minőségű videó |
9490 | </target> | 9795 | </target> |
9491 | 9796 | <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> | |
9492 | <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> | 9797 | </trans-unit> |
9493 | <trans-unit id="6952960992592445535" datatype="html"> | 9798 | <trans-unit id="6952960992592445535" datatype="html"> |
9494 | <source><x id="PH"/> (channel page) </source> | 9799 | <source><x id="PH"/> (channel page) </source> |
9495 | <target state="translated"> | 9800 | <target state="translated"> |
9496 | <x id="PH"/> (csatornaoldal) | 9801 | <x id="PH"/> (csatornaoldal) |
9497 | </target> | 9802 | </target> |
9498 | 9803 | <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">19</context></context-group> | |
9499 | 9804 | <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> | |
9500 | 9805 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">113</context></context-group> | |
9501 | <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">19</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">113</context></context-group></trans-unit> | 9806 | </trans-unit> |
9502 | <trans-unit id="1209500590333005801" datatype="html"> | 9807 | <trans-unit id="1209500590333005801" datatype="html"> |
9503 | <source><x id="PH"/> (account page) </source> | 9808 | <source><x id="PH"/> (account page) </source> |
9504 | <target state="translated"> | 9809 | <target state="translated"> |
9505 | <x id="PH"/> (fiókoldal) | 9810 | <x id="PH"/> (fiókoldal) |
9506 | </target> | 9811 | </target> |
9507 | 9812 | <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> | |
9508 | 9813 | <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> | |
9509 | <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">39</context></context-group></trans-unit> | 9814 | </trans-unit> |
9510 | <trans-unit id="2516633974298697807" datatype="html"> | 9815 | <trans-unit id="2516633974298697807" datatype="html"> |
9511 | <source>Emphasis</source> | 9816 | <source>Emphasis</source> |
9512 | <target state="translated">Nyomaték</target> | 9817 | <target state="translated">Nyomaték</target> |
@@ -9535,8 +9840,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9535 | <trans-unit id="6853170548960328665" datatype="html"> | 9840 | <trans-unit id="6853170548960328665" datatype="html"> |
9536 | <source>Close search</source> | 9841 | <source>Close search</source> |
9537 | <target state="new">Close search</target> | 9842 | <target state="new">Close search</target> |
9538 | 9843 | <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> | |
9539 | <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> | 9844 | </trans-unit> |
9540 | <trans-unit id="5708680277917691451" datatype="html"> | 9845 | <trans-unit id="5708680277917691451" datatype="html"> |
9541 | <source><x id="PH"/> users banned. </source> | 9846 | <source><x id="PH"/> users banned. </source> |
9542 | <target state="translated"> | 9847 | <target state="translated"> |
@@ -9552,34 +9857,34 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9552 | <trans-unit id="8269144351796756896" datatype="html"> | 9857 | <trans-unit id="8269144351796756896" datatype="html"> |
9553 | <source>Do you really want to unban <x id="PH"/>?</source> | 9858 | <source>Do you really want to unban <x id="PH"/>?</source> |
9554 | <target state="translated">Valóban vissza szeretné vonni <x id="PH"/> kitiltását?</target> | 9859 | <target state="translated">Valóban vissza szeretné vonni <x id="PH"/> kitiltását?</target> |
9555 | 9860 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">66</context></context-group> | |
9556 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 9861 | </trans-unit> |
9557 | <trans-unit id="1794219875546376069" datatype="html"> | 9862 | <trans-unit id="1794219875546376069" datatype="html"> |
9558 | <source>User <x id="PH"/> unbanned.</source> | 9863 | <source>User <x id="PH"/> unbanned.</source> |
9559 | <target state="translated"><x id="PH"/> felhasználó kitiltása visszavonva.</target> | 9864 | <target state="translated"><x id="PH"/> felhasználó kitiltása visszavonva.</target> |
9560 | 9865 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">72</context></context-group> | |
9561 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 9866 | </trans-unit> |
9562 | <trans-unit id="4885683604826993045" datatype="html"> | 9867 | <trans-unit id="4885683604826993045" datatype="html"> |
9563 | <source>If you remove this user, you will not be able to create another with the same username!</source> | 9868 | <source>If you remove this user, you will not be able to create another with the same username!</source> |
9564 | <target state="translated">Ha eltávolítja ezt a felhasználót, akkor nem fog tudni másikat létrehozni ugyanezzel a felhasználónévvel!</target> | 9869 | <target state="translated">Ha eltávolítja ezt a felhasználót, akkor nem fog tudni másikat létrehozni ugyanezzel a felhasználónévvel!</target> |
9565 | 9870 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">86</context></context-group> | |
9566 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">86</context></context-group></trans-unit> | 9871 | </trans-unit> |
9567 | <trans-unit id="6301381219225831298" datatype="html"> | 9872 | <trans-unit id="6301381219225831298" datatype="html"> |
9568 | <source>User <x id="PH"/> deleted.</source> | 9873 | <source>User <x id="PH"/> deleted.</source> |
9569 | <target state="translated"><x id="PH"/> felhasználó törölve.</target> | 9874 | <target state="translated"><x id="PH"/> felhasználó törölve.</target> |
9570 | 9875 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">93</context></context-group> | |
9571 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">93</context></context-group></trans-unit> | 9876 | </trans-unit> |
9572 | <trans-unit id="3896582359861826661" datatype="html"> | 9877 | <trans-unit id="3896582359861826661" datatype="html"> |
9573 | <source>User <x id="PH"/> email set as verified</source> | 9878 | <source>User <x id="PH"/> email set as verified</source> |
9574 | <target state="translated"><x id="PH"/> felhasználó e-mail-címe ellenőrzöttre lett állítva</target> | 9879 | <target state="translated"><x id="PH"/> felhasználó e-mail-címe ellenőrzöttre lett állítva</target> |
9575 | 9880 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">105</context></context-group> | |
9576 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">105</context></context-group></trans-unit> | 9881 | </trans-unit> |
9577 | <trans-unit id="8150022485860412528" datatype="html"> | 9882 | <trans-unit id="8150022485860412528" datatype="html"> |
9578 | <source>Account <x id="PH"/> muted.</source> | 9883 | <source>Account <x id="PH"/> muted.</source> |
9579 | <target state="translated">A(z) <x id="PH"/> fiók némítva.</target> | 9884 | <target state="translated">A(z) <x id="PH"/> fiók némítva.</target> |
9580 | 9885 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">117</context></context-group> | |
9581 | 9886 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">240</context></context-group> | |
9582 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">117</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">240</context></context-group></trans-unit> | 9887 | </trans-unit> |
9583 | <trans-unit id="1598375456114200087" datatype="html"> | 9888 | <trans-unit id="1598375456114200087" datatype="html"> |
9584 | <source>Instance <x id="PH"/> muted. </source> | 9889 | <source>Instance <x id="PH"/> muted. </source> |
9585 | <target state="translated">A(z) | 9890 | <target state="translated">A(z) |
@@ -9593,19 +9898,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9593 | <trans-unit id="2558977494773636050" datatype="html"> | 9898 | <trans-unit id="2558977494773636050" datatype="html"> |
9594 | <source>Account <x id="PH"/> muted by the instance.</source> | 9899 | <source>Account <x id="PH"/> muted by the instance.</source> |
9595 | <target state="translated">A(z) <x id="PH"/> fiókot némította a példány.</target> | 9900 | <target state="translated">A(z) <x id="PH"/> fiókot némította a példány.</target> |
9596 | 9901 | <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> | |
9597 | 9902 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">173</context></context-group> | |
9598 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 9903 | </trans-unit> |
9599 | <trans-unit id="1595779426198793580" datatype="html"> | 9904 | <trans-unit id="1595779426198793580" datatype="html"> |
9600 | <source>Mute server</source> | 9905 | <source>Mute server</source> |
9601 | <target state="translated">Kiszolgáló némítása</target> | 9906 | <target state="translated">Kiszolgáló némítása</target> |
9602 | 9907 | <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> | |
9603 | <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> | 9908 | </trans-unit> |
9604 | <trans-unit id="8014491157078444256" datatype="html"> | 9909 | <trans-unit id="8014491157078444256" datatype="html"> |
9605 | <source>Server <x id="PH"/> muted by the instance.</source> | 9910 | <source>Server <x id="PH"/> muted by the instance.</source> |
9606 | <target state="translated">A(z) <x id="PH"/> kiszolgálót némította a példány.</target> | 9911 | <target state="translated">A(z) <x id="PH"/> kiszolgálót némította a példány.</target> |
9607 | 9912 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">458</context></context-group> | |
9608 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">458</context></context-group></trans-unit> | 9913 | </trans-unit> |
9609 | <trans-unit id="2044813052587776285" datatype="html"> | 9914 | <trans-unit id="2044813052587776285" datatype="html"> |
9610 | <source>Add a message to communicate with the reporter</source> | 9915 | <source>Add a message to communicate with the reporter</source> |
9611 | <target state="translated">Üzenet hozzáadása a bejelentővel történő kommunikációhoz</target> | 9916 | <target state="translated">Üzenet hozzáadása a bejelentővel történő kommunikációhoz</target> |
@@ -9619,158 +9924,158 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9619 | <trans-unit id="3085641638748358969" datatype="html"> | 9924 | <trans-unit id="3085641638748358969" datatype="html"> |
9620 | <source>Account <x id="PH"/> unmuted by the instance.</source> | 9925 | <source>Account <x id="PH"/> unmuted by the instance.</source> |
9621 | <target state="translated">A(z) <x id="PH"/> fiók némítását visszavonta a példány.</target> | 9926 | <target state="translated">A(z) <x id="PH"/> fiók némítását visszavonta a példány.</target> |
9622 | 9927 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">187</context></context-group> | |
9623 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">187</context></context-group></trans-unit> | 9928 | </trans-unit> |
9624 | <trans-unit id="4991892477258601737" datatype="html"> | 9929 | <trans-unit id="4991892477258601737" datatype="html"> |
9625 | <source>Instance <x id="PH"/> muted by the instance.</source> | 9930 | <source>Instance <x id="PH"/> muted by the instance.</source> |
9626 | <target state="translated">A(z) <x id="PH"/> példányt némította a példány.</target> | 9931 | <target state="translated">A(z) <x id="PH"/> példányt némította a példány.</target> |
9627 | 9932 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">201</context></context-group> | |
9628 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">201</context></context-group></trans-unit> | 9933 | </trans-unit> |
9629 | <trans-unit id="4379430340167561220" datatype="html"> | 9934 | <trans-unit id="4379430340167561220" datatype="html"> |
9630 | <source>Instance <x id="PH"/> unmuted by the instance.</source> | 9935 | <source>Instance <x id="PH"/> unmuted by the instance.</source> |
9631 | <target state="translated">A(z) <x id="PH"/> példány némítását visszavonta a példány.</target> | 9936 | <target state="translated">A(z) <x id="PH"/> példány némítását visszavonta a példány.</target> |
9632 | 9937 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">215</context></context-group> | |
9633 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">215</context></context-group></trans-unit> | 9938 | </trans-unit> |
9634 | <trans-unit id="8173437618471379044" datatype="html"> | 9939 | <trans-unit id="8173437618471379044" datatype="html"> |
9635 | <source>Are you sure you want to remove all the comments of this account?</source> | 9940 | <source>Are you sure you want to remove all the comments of this account?</source> |
9636 | <target state="translated">Biztosan törölni szeretné a fiók összes hozzászólását?</target> | 9941 | <target state="translated">Biztosan törölni szeretné a fiók összes hozzászólását?</target> |
9637 | 9942 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">226</context></context-group> | |
9638 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">226</context></context-group></trans-unit> | 9943 | </trans-unit> |
9639 | <trans-unit id="6315346579373254461" datatype="html"> | 9944 | <trans-unit id="6315346579373254461" datatype="html"> |
9640 | <source>Delete account comments</source> | 9945 | <source>Delete account comments</source> |
9641 | <target state="translated">Fiók hozzászólásainak törlése</target> | 9946 | <target state="translated">Fiók hozzászólásainak törlése</target> |
9642 | 9947 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">227</context></context-group> | |
9643 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">227</context></context-group></trans-unit> | 9948 | </trans-unit> |
9644 | <trans-unit id="8559170154828316298" datatype="html"> | 9949 | <trans-unit id="8559170154828316298" datatype="html"> |
9645 | <source>Will remove comments of this account (may take several minutes).</source> | 9950 | <source>Will remove comments of this account (may take several minutes).</source> |
9646 | <target state="translated">A fiók hozzászólásai törlésre kerülnek (több percbe telhet).</target> | 9951 | <target state="translated">A fiók hozzászólásai törlésre kerülnek (több percbe telhet).</target> |
9647 | 9952 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">233</context></context-group> | |
9648 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">233</context></context-group></trans-unit> | 9953 | </trans-unit> |
9649 | <trans-unit id="7187838764371214919" datatype="html"> | 9954 | <trans-unit id="7187838764371214919" datatype="html"> |
9650 | <source>Edit user</source> | 9955 | <source>Edit user</source> |
9651 | <target state="translated">Felhasználó szerkesztése</target> | 9956 | <target state="translated">Felhasználó szerkesztése</target> |
9652 | 9957 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">261</context></context-group> | |
9653 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">261</context></context-group></trans-unit> | 9958 | </trans-unit> |
9654 | <trans-unit id="4728427543536046034" datatype="html"> | 9959 | <trans-unit id="4728427543536046034" datatype="html"> |
9655 | <source>Change quota, role, and more.</source> | 9960 | <source>Change quota, role, and more.</source> |
9656 | <target state="translated">Kvóta, szerep és egyebek megváltoztatása.</target> | 9961 | <target state="translated">Kvóta, szerep és egyebek megváltoztatása.</target> |
9657 | 9962 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">262</context></context-group> | |
9658 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">262</context></context-group></trans-unit> | 9963 | </trans-unit> |
9659 | <trans-unit id="7913022656086109932" datatype="html"> | 9964 | <trans-unit id="7913022656086109932" datatype="html"> |
9660 | <source>Delete user</source> | 9965 | <source>Delete user</source> |
9661 | <target state="translated">Felhasználó törlése</target> | 9966 | <target state="translated">Felhasználó törlése</target> |
9662 | 9967 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">266</context></context-group> | |
9663 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">266</context></context-group></trans-unit> | 9968 | </trans-unit> |
9664 | <trans-unit id="7577876364431026966" datatype="html"> | 9969 | <trans-unit id="7577876364431026966" datatype="html"> |
9665 | <source>Unban user</source> | 9970 | <source>Unban user</source> |
9666 | <target state="translated">Felhasználó kitiltásának visszavonása</target> | 9971 | <target state="translated">Felhasználó kitiltásának visszavonása</target> |
9667 | 9972 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">277</context></context-group> | |
9668 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">277</context></context-group></trans-unit> | 9973 | </trans-unit> |
9669 | <trans-unit id="3508163549683020253" datatype="html"> | 9974 | <trans-unit id="3508163549683020253" datatype="html"> |
9670 | <source>Allow the user to login and create videos/comments again</source> | 9975 | <source>Allow the user to login and create videos/comments again</source> |
9671 | <target state="translated">Lehetővé tétel a felhasználó számára, hogy újra bejelentkezzen és videókat vagy hozzászólásokat hozzon létre</target> | 9976 | <target state="translated">Lehetővé tétel a felhasználó számára, hogy újra bejelentkezzen és videókat vagy hozzászólásokat hozzon létre</target> |
9672 | 9977 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">278</context></context-group> | |
9673 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">278</context></context-group></trans-unit> | 9978 | </trans-unit> |
9674 | <trans-unit id="1888272455383898478" datatype="html"> | 9979 | <trans-unit id="1888272455383898478" datatype="html"> |
9675 | <source>Mute this account</source> | 9980 | <source>Mute this account</source> |
9676 | <target state="translated">A fiók némítása</target> | 9981 | <target state="translated">A fiók némítása</target> |
9677 | 9982 | <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> | |
9678 | <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></trans-unit> | 9983 | </trans-unit> |
9679 | <trans-unit id="2365286519320230773" datatype="html"> | 9984 | <trans-unit id="2365286519320230773" datatype="html"> |
9680 | <source>Hide any content from that user from you.</source> | 9985 | <source>Hide any content from that user from you.</source> |
9681 | <target state="new">Hide any content from that user from you.</target> | 9986 | <target state="new">Hide any content from that user from you.</target> |
9682 | 9987 | <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> | |
9683 | <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> | 9988 | </trans-unit> |
9684 | <trans-unit id="4043508901590508211" datatype="html"> | 9989 | <trans-unit id="4043508901590508211" datatype="html"> |
9685 | <source>Unmute this account</source> | 9990 | <source>Unmute this account</source> |
9686 | <target state="translated">A fiók némításának visszavonása</target> | 9991 | <target state="translated">A fiók némításának visszavonása</target> |
9687 | 9992 | <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> | |
9688 | <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></trans-unit> | 9993 | </trans-unit> |
9689 | <trans-unit id="2843593344827160627" datatype="html"> | 9994 | <trans-unit id="2843593344827160627" datatype="html"> |
9690 | <source>Show back content from that user for you.</source> | 9995 | <source>Show back content from that user for you.</source> |
9691 | <target state="translated">A felhasználótól származó tartalom újra megjelenítése az Ön számára.</target> | 9996 | <target state="translated">A felhasználótól származó tartalom újra megjelenítése az Ön számára.</target> |
9692 | 9997 | <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> | |
9693 | <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> | 9998 | </trans-unit> |
9694 | <trans-unit id="6198109035280957164" datatype="html"> | 9999 | <trans-unit id="6198109035280957164" datatype="html"> |
9695 | <source>Mute the instance</source> | 10000 | <source>Mute the instance</source> |
9696 | <target state="translated">A példány némítása</target> | 10001 | <target state="translated">A példány némítása</target> |
9697 | 10002 | <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> | |
9698 | <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></trans-unit> | 10003 | </trans-unit> |
9699 | <trans-unit id="4537735378779630558" datatype="html"> | 10004 | <trans-unit id="4537735378779630558" datatype="html"> |
9700 | <source>Hide any content from that instance for you.</source> | 10005 | <source>Hide any content from that instance for you.</source> |
9701 | <target state="translated">A példányról származó összes tartalom elrejtése az Ön számára.</target> | 10006 | <target state="translated">A példányról származó összes tartalom elrejtése az Ön számára.</target> |
9702 | 10007 | <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> | |
9703 | <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> | 10008 | </trans-unit> |
9704 | <trans-unit id="6247487021683085858" datatype="html"> | 10009 | <trans-unit id="6247487021683085858" datatype="html"> |
9705 | <source>Unmute the instance</source> | 10010 | <source>Unmute the instance</source> |
9706 | <target state="translated">A példány némításának visszavonása</target> | 10011 | <target state="translated">A példány némításának visszavonása</target> |
9707 | 10012 | <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> | |
9708 | <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> | 10013 | </trans-unit> |
9709 | <trans-unit id="4024846984475742259" datatype="html"> | 10014 | <trans-unit id="4024846984475742259" datatype="html"> |
9710 | <source>Show back content from that instance for you.</source> | 10015 | <source>Show back content from that instance for you.</source> |
9711 | <target state="translated">A példányról származó tartalom újra megjelenítése az Ön számára.</target> | 10016 | <target state="translated">A példányról származó tartalom újra megjelenítése az Ön számára.</target> |
9712 | 10017 | <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> | |
9713 | <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> | 10018 | </trans-unit> |
9714 | <trans-unit id="3108200185023875257" datatype="html"> | 10019 | <trans-unit id="3108200185023875257" datatype="html"> |
9715 | <source>Remove comments from your videos</source> | 10020 | <source>Remove comments from your videos</source> |
9716 | <target state="translated">Hozzászólások törlése a videóiról</target> | 10021 | <target state="translated">Hozzászólások törlése a videóiról</target> |
9717 | 10022 | <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> | |
9718 | <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> | 10023 | </trans-unit> |
9719 | <trans-unit id="4810478487244286994" datatype="html"> | 10024 | <trans-unit id="4810478487244286994" datatype="html"> |
9720 | <source>Remove comments made by this account on your videos.</source> | 10025 | <source>Remove comments made by this account on your videos.</source> |
9721 | <target state="new">Remove comments made by this account on your videos.</target> | 10026 | <target state="new">Remove comments made by this account on your videos.</target> |
9722 | 10027 | <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> | |
9723 | <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> | 10028 | </trans-unit> |
9724 | <trans-unit id="81452583525574033" datatype="html"> | 10029 | <trans-unit id="81452583525574033" datatype="html"> |
9725 | <source>Mute this account by your instance</source> | 10030 | <source>Mute this account by your instance</source> |
9726 | <target state="translated">A fiók némítása az Ön példánya által</target> | 10031 | <target state="translated">A fiók némítása az Ön példánya által</target> |
9727 | 10032 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">331</context></context-group> | |
9728 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">331</context></context-group></trans-unit> | 10033 | </trans-unit> |
9729 | <trans-unit id="2077144178298031252" datatype="html"> | 10034 | <trans-unit id="2077144178298031252" datatype="html"> |
9730 | <source>Hide any content from that user from you, your instance and its users.</source> | 10035 | <source>Hide any content from that user from you, your instance and its users.</source> |
9731 | <target state="new">Hide any content from that user from you, your instance and its users.</target> | 10036 | <target state="new">Hide any content from that user from you, your instance and its users.</target> |
9732 | 10037 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">332</context></context-group> | |
9733 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">332</context></context-group></trans-unit> | 10038 | </trans-unit> |
9734 | <trans-unit id="884942914962310163" datatype="html"> | 10039 | <trans-unit id="884942914962310163" datatype="html"> |
9735 | <source>Unmute this account by your instance</source> | 10040 | <source>Unmute this account by your instance</source> |
9736 | <target state="translated">A fiók a némításának visszavonása az Ön példánya által</target> | 10041 | <target state="translated">A fiók a némításának visszavonása az Ön példánya által</target> |
9737 | 10042 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">337</context></context-group> | |
9738 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">337</context></context-group></trans-unit> | 10043 | </trans-unit> |
9739 | <trans-unit id="7675070596643104983" datatype="html"> | 10044 | <trans-unit id="7675070596643104983" datatype="html"> |
9740 | <source>Show this user's content to the users of this instance again.</source> | 10045 | <source>Show this user's content to the users of this instance again.</source> |
9741 | <target state="new">Show this user's content to the users of this instance again.</target> | 10046 | <target state="new">Show this user's content to the users of this instance again.</target> |
9742 | 10047 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">338</context></context-group> | |
9743 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">338</context></context-group></trans-unit> | 10048 | </trans-unit> |
9744 | <trans-unit id="3191211873505538654" datatype="html"> | 10049 | <trans-unit id="3191211873505538654" datatype="html"> |
9745 | <source>Mute the instance by your instance</source> | 10050 | <source>Mute the instance by your instance</source> |
9746 | <target state="translated">A példány a némítása az Ön példánya által</target> | 10051 | <target state="translated">A példány a némítása az Ön példánya által</target> |
9747 | 10052 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">349</context></context-group> | |
9748 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> | 10053 | </trans-unit> |
9749 | <trans-unit id="525915681688649453" datatype="html"> | 10054 | <trans-unit id="525915681688649453" datatype="html"> |
9750 | <source>Hide any content from that instance from you, your instance and its users.</source> | 10055 | <source>Hide any content from that instance from you, your instance and its users.</source> |
9751 | <target state="new">Hide any content from that instance from you, your instance and its users.</target> | 10056 | <target state="new">Hide any content from that instance from you, your instance and its users.</target> |
9752 | 10057 | <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> | |
9753 | <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> | 10058 | </trans-unit> |
9754 | <trans-unit id="5325628963747139770" datatype="html"> | 10059 | <trans-unit id="5325628963747139770" datatype="html"> |
9755 | <source>Unmute the instance by your instance</source> | 10060 | <source>Unmute the instance by your instance</source> |
9756 | <target state="translated">A példány a némításának visszavonása az Ön példánya által</target> | 10061 | <target state="translated">A példány a némításának visszavonása az Ön példánya által</target> |
9757 | 10062 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">355</context></context-group> | |
9758 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">355</context></context-group></trans-unit> | 10063 | </trans-unit> |
9759 | <trans-unit id="758471033841077314" datatype="html"> | 10064 | <trans-unit id="758471033841077314" datatype="html"> |
9760 | <source>Show back content from that instance for you, your instance and its users.</source> | 10065 | <source>Show back content from that instance for you, your instance and its users.</source> |
9761 | <target state="translated">A példányról származó tartalom újra megjelenítése az Ön, a példánya és annak felhasználói számára.</target> | 10066 | <target state="translated">A példányról származó tartalom újra megjelenítése az Ön, a példánya és annak felhasználói számára.</target> |
9762 | 10067 | <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> | |
9763 | <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> | 10068 | </trans-unit> |
9764 | <trans-unit id="3785095284194008197" datatype="html"> | 10069 | <trans-unit id="3785095284194008197" datatype="html"> |
9765 | <source>Remove comments from your instance</source> | 10070 | <source>Remove comments from your instance</source> |
9766 | <target state="translated">Hozzászólások törlése a példányáról</target> | 10071 | <target state="translated">Hozzászólások törlése a példányáról</target> |
9767 | 10072 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">366</context></context-group> | |
9768 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">366</context></context-group></trans-unit> | 10073 | </trans-unit> |
9769 | <trans-unit id="4809327075591089709" datatype="html"> | 10074 | <trans-unit id="4809327075591089709" datatype="html"> |
9770 | <source>Remove comments made by this account from your instance.</source> | 10075 | <source>Remove comments made by this account from your instance.</source> |
9771 | <target state="new">Remove comments made by this account from your instance.</target> | 10076 | <target state="new">Remove comments made by this account from your instance.</target> |
9772 | 10077 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">367</context></context-group> | |
9773 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">367</context></context-group></trans-unit> | 10078 | </trans-unit> |
9774 | <trans-unit id="6746743143272021955" datatype="html"> | 10079 | <trans-unit id="6746743143272021955" datatype="html"> |
9775 | <source>Violent or repulsive</source> | 10080 | <source>Violent or repulsive</source> |
9776 | <target state="translated">Erőszakos vagy visszataszító</target> | 10081 | <target state="translated">Erőszakos vagy visszataszító</target> |
@@ -9799,38 +10104,38 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9799 | <trans-unit id="6374940465448453212" datatype="html"> | 10104 | <trans-unit id="6374940465448453212" datatype="html"> |
9800 | <source>Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</source> | 10105 | <source>Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</source> |
9801 | <target state="translated">Marketinget, spamet, szándékosan csaló híreket vagy egyéb félrevezető indexképet/szöveget/címkéket tartalmaz. Kérem biztosítson megbízható forrásokat az álhírek jelentéséhez.</target> | 10106 | <target state="translated">Marketinget, spamet, szándékosan csaló híreket vagy egyéb félrevezető indexképet/szöveget/címkéket tartalmaz. Kérem biztosítson megbízható forrásokat az álhírek jelentéséhez.</target> |
9802 | 10107 | <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> | |
9803 | <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> | 10108 | </trans-unit> |
9804 | <trans-unit id="7401289443263903223" datatype="html"> | 10109 | <trans-unit id="7401289443263903223" datatype="html"> |
9805 | <source>Privacy breach or doxxing</source> | 10110 | <source>Privacy breach or doxxing</source> |
9806 | <target state="translated">Adatvédelem megkerülése vagy adatok kiszivárogtatása</target> | 10111 | <target state="translated">Adatvédelem megkerülése vagy adatok kiszivárogtatása</target> |
9807 | 10112 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">155</context></context-group> | |
9808 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">155</context></context-group></trans-unit> | 10113 | </trans-unit> |
9809 | <trans-unit id="8363008638081993167" datatype="html"> | 10114 | <trans-unit id="8363008638081993167" datatype="html"> |
9810 | <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> | 10115 | <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> |
9811 | <target state="translated">Személyes információkat tartalmaz amikkel követhető, beazonosítható, megkereshető vagy megszemélyesíthető valaki (pl. név, cím, telefonszám, email vagy hitelkártya adatok).</target> | 10116 | <target state="translated">Személyes információkat tartalmaz amikkel követhető, beazonosítható, megkereshető vagy megszemélyesíthető valaki (pl. név, cím, telefonszám, email vagy hitelkártya adatok).</target> |
9812 | 10117 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">157</context></context-group> | |
9813 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">157</context></context-group></trans-unit> | 10118 | </trans-unit> |
9814 | <trans-unit id="380450014369168564" datatype="html"> | 10119 | <trans-unit id="380450014369168564" datatype="html"> |
9815 | <source>Infringes your copyright wrt. the regional laws with which the server must comply.</source> | 10120 | <source>Infringes your copyright wrt. the regional laws with which the server must comply.</source> |
9816 | <target state="translated">A szerzőit jogai sérti a kiszolgálóra vonatkozó helyi törvények szempontjából.</target> | 10121 | <target state="translated">A szerzőit jogai sérti a kiszolgálóra vonatkozó helyi törvények szempontjából.</target> |
9817 | 10122 | <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> | |
9818 | <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> | 10123 | </trans-unit> |
9819 | <trans-unit id="1378933246324202613" datatype="html"> | 10124 | <trans-unit id="1378933246324202613" datatype="html"> |
9820 | <source>Breaks server rules</source> | 10125 | <source>Breaks server rules</source> |
9821 | <target state="translated">Sérti a szerver szabályait</target> | 10126 | <target state="translated">Sérti a szerver szabályait</target> |
9822 | 10127 | <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> | |
9823 | <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> | 10128 | </trans-unit> |
9824 | <trans-unit id="7930601470861156366" datatype="html"> | 10129 | <trans-unit id="7930601470861156366" datatype="html"> |
9825 | <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> | 10130 | <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> |
9826 | <target state="translated">Bármi ami nem tartozik a fentiekbe és sérti a szerveren érvényes szolgáltatási feltételeket, magatartási kódexet vagy általános szabályokat.</target> | 10131 | <target state="translated">Bármi ami nem tartozik a fentiekbe és sérti a szerveren érvényes szolgáltatási feltételeket, magatartási kódexet vagy általános szabályokat.</target> |
9827 | 10132 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">168</context></context-group> | |
9828 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">168</context></context-group></trans-unit> | 10133 | </trans-unit> |
9829 | <trans-unit id="8700771664729810984" datatype="html"> | 10134 | <trans-unit id="8700771664729810984" datatype="html"> |
9830 | <source>The above can only be seen in thumbnails.</source> | 10135 | <source>The above can only be seen in thumbnails.</source> |
9831 | <target state="translated">A fenti csak indexképekben látható.</target> | 10136 | <target state="translated">A fenti csak indexképekben látható.</target> |
9832 | 10137 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">177</context></context-group> | |
9833 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">177</context></context-group></trans-unit> | 10138 | </trans-unit> |
9834 | <trans-unit id="2602773901491715295" datatype="html"> | 10139 | <trans-unit id="2602773901491715295" datatype="html"> |
9835 | <source>Captions</source> | 10140 | <source>Captions</source> |
9836 | <target state="translated">Feliratok</target> | 10141 | <target state="translated">Feliratok</target> |
@@ -9840,23 +10145,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9840 | <trans-unit id="5779804235244672536" datatype="html"> | 10145 | <trans-unit id="5779804235244672536" datatype="html"> |
9841 | <source>The above can only be seen in captions (please describe which).</source> | 10146 | <source>The above can only be seen in captions (please describe which).</source> |
9842 | <target state="translated">A fenti csak feliratokban látható (kérem írja le, melyik).</target> | 10147 | <target state="translated">A fenti csak feliratokban látható (kérem írja le, melyik).</target> |
9843 | 10148 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">182</context></context-group> | |
9844 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> | 10149 | </trans-unit> |
9845 | <trans-unit id="968295009933361070" datatype="html"> | 10150 | <trans-unit id="968295009933361070" datatype="html"> |
9846 | <source>Too many attempts, please try again after <x id="PH"/> minutes.</source> | 10151 | <source>Too many attempts, please try again after <x id="PH"/> minutes.</source> |
9847 | <target state="translated">Túl sok próbálkozás. Próbálja meg újra <x id="PH"/> perc múlva.</target> | 10152 | <target state="translated">Túl sok próbálkozás. Próbálja meg újra <x id="PH"/> perc múlva.</target> |
9848 | 10153 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">70</context></context-group> | |
9849 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">70</context></context-group></trans-unit> | 10154 | </trans-unit> |
9850 | <trans-unit id="4965472196059235310" datatype="html"> | 10155 | <trans-unit id="4965472196059235310" datatype="html"> |
9851 | <source>Too many attempts, please try again later.</source> | 10156 | <source>Too many attempts, please try again later.</source> |
9852 | <target state="translated">Túl sok próbálkozás. Próbálja meg újra később.</target> | 10157 | <target state="translated">Túl sok próbálkozás. Próbálja meg újra később.</target> |
9853 | 10158 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">72</context></context-group> | |
9854 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 10159 | </trans-unit> |
9855 | <trans-unit id="1693549688987384699" datatype="html"> | 10160 | <trans-unit id="1693549688987384699" datatype="html"> |
9856 | <source>Server error. Please retry later.</source> | 10161 | <source>Server error. Please retry later.</source> |
9857 | <target state="translated">Kiszolgálóhiba. Próbálja újra később.</target> | 10162 | <target state="translated">Kiszolgálóhiba. Próbálja újra később.</target> |
9858 | 10163 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">75</context></context-group> | |
9859 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">75</context></context-group></trans-unit> | 10164 | </trans-unit> |
9860 | <trans-unit id="5927402622550505067" datatype="html"> | 10165 | <trans-unit id="5927402622550505067" datatype="html"> |
9861 | <source>Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</source> | 10166 | <source>Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</source> |
9862 | <target state="translated">Feliratkozva <x id="PH"/> összes jelenlegi csatornájára. Értesítést fog kapni az összes új videójukról.</target> | 10167 | <target state="translated">Feliratkozva <x id="PH"/> összes jelenlegi csatornájára. Értesítést fog kapni az összes új videójukról.</target> |
@@ -9910,9 +10215,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9910 | <trans-unit id="4968151111061046122" datatype="html"> | 10215 | <trans-unit id="4968151111061046122" datatype="html"> |
9911 | <source>Moderator</source> | 10216 | <source>Moderator</source> |
9912 | <target state="translated">Moderátor</target> | 10217 | <target state="translated">Moderátor</target> |
9913 | 10218 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group> | |
9914 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group></trans-unit><trans-unit id="2279527393438260622" datatype="html"> | 10219 | </trans-unit> |
9915 | <source>Search videos, playlists, channels…</source><target state="new">Search videos, playlists, channels…</target> | 10220 | <trans-unit id="2279527393438260622" datatype="html"> |
10221 | <source>Search videos, playlists, channels…</source> | ||
10222 | <target state="new">Search videos, playlists, channels…</target> | ||
9916 | <context-group purpose="location"> | 10223 | <context-group purpose="location"> |
9917 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> | 10224 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> |
9918 | <context context-type="linenumber">3</context> | 10225 | <context context-type="linenumber">3</context> |
@@ -9923,101 +10230,101 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9923 | <target state="translated">Videó eltávolítva innen: | 10230 | <target state="translated">Videó eltávolítva innen: |
9924 | <x id="PH"/> | 10231 | <x id="PH"/> |
9925 | </target> | 10232 | </target> |
9926 | 10233 | <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">306</context></context-group> | |
9927 | 10234 | <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">93</context></context-group> | |
9928 | <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">306</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">93</context></context-group></trans-unit> | 10235 | </trans-unit> |
9929 | <trans-unit id="1056145626640340519" datatype="html"> | 10236 | <trans-unit id="1056145626640340519" datatype="html"> |
9930 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> | 10237 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> |
9931 | <target state="translated">Videó hozzáadva ehhez: <x id="PH"/>, ezzel az időbélyeggel: <x id="PH_1"/></target> | 10238 | <target state="translated">Videó hozzáadva ehhez: <x id="PH"/>, ezzel az időbélyeggel: <x id="PH_1"/></target> |
9932 | 10239 | <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">374</context></context-group> | |
9933 | <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">374</context></context-group></trans-unit> | 10240 | </trans-unit> |
9934 | <trans-unit id="7754186870520534716" datatype="html"> | 10241 | <trans-unit id="7754186870520534716" datatype="html"> |
9935 | <source>Video added in <x id="PH"/> </source> | 10242 | <source>Video added in <x id="PH"/> </source> |
9936 | <target state="translated">Videó hozzádva ekkor: | 10243 | <target state="translated">Videó hozzádva ekkor: |
9937 | <x id="PH"/> | 10244 | <x id="PH"/> |
9938 | </target> | 10245 | </target> |
9939 | 10246 | <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">375</context></context-group> | |
9940 | <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">375</context></context-group></trans-unit> | 10247 | </trans-unit> |
9941 | <trans-unit id="985751964589921228" datatype="html"> | 10248 | <trans-unit id="985751964589921228" datatype="html"> |
9942 | <source>Timestamps updated</source> | 10249 | <source>Timestamps updated</source> |
9943 | <target state="translated">Időbélyegek frissítve</target> | 10250 | <target state="translated">Időbélyegek frissítve</target> |
9944 | 10251 | <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">274</context></context-group> | |
9945 | 10252 | <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">112</context></context-group> | |
9946 | <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">274</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">112</context></context-group></trans-unit> | 10253 | </trans-unit> |
9947 | <trans-unit id="6421445850411984665" datatype="html"> | 10254 | <trans-unit id="6421445850411984665" datatype="html"> |
9948 | <source>Starts at</source> | 10255 | <source>Starts at</source> |
9949 | <target state="translated">Ekkor kezdődik</target> | 10256 | <target state="translated">Ekkor kezdődik</target> |
9950 | 10257 | <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">135</context></context-group> | |
9951 | 10258 | <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">138</context></context-group> | |
9952 | <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">135</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">138</context></context-group></trans-unit> | 10259 | </trans-unit> |
9953 | <trans-unit id="7145200412085189912" datatype="html"> | 10260 | <trans-unit id="7145200412085189912" datatype="html"> |
9954 | <source>Stops at</source> | 10261 | <source>Stops at</source> |
9955 | <target state="translated">Ekkor áll le</target> | 10262 | <target state="translated">Ekkor áll le</target> |
9956 | 10263 | <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">136</context></context-group> | |
9957 | <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">136</context></context-group></trans-unit> | 10264 | </trans-unit> |
9958 | <trans-unit id="921225940108335688" datatype="html"> | 10265 | <trans-unit id="921225940108335688" datatype="html"> |
9959 | <source>and stops at</source> | 10266 | <source>and stops at</source> |
9960 | <target state="translated">és ekkor áll le</target> | 10267 | <target state="translated">és ekkor áll le</target> |
9961 | 10268 | <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">138</context></context-group> | |
9962 | <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">138</context></context-group></trans-unit> | 10269 | </trans-unit> |
9963 | <trans-unit id="2909684945706361544" datatype="html"> | 10270 | <trans-unit id="2909684945706361544" datatype="html"> |
9964 | <source>Delete video</source> | 10271 | <source>Delete video</source> |
9965 | <target state="translated">Videó törlése</target> | 10272 | <target state="translated">Videó törlése</target> |
9966 | 10273 | <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> | |
9967 | <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> | 10274 | </trans-unit> |
9968 | <trans-unit id="2210418817778733727" datatype="html"> | 10275 | <trans-unit id="2210418817778733727" datatype="html"> |
9969 | <source>Actions for the comment</source> | 10276 | <source>Actions for the comment</source> |
9970 | <target state="translated">Műveletek a hozzászóláshoz</target> | 10277 | <target state="translated">Műveletek a hozzászóláshoz</target> |
9971 | 10278 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">412</context></context-group> | |
9972 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">412</context></context-group></trans-unit> | 10279 | </trans-unit> |
9973 | <trans-unit id="7978668497183230348" datatype="html"> | 10280 | <trans-unit id="7978668497183230348" datatype="html"> |
9974 | <source>Delete comment</source> | 10281 | <source>Delete comment</source> |
9975 | <target state="translated">Hozzászólás törlése</target> | 10282 | <target state="translated">Hozzászólás törlése</target> |
9976 | 10283 | <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> | |
9977 | <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> | 10284 | </trans-unit> |
9978 | <trans-unit id="6747218355168080191" datatype="html"> | 10285 | <trans-unit id="6747218355168080191" datatype="html"> |
9979 | <source>Do you really want to delete this comment?</source> | 10286 | <source>Do you really want to delete this comment?</source> |
9980 | <target state="translated">Biztos, hogy törli ezt a hozzászólást?</target> | 10287 | <target state="translated">Biztos, hogy törli ezt a hozzászólást?</target> |
9981 | 10288 | <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> | |
9982 | 10289 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">422</context></context-group> | |
9983 | <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">422</context></context-group></trans-unit> | 10290 | </trans-unit> |
9984 | <trans-unit id="7837272126865175984" datatype="html"> | 10291 | <trans-unit id="7837272126865175984" datatype="html"> |
9985 | <source>Comment deleted.</source> | 10292 | <source>Comment deleted.</source> |
9986 | <target state="translated">Hozzászólás törölve.</target> | 10293 | <target state="translated">Hozzászólás törölve.</target> |
9987 | 10294 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">430</context></context-group> | |
9988 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">430</context></context-group></trans-unit> | 10295 | </trans-unit> |
9989 | <trans-unit id="346270517625845962" datatype="html"> | 10296 | <trans-unit id="346270517625845962" datatype="html"> |
9990 | <source>Encoder</source> | 10297 | <source>Encoder</source> |
9991 | <target state="translated">Kódoló</target> | 10298 | <target state="translated">Kódoló</target> |
9992 | 10299 | <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> | |
9993 | <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> | 10300 | </trans-unit> |
9994 | <trans-unit id="2331557444464201331" datatype="html"> | 10301 | <trans-unit id="2331557444464201331" datatype="html"> |
9995 | <source>Format name</source> | 10302 | <source>Format name</source> |
9996 | <target state="translated">Formátum neve</target> | 10303 | <target state="translated">Formátum neve</target> |
9997 | 10304 | <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> | |
9998 | <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> | 10305 | </trans-unit> |
9999 | <trans-unit id="45739481977493163" datatype="html"> | 10306 | <trans-unit id="45739481977493163" datatype="html"> |
10000 | <source>Size</source> | 10307 | <source>Size</source> |
10001 | <target state="translated">Méret</target> | 10308 | <target state="translated">Méret</target> |
10002 | 10309 | <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> | |
10003 | <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> | 10310 | </trans-unit> |
10004 | <trans-unit id="7742520815129539114" datatype="html"> | 10311 | <trans-unit id="7742520815129539114" datatype="html"> |
10005 | <source>Bitrate</source> | 10312 | <source>Bitrate</source> |
10006 | <target state="translated">Bitsebesség</target> | 10313 | <target state="translated">Bitsebesség</target> |
10007 | 10314 | <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> | |
10008 | 10315 | <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> | |
10009 | <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> | 10316 | </trans-unit> |
10010 | <trans-unit id="4094960161662677662" datatype="html"> | 10317 | <trans-unit id="4094960161662677662" datatype="html"> |
10011 | <source>Codec</source> | 10318 | <source>Codec</source> |
10012 | <target state="translated">Kodek</target> | 10319 | <target state="translated">Kodek</target> |
10013 | 10320 | <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> | |
10014 | <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> | 10321 | </trans-unit> |
10015 | <trans-unit id="2115592966120408375" datatype="html"> | 10322 | <trans-unit id="2115592966120408375" datatype="html"> |
10016 | <source>Copied</source> | 10323 | <source>Copied</source> |
10017 | <target state="translated">Másolva</target> | 10324 | <target state="translated">Másolva</target> |
10018 | 10325 | <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> | |
10019 | 10326 | <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> | |
10020 | <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> | 10327 | </trans-unit> |
10021 | <trans-unit id="4323470180912194028" datatype="html"> | 10328 | <trans-unit id="4323470180912194028" datatype="html"> |
10022 | <source>Copy</source> | 10329 | <source>Copy</source> |
10023 | <target state="new">Copy</target> | 10330 | <target state="new">Copy</target> |
@@ -10027,31 +10334,31 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10027 | <trans-unit id="1472171759957681533" datatype="html"> | 10334 | <trans-unit id="1472171759957681533" datatype="html"> |
10028 | <source>Video reported.</source> | 10335 | <source>Video reported.</source> |
10029 | <target state="translated">Videó bejelentve.</target> | 10336 | <target state="translated">Videó bejelentve.</target> |
10030 | 10337 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.ts</context><context context-type="linenumber">113</context></context-group> | |
10031 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.ts</context><context context-type="linenumber">113</context></context-group></trans-unit> | 10338 | </trans-unit> |
10032 | <trans-unit id="3622946684246476652" datatype="html"> | 10339 | <trans-unit id="3622946684246476652" datatype="html"> |
10033 | <source>Do you really want to delete this video?</source> | 10340 | <source>Do you really want to delete this video?</source> |
10034 | <target state="translated">Valóban törölni szeretné ezt a videót?</target> | 10341 | <target state="translated">Valóban törölni szeretné ezt a videót?</target> |
10035 | 10342 | <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> | |
10036 | 10343 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">387</context></context-group> | |
10037 | 10344 | <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> | |
10038 | <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/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">387</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">203</context></context-group></trans-unit> | 10345 | </trans-unit> |
10039 | <trans-unit id="3941342949736653028" datatype="html"> | 10346 | <trans-unit id="3941342949736653028" datatype="html"> |
10040 | <source>Video deleted.</source> | 10347 | <source>Video deleted.</source> |
10041 | <target state="translated">A videó törölve.</target> | 10348 | <target state="translated">A videó törölve.</target> |
10042 | 10349 | <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">98</context></context-group> | |
10043 | 10350 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">395</context></context-group> | |
10044 | <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">98</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">395</context></context-group></trans-unit> | 10351 | </trans-unit> |
10045 | <trans-unit id="5072091387445907742" datatype="html"> | 10352 | <trans-unit id="5072091387445907742" datatype="html"> |
10046 | <source>Actions for the reporter</source> | 10353 | <source>Actions for the reporter</source> |
10047 | <target state="translated">Műveletek a jelentővel kapcsolatban</target> | 10354 | <target state="translated">Műveletek a jelentővel kapcsolatban</target> |
10048 | 10355 | <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> | |
10049 | <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> | 10356 | </trans-unit> |
10050 | <trans-unit id="6599069899275412095" datatype="html"> | 10357 | <trans-unit id="6599069899275412095" datatype="html"> |
10051 | <source>Mute reporter</source> | 10358 | <source>Mute reporter</source> |
10052 | <target state="translated">Jelentő némítása</target> | 10359 | <target state="translated">Jelentő némítása</target> |
10053 | 10360 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">328</context></context-group> | |
10054 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">328</context></context-group></trans-unit> | 10361 | </trans-unit> |
10055 | <trans-unit id="2990849907502572301" datatype="html"> | 10362 | <trans-unit id="2990849907502572301" datatype="html"> |
10056 | <source>This video will be duplicated by your instance.</source> | 10363 | <source>This video will be duplicated by your instance.</source> |
10057 | <target state="translated">Ezt a videót kettőzni fogja az Ön példánya.</target> | 10364 | <target state="translated">Ezt a videót kettőzni fogja az Ön példánya.</target> |
@@ -10065,9 +10372,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10065 | <trans-unit id="7672331870004528654" datatype="html"> | 10372 | <trans-unit id="7672331870004528654" datatype="html"> |
10066 | <source>Display live information</source> | 10373 | <source>Display live information</source> |
10067 | <target state="new">Display live information</target> | 10374 | <target state="new">Display live information</target> |
10068 | 10375 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">174</context></context-group> | |
10069 | 10376 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">278</context></context-group> | |
10070 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">174</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">278</context></context-group></trans-unit> | 10377 | </trans-unit> |
10071 | <trans-unit id="4021752662928002901" datatype="html"> | 10378 | <trans-unit id="4021752662928002901" datatype="html"> |
10072 | <source>Update</source> | 10379 | <source>Update</source> |
10073 | <target state="translated">Frissítés</target> | 10380 | <target state="translated">Frissítés</target> |
@@ -10085,20 +10392,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10085 | <trans-unit id="1950057220179636309" datatype="html"> | 10392 | <trans-unit id="1950057220179636309" datatype="html"> |
10086 | <source>Save to playlist</source> | 10393 | <source>Save to playlist</source> |
10087 | <target state="translated">Mentés a lejátszási listára</target> | 10394 | <target state="translated">Mentés a lejátszási listára</target> |
10088 | 10395 | <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> | |
10089 | 10396 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">264</context></context-group> | |
10090 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">264</context></context-group></trans-unit> | 10397 | </trans-unit> |
10091 | <trans-unit id="8272123190776748811" datatype="html"> | 10398 | <trans-unit id="8272123190776748811" datatype="html"> |
10092 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> | 10399 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> |
10093 | <target state="new">You need to be <a href="/login">logged in</a> to rate this video.</target> | 10400 | <target state="new">You need to be <a href="/login">logged in</a> to rate this video.</target> |
10094 | 10401 | <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> | |
10095 | <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> | 10402 | </trans-unit> |
10096 | <trans-unit id="4503408361537553733" datatype="html"> | 10403 | <trans-unit id="4503408361537553733" datatype="html"> |
10097 | <source>Mirror</source> | 10404 | <source>Mirror</source> |
10098 | <target state="translated">Lemásolás</target> | 10405 | <target state="translated">Lemásolás</target> |
10099 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">302</context></context-group> | 10406 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">302</context></context-group> |
10100 | </trans-unit><trans-unit id="2631340539474479416" datatype="html"> | 10407 | </trans-unit> |
10101 | <source>Subtitles</source><target state="new">Subtitles</target> | 10408 | <trans-unit id="2631340539474479416" datatype="html"> |
10409 | <source>Subtitles</source> | ||
10410 | <target state="new">Subtitles</target> | ||
10102 | <context-group purpose="location"> | 10411 | <context-group purpose="location"> |
10103 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | 10412 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> |
10104 | <context context-type="linenumber">9</context> | 10413 | <context context-type="linenumber">9</context> |
@@ -10107,29 +10416,30 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10107 | <trans-unit id="7008439939460403347" datatype="html"> | 10416 | <trans-unit id="7008439939460403347" datatype="html"> |
10108 | <source>Report</source> | 10417 | <source>Report</source> |
10109 | <target state="translated">Jelentés</target> | 10418 | <target state="translated">Jelentés</target> |
10110 | 10419 | <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> | |
10111 | <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">314</context></context-group></trans-unit> | 10420 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">314</context></context-group> |
10421 | </trans-unit> | ||
10112 | <trans-unit id="4814285799071780083" datatype="html"> | 10422 | <trans-unit id="4814285799071780083" datatype="html"> |
10113 | <source>Remove</source> | 10423 | <source>Remove</source> |
10114 | <target state="translated">Eltávolítás</target> | 10424 | <target state="translated">Eltávolítás</target> |
10115 | 10425 | <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> | |
10116 | <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> | 10426 | </trans-unit> |
10117 | <trans-unit id="6871668720687277843" datatype="html"> | 10427 | <trans-unit id="6871668720687277843" datatype="html"> |
10118 | <source>Remove & re-draft</source> | 10428 | <source>Remove & re-draft</source> |
10119 | <target state="translated">Eltávolítás és újraírás</target> | 10429 | <target state="translated">Eltávolítás és újraírás</target> |
10120 | 10430 | <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> | |
10121 | <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> | 10431 | </trans-unit> |
10122 | <trans-unit id="992317512448454409" datatype="html"> | 10432 | <trans-unit id="992317512448454409" datatype="html"> |
10123 | <source>{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</source> | 10433 | <source>{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</source> |
10124 | <target state="new">{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</target> | 10434 | <target state="new">{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</target> |
10125 | 10435 | <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> | |
10126 | <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> | 10436 | </trans-unit> |
10127 | <trans-unit id="4903651219400691248" datatype="html"> | 10437 | <trans-unit id="4903651219400691248" datatype="html"> |
10128 | <source>Mute account</source> | 10438 | <source>Mute account</source> |
10129 | <target state="translated">Fiók némítása</target> | 10439 | <target state="translated">Fiók némítása</target> |
10130 | 10440 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">304</context></context-group> | |
10131 | 10441 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">322</context></context-group> | |
10132 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">304</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">322</context></context-group></trans-unit> | 10442 | </trans-unit> |
10133 | <trans-unit id="4021487547497211597" datatype="html"> | 10443 | <trans-unit id="4021487547497211597" datatype="html"> |
10134 | <source>Open video actions</source> | 10444 | <source>Open video actions</source> |
10135 | <target state="new">Open video actions</target> | 10445 | <target state="new">Open video actions</target> |
@@ -10145,8 +10455,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10145 | <trans-unit id="3719503424625455635" datatype="html"> | 10455 | <trans-unit id="3719503424625455635" datatype="html"> |
10146 | <source>Mute server account</source> | 10456 | <source>Mute server account</source> |
10147 | <target state="translated">Kiszolgálófiók némítésa</target> | 10457 | <target state="translated">Kiszolgálófiók némítésa</target> |
10148 | 10458 | <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> | |
10149 | <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> | 10459 | </trans-unit> |
10150 | <trans-unit id="7008439939460403347"> | 10460 | <trans-unit id="7008439939460403347"> |
10151 | <source>Report</source> | 10461 | <source>Report</source> |
10152 | <target>Jelentés</target> | 10462 | <target>Jelentés</target> |
@@ -10195,29 +10505,31 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10195 | <trans-unit id="4058575476871566236" datatype="html"> | 10505 | <trans-unit id="4058575476871566236" datatype="html"> |
10196 | <source>Published</source> | 10506 | <source>Published</source> |
10197 | <target state="translated">Közzétéve</target> | 10507 | <target state="translated">Közzétéve</target> |
10198 | 10508 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">158</context></context-group> | |
10199 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">158</context></context-group></trans-unit> | 10509 | </trans-unit> |
10200 | <trans-unit id="1747928867514972971" datatype="html"> | 10510 | <trans-unit id="1747928867514972971" datatype="html"> |
10201 | <source>Publication scheduled on</source> | 10511 | <source>Publication scheduled on</source> |
10202 | <target state="translated">Közzététel ütemezve ekkor</target> | 10512 | <target state="translated">Közzététel ütemezve ekkor</target> |
10203 | 10513 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">163</context></context-group> | |
10204 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 10514 | </trans-unit> |
10205 | <trans-unit id="4887724548587271148" datatype="html"> | 10515 | <trans-unit id="4887724548587271148" datatype="html"> |
10206 | <source>Waiting transcoding</source> | 10516 | <source>Waiting transcoding</source> |
10207 | <target state="translated">Átkódolásra vár</target> | 10517 | <target state="translated">Átkódolásra vár</target> |
10208 | 10518 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">167</context></context-group> | |
10209 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">167</context></context-group></trans-unit> | 10519 | </trans-unit> |
10210 | <trans-unit id="4517785179607945981" datatype="html"> | 10520 | <trans-unit id="4517785179607945981" datatype="html"> |
10211 | <source>To transcode</source> | 10521 | <source>To transcode</source> |
10212 | <target state="translated">Átkódoláshoz</target> | 10522 | <target state="translated">Átkódoláshoz</target> |
10213 | 10523 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">171</context></context-group> | |
10214 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit> | 10524 | </trans-unit> |
10215 | <trans-unit id="3299576663551440736" datatype="html"> | 10525 | <trans-unit id="3299576663551440736" datatype="html"> |
10216 | <source>To import</source> | 10526 | <source>To import</source> |
10217 | <target state="translated">Importáláshoz</target> | 10527 | <target state="translated">Importáláshoz</target> |
10218 | 10528 | <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> | |
10219 | <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="8492933894084361602" datatype="html"> | 10529 | </trans-unit> |
10220 | <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> | 10530 | <trans-unit id="8492933894084361602" datatype="html"> |
10531 | <source>Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</source> | ||
10532 | <target state="new">Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</target> | ||
10221 | <context-group purpose="location"> | 10533 | <context-group purpose="location"> |
10222 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context> | 10534 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context> |
10223 | <context context-type="linenumber">8</context> | 10535 | <context context-type="linenumber">8</context> |
@@ -10249,244 +10561,241 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10249 | <trans-unit id="2439066254855913806" datatype="html"> | 10561 | <trans-unit id="2439066254855913806" datatype="html"> |
10250 | <source>Only I can see this video</source> | 10562 | <source>Only I can see this video</source> |
10251 | <target state="translated">Csak én láthatom ezt a videót</target> | 10563 | <target state="translated">Csak én láthatom ezt a videót</target> |
10252 | 10564 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">325</context></context-group> | |
10253 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">325</context></context-group></trans-unit> | 10565 | </trans-unit> |
10254 | <trans-unit id="6767380569816110388" datatype="html"> | 10566 | <trans-unit id="6767380569816110388" datatype="html"> |
10255 | <source>Only shareable via a private link</source> | 10567 | <source>Only shareable via a private link</source> |
10256 | <target state="translated">Csak személyes hivatkozással osztható meg</target> | 10568 | <target state="translated">Csak személyes hivatkozással osztható meg</target> |
10257 | 10569 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">326</context></context-group> | |
10258 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">326</context></context-group></trans-unit> | 10570 | </trans-unit> |
10259 | <trans-unit id="6828965264297239528" datatype="html"> | 10571 | <trans-unit id="6828965264297239528" datatype="html"> |
10260 | <source>Anyone can see this video</source> | 10572 | <source>Anyone can see this video</source> |
10261 | <target state="translated">Bárki láthatja ezt a videót</target> | 10573 | <target state="translated">Bárki láthatja ezt a videót</target> |
10262 | 10574 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">327</context></context-group> | |
10263 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">327</context></context-group></trans-unit> | 10575 | </trans-unit> |
10264 | <trans-unit id="1425933035739773115" datatype="html"> | 10576 | <trans-unit id="1425933035739773115" datatype="html"> |
10265 | <source>Only users of this instance can see this video</source> | 10577 | <source>Only users of this instance can see this video</source> |
10266 | <target state="translated">Csak a példány felhasználói nézhetik meg ezt a videót</target> | 10578 | <target state="translated">Csak a példány felhasználói nézhetik meg ezt a videót</target> |
10267 | 10579 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">328</context></context-group> | |
10268 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">328</context></context-group></trans-unit> | 10580 | </trans-unit> |
10269 | <trans-unit id="8312101634344200207" datatype="html"> | 10581 | <trans-unit id="8312101634344200207" datatype="html"> |
10270 | <source><x id="PH" equiv-text="this.views"/> viewers</source> | 10582 | <source><x id="PH" equiv-text="this.views"/> viewers</source> |
10271 | <target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> | 10583 | <target state="new"><x id="PH" equiv-text="this.views"/> viewers</target> |
10272 | 10584 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">216</context></context-group> | |
10273 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">216</context></context-group></trans-unit> | 10585 | </trans-unit> |
10274 | <trans-unit id="7756087706411154095" datatype="html"> | 10586 | <trans-unit id="7756087706411154095" datatype="html"> |
10275 | <source><x id="PH" equiv-text="this.views"/> views</source> | 10587 | <source><x id="PH" equiv-text="this.views"/> views</source> |
10276 | <target state="new"><x id="PH" equiv-text="this.views"/> views</target> | 10588 | <target state="new"><x id="PH" equiv-text="this.views"/> views</target> |
10277 | 10589 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">219</context></context-group> | |
10278 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">219</context></context-group></trans-unit> | 10590 | </trans-unit> |
10279 | <trans-unit id="ngb.alert.close" datatype="html"> | 10591 | <trans-unit id="ngb.alert.close" datatype="html"> |
10280 | <source>Close</source> | 10592 | <source>Close</source> |
10281 | <target state="translated">Bezárás</target> | 10593 | <target state="translated">Bezárás</target> |
10282 | 10594 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">58</context></context-group> | |
10283 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 10595 | </trans-unit> |
10284 | <trans-unit id="ngb.carousel.slide-number" datatype="html"> | 10596 | <trans-unit id="ngb.carousel.slide-number" datatype="html"> |
10285 | <source>Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </source> | 10597 | <source>Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </source> |
10286 | <target state="new"> Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </target> | 10598 | <target state="new"> Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </target> |
10287 | <note priority="1" from="description">Currently selected slide number read by screen reader</note> | 10599 | <note priority="1" from="description">Currently selected slide number read by screen reader</note> |
10288 | 10600 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">114</context></context-group> | |
10289 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">114</context></context-group></trans-unit> | 10601 | </trans-unit> |
10290 | <trans-unit id="ngb.carousel.previous" datatype="html"> | 10602 | <trans-unit id="ngb.carousel.previous" datatype="html"> |
10291 | <source>Previous</source> | 10603 | <source>Previous</source> |
10292 | <target state="translated">Előző</target> | 10604 | <target state="translated">Előző</target> |
10293 | 10605 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">132</context></context-group> | |
10294 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">132</context></context-group></trans-unit> | 10606 | </trans-unit> |
10295 | <trans-unit id="ngb.carousel.next" datatype="html"> | 10607 | <trans-unit id="ngb.carousel.next" datatype="html"> |
10296 | <source>Next</source> | 10608 | <source>Next</source> |
10297 | <target state="translated">Következő</target> | 10609 | <target state="translated">Következő</target> |
10298 | 10610 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">147</context></context-group> | |
10299 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">147</context></context-group></trans-unit> | 10611 | </trans-unit> |
10300 | <trans-unit id="ngb.datepicker.previous-month" datatype="html"> | 10612 | <trans-unit id="ngb.datepicker.previous-month" datatype="html"> |
10301 | <source>Previous month</source> | 10613 | <source>Previous month</source> |
10302 | <target state="translated">Előző hónap</target> | 10614 | <target state="translated">Előző hónap</target> |
10303 | 10615 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">24</context></context-group> | |
10304 | 10616 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">35</context></context-group> | |
10305 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">35</context></context-group></trans-unit> | 10617 | </trans-unit> |
10306 | <trans-unit id="ngb.datepicker.next-month" datatype="html"> | 10618 | <trans-unit id="ngb.datepicker.next-month" datatype="html"> |
10307 | <source>Next month</source> | 10619 | <source>Next month</source> |
10308 | <target state="translated">Következő hónap</target> | 10620 | <target state="translated">Következő hónap</target> |
10309 | 10621 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">47</context></context-group> | |
10310 | 10622 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">60</context></context-group> | |
10311 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> | 10623 | </trans-unit> |
10312 | <trans-unit id="ngb.datepicker.select-month" datatype="html"> | 10624 | <trans-unit id="ngb.datepicker.select-month" datatype="html"> |
10313 | <source>Select month</source> | 10625 | <source>Select month</source> |
10314 | <target state="translated">Válasszon hónapot</target> | 10626 | <target state="translated">Válasszon hónapot</target> |
10315 | 10627 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">44</context></context-group> | |
10316 | 10628 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">49</context></context-group> | |
10317 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">49</context></context-group></trans-unit> | 10629 | </trans-unit> |
10318 | <trans-unit id="ngb.datepicker.select-year" datatype="html"> | 10630 | <trans-unit id="ngb.datepicker.select-year" datatype="html"> |
10319 | <source>Select year</source> | 10631 | <source>Select year</source> |
10320 | <target state="translated">Válasszon évet</target> | 10632 | <target state="translated">Válasszon évet</target> |
10321 | 10633 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">59</context></context-group> | |
10322 | 10634 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">74</context></context-group> | |
10323 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">59</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">74</context></context-group></trans-unit> | 10635 | </trans-unit> |
10324 | <trans-unit id="ngb.pagination.first" datatype="html"> | 10636 | <trans-unit id="ngb.pagination.first" datatype="html"> |
10325 | <source>««</source> | 10637 | <source>««</source> |
10326 | <target state="translated">««</target> | 10638 | <target state="translated">««</target> |
10327 | 10639 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">182</context></context-group> | |
10328 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> | 10640 | </trans-unit> |
10329 | <trans-unit id="ngb.pagination.previous" datatype="html"> | 10641 | <trans-unit id="ngb.pagination.previous" datatype="html"> |
10330 | <source>«</source> | 10642 | <source>«</source> |
10331 | <target state="translated">«</target> | 10643 | <target state="translated">«</target> |
10332 | 10644 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">186</context></context-group> | |
10333 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 10645 | </trans-unit> |
10334 | <trans-unit id="ngb.pagination.next" datatype="html"> | 10646 | <trans-unit id="ngb.pagination.next" datatype="html"> |
10335 | <source>»</source> | 10647 | <source>»</source> |
10336 | <target state="translated">»</target> | 10648 | <target state="translated">»</target> |
10337 | 10649 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">194</context></context-group> | |
10338 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">194</context></context-group></trans-unit> | 10650 | </trans-unit> |
10339 | <trans-unit id="ngb.pagination.last" datatype="html"> | 10651 | <trans-unit id="ngb.pagination.last" datatype="html"> |
10340 | <source>»»</source> | 10652 | <source>»»</source> |
10341 | <target state="translated">»»</target> | 10653 | <target state="translated">»»</target> |
10342 | 10654 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">201</context></context-group> | |
10343 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">201</context></context-group></trans-unit> | 10655 | </trans-unit> |
10344 | <trans-unit id="ngb.pagination.first-aria" datatype="html"> | 10656 | <trans-unit id="ngb.pagination.first-aria" datatype="html"> |
10345 | <source>First</source> | 10657 | <source>First</source> |
10346 | <target state="translated">Első</target> | 10658 | <target state="translated">Első</target> |
10347 | 10659 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">208</context></context-group> | |
10348 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">208</context></context-group></trans-unit> | 10660 | </trans-unit> |
10349 | <trans-unit id="ngb.pagination.previous-aria" datatype="html"> | 10661 | <trans-unit id="ngb.pagination.previous-aria" datatype="html"> |
10350 | <source>Previous</source> | 10662 | <source>Previous</source> |
10351 | <target state="translated">Előző</target> | 10663 | <target state="translated">Előző</target> |
10352 | 10664 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">215</context></context-group> | |
10353 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">215</context></context-group></trans-unit> | 10665 | </trans-unit> |
10354 | <trans-unit id="ngb.pagination.next-aria" datatype="html"> | 10666 | <trans-unit id="ngb.pagination.next-aria" datatype="html"> |
10355 | <source>Next</source> | 10667 | <source>Next</source> |
10356 | <target state="translated">Következő</target> | 10668 | <target state="translated">Következő</target> |
10357 | 10669 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">226</context></context-group> | |
10358 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">226</context></context-group></trans-unit> | 10670 | </trans-unit> |
10359 | <trans-unit id="ngb.pagination.last-aria" datatype="html"> | 10671 | <trans-unit id="ngb.pagination.last-aria" datatype="html"> |
10360 | <source>Last</source> | 10672 | <source>Last</source> |
10361 | <target state="translated">Utolsó</target> | 10673 | <target state="translated">Utolsó</target> |
10362 | 10674 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">232</context></context-group> | |
10363 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">232</context></context-group></trans-unit> | 10675 | </trans-unit> |
10364 | <trans-unit id="ngb.progressbar.value" datatype="html"> | 10676 | <trans-unit id="ngb.progressbar.value" datatype="html"> |
10365 | <source><x id="INTERPOLATION"/></source> | 10677 | <source><x id="INTERPOLATION"/></source> |
10366 | <target state="translated"><x id="INTERPOLATION"/></target> | 10678 | <target state="translated"><x id="INTERPOLATION"/></target> |
10367 | 10679 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/progressbar/progressbar.ts</context><context context-type="linenumber">32</context></context-group> | |
10368 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/progressbar/progressbar.ts</context><context context-type="linenumber">32</context></context-group></trans-unit> | 10680 | </trans-unit> |
10369 | <trans-unit id="ngb.timepicker.HH" datatype="html"> | 10681 | <trans-unit id="ngb.timepicker.HH" datatype="html"> |
10370 | <source>HH</source> | 10682 | <source>HH</source> |
10371 | <target state="translated">HH</target> | 10683 | <target state="translated">HH</target> |
10372 | 10684 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">40</context></context-group> | |
10373 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">40</context></context-group></trans-unit> | 10685 | </trans-unit> |
10374 | <trans-unit id="ngb.timepicker.hours" datatype="html"> | 10686 | <trans-unit id="ngb.timepicker.hours" datatype="html"> |
10375 | <source>Hours</source> | 10687 | <source>Hours</source> |
10376 | <target state="translated">Óra</target> | 10688 | <target state="translated">Óra</target> |
10377 | 10689 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">46</context></context-group> | |
10378 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 10690 | </trans-unit> |
10379 | <trans-unit id="ngb.timepicker.MM" datatype="html"> | 10691 | <trans-unit id="ngb.timepicker.MM" datatype="html"> |
10380 | <source>MM</source> | 10692 | <source>MM</source> |
10381 | <target state="translated">MM</target> | 10693 | <target state="translated">MM</target> |
10382 | 10694 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">51</context></context-group> | |
10383 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> | 10695 | </trans-unit> |
10384 | <trans-unit id="ngb.timepicker.minutes" datatype="html"> | 10696 | <trans-unit id="ngb.timepicker.minutes" datatype="html"> |
10385 | <source>Minutes</source> | 10697 | <source>Minutes</source> |
10386 | <target state="translated">Perc</target> | 10698 | <target state="translated">Perc</target> |
10387 | 10699 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">58</context></context-group> | |
10388 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 10700 | </trans-unit> |
10389 | <trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | 10701 | <trans-unit id="ngb.timepicker.increment-hours" datatype="html"> |
10390 | <source>Increment hours</source> | 10702 | <source>Increment hours</source> |
10391 | <target state="translated">Óra növelése</target> | 10703 | <target state="translated">Óra növelése</target> |
10392 | 10704 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">63</context></context-group> | |
10393 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">63</context></context-group></trans-unit> | 10705 | </trans-unit> |
10394 | <trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | 10706 | <trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> |
10395 | <source>Decrement hours</source> | 10707 | <source>Decrement hours</source> |
10396 | <target state="translated">Óra csökkentése</target> | 10708 | <target state="translated">Óra csökkentése</target> |
10397 | 10709 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">69</context></context-group> | |
10398 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">69</context></context-group></trans-unit> | 10710 | </trans-unit> |
10399 | <trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | 10711 | <trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> |
10400 | <source>Increment minutes</source> | 10712 | <source>Increment minutes</source> |
10401 | <target state="translated">Perc növelése</target> | 10713 | <target state="translated">Perc növelése</target> |
10402 | 10714 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">76</context></context-group> | |
10403 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 10715 | </trans-unit> |
10404 | <trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | 10716 | <trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> |
10405 | <source>Decrement minutes</source> | 10717 | <source>Decrement minutes</source> |
10406 | <target state="translated">Perc csökkentése</target> | 10718 | <target state="translated">Perc csökkentése</target> |
10407 | 10719 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">82</context></context-group> | |
10408 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 10720 | </trans-unit> |
10409 | <trans-unit id="ngb.timepicker.SS" datatype="html"> | 10721 | <trans-unit id="ngb.timepicker.SS" datatype="html"> |
10410 | <source>SS</source> | 10722 | <source>SS</source> |
10411 | <target state="translated">SS</target> | 10723 | <target state="translated">SS</target> |
10412 | 10724 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">87</context></context-group> | |
10413 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">87</context></context-group></trans-unit> | 10725 | </trans-unit> |
10414 | <trans-unit id="ngb.timepicker.seconds" datatype="html"> | 10726 | <trans-unit id="ngb.timepicker.seconds" datatype="html"> |
10415 | <source>Seconds</source> | 10727 | <source>Seconds</source> |
10416 | <target state="translated">Másodperc</target> | 10728 | <target state="translated">Másodperc</target> |
10417 | 10729 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">92</context></context-group> | |
10418 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">92</context></context-group></trans-unit> | 10730 | </trans-unit> |
10419 | <trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | 10731 | <trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> |
10420 | <source>Increment seconds</source> | 10732 | <source>Increment seconds</source> |
10421 | <target state="translated">Másodperc növelése</target> | 10733 | <target state="translated">Másodperc növelése</target> |
10422 | 10734 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">100</context></context-group> | |
10423 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">100</context></context-group></trans-unit> | 10735 | </trans-unit> |
10424 | <trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | 10736 | <trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> |
10425 | <source>Decrement seconds</source> | 10737 | <source>Decrement seconds</source> |
10426 | <target state="translated">Másodperc csökkentése</target> | 10738 | <target state="translated">Másodperc csökkentése</target> |
10427 | 10739 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">106</context></context-group> | |
10428 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">106</context></context-group></trans-unit> | 10740 | </trans-unit> |
10429 | <trans-unit id="ngb.timepicker.PM" datatype="html"> | 10741 | <trans-unit id="ngb.timepicker.PM" datatype="html"> |
10430 | <source><x id="INTERPOLATION"/></source> | 10742 | <source><x id="INTERPOLATION"/></source> |
10431 | <target state="translated"><x id="INTERPOLATION"/></target> | 10743 | <target state="translated"><x id="INTERPOLATION"/></target> |
10432 | 10744 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">123</context></context-group> | |
10433 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">123</context></context-group></trans-unit> | 10745 | </trans-unit> |
10434 | <trans-unit id="ngb.timepicker.AM" datatype="html"> | 10746 | <trans-unit id="ngb.timepicker.AM" datatype="html"> |
10435 | <source><x id="INTERPOLATION"/></source> | 10747 | <source><x id="INTERPOLATION"/></source> |
10436 | <target state="translated"><x id="INTERPOLATION"/></target> | 10748 | <target state="translated"><x id="INTERPOLATION"/></target> |
10437 | 10749 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">115</context></context-group> | |
10438 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">115</context></context-group></trans-unit> | 10750 | </trans-unit> |
10439 | <trans-unit id="ngb.toast.close-aria" datatype="html"> | 10751 | <trans-unit id="ngb.toast.close-aria" datatype="html"> |
10440 | <source>Close</source> | 10752 | <source>Close</source> |
10441 | <target state="translated">Bezárás</target> | 10753 | <target state="translated">Bezárás</target> |
10442 | 10754 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/toast/toast.ts</context><context context-type="linenumber">78</context></context-group> | |
10443 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/toast/toast.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 10755 | </trans-unit> |
10444 | <trans-unit id="5210096066382592800" datatype="html"> | 10756 | <trans-unit id="5210096066382592800" datatype="html"> |
10445 | <source>Video to import updated.</source> | 10757 | <source>Video to import updated.</source> |
10446 | <target state="translated">Az importálandó videó frissítve.</target> | 10758 | <target state="translated">Az importálandó videó frissítve.</target> |
10447 | 10759 | <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">142</context></context-group> | |
10448 | 10760 | <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">143</context></context-group> | |
10449 | <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">142</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">143</context></context-group></trans-unit> | 10761 | </trans-unit> |
10450 | <trans-unit id="3284171506518522275" datatype="html"> | 10762 | <trans-unit id="3284171506518522275" datatype="html"> |
10451 | <source>Your video was uploaded to your account and is private.</source> | 10763 | <source>Your video was uploaded to your account and is private.</source> |
10452 | <target state="translated">A videó fel lett töltve a fiókjába, és személyes.</target> | 10764 | <target state="translated">A videó fel lett töltve a fiókjába, és személyes.</target> |
10453 | 10765 | ||
10454 | <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">118</context></context-group></trans-unit> | 10766 | <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">125</context></context-group></trans-unit> |
10455 | <trans-unit id="5699822024600815733" datatype="html"> | 10767 | <trans-unit id="5699822024600815733" datatype="html"> |
10456 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10768 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10457 | <target state="translated">De a kapcsolódó adatok (címkék, leírás, …) el fognak veszni. Biztosan el szeretné hagyni ezt az oldalt?</target> | 10769 | <target state="translated">De a kapcsolódó adatok (címkék, leírás, …) el fognak veszni. Biztosan el szeretné hagyni ezt az oldalt?</target> |
10458 | 10770 | ||
10459 | <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">119</context></context-group></trans-unit> | 10771 | <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> |
10460 | <trans-unit id="1219739004043110649" datatype="html"> | 10772 | <trans-unit id="1219739004043110649" datatype="html"> |
10461 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10773 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10462 | <target state="translated">A videó még nincs feltöltve. Biztosan el szeretné hagyni ezt az oldalt?</target> | 10774 | <target state="translated">A videó még nincs feltöltve. Biztosan el szeretné hagyni ezt az oldalt?</target> |
10463 | 10775 | ||
10464 | <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">121</context></context-group></trans-unit> | 10776 | <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">128</context></context-group></trans-unit> |
10465 | <trans-unit id="6932865105766151309" datatype="html"> | 10777 | <trans-unit id="6932865105766151309" datatype="html"> |
10466 | <source>Upload</source> | 10778 | <source>Upload</source> |
10467 | <target state="translated">Feltöltés</target> | 10779 | <target state="translated">Feltöltés</target> |
10468 | 10780 | ||
10469 | <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">227</context></context-group></trans-unit> | 10781 | <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">234</context></context-group></trans-unit> |
10470 | <trans-unit id="8278735427925094503" datatype="html"> | 10782 | <trans-unit id="8278735427925094503" datatype="html"> |
10471 | <source>Upload <x id="PH"/> </source> | 10783 | <source>Upload <x id="PH"/> </source> |
10472 | <target state="translated"> | 10784 | <target state="translated"> |
10473 | <x id="PH"/> feltöltése | 10785 | <x id="PH"/> feltöltése |
10474 | </target> | 10786 | </target> |
10475 | 10787 | ||
10476 | <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">229</context></context-group></trans-unit> | 10788 | <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">236</context></context-group></trans-unit> |
10477 | |||
10478 | <trans-unit id="5981816353437801748" datatype="html"> | 10789 | <trans-unit id="5981816353437801748" datatype="html"> |
10479 | <source>Video published.</source> | 10790 | <source>Video published.</source> |
10480 | <target state="translated">Videó közzétéve.</target> | 10791 | <target state="translated">Videó közzétéve.</target> |
10481 | 10792 | ||
10482 | <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">251</context></context-group></trans-unit> | 10793 | <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">258</context></context-group></trans-unit> |
10483 | |||
10484 | |||
10485 | <trans-unit id="764164089183618119" datatype="html"> | 10794 | <trans-unit id="764164089183618119" datatype="html"> |
10486 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 10795 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
10487 | <target state="translated">Mentetlen változtatásai vannak. Ha elhagyja ezt az oldalt, akkor a változtatásai el fognak veszni.</target> | 10796 | <target state="translated">Mentetlen változtatásai vannak. Ha elhagyja ezt az oldalt, akkor a változtatásai el fognak veszni.</target> |
10488 | 10797 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">94</context></context-group> | |
10489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit> | 10798 | </trans-unit> |
10490 | <trans-unit id="8306050839443016954" datatype="html"> | 10799 | <trans-unit id="8306050839443016954" datatype="html"> |
10491 | <source>Video updated.</source> | 10800 | <source>Video updated.</source> |
10492 | <target state="translated">Videó frissítve.</target> | 10801 | <target state="translated">Videó frissítve.</target> |
@@ -10500,23 +10809,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10500 | <trans-unit id="6775540171466219199" datatype="html"> | 10809 | <trans-unit id="6775540171466219199" datatype="html"> |
10501 | <source>Stop autoplaying next video</source> | 10810 | <source>Stop autoplaying next video</source> |
10502 | <target state="translated">Következő videó automatikus lejátszásának leállítása</target> | 10811 | <target state="translated">Következő videó automatikus lejátszásának leállítása</target> |
10503 | 10812 | <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">221</context></context-group> | |
10504 | <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">221</context></context-group></trans-unit> | 10813 | </trans-unit> |
10505 | <trans-unit id="5149234672404299151" datatype="html"> | 10814 | <trans-unit id="5149234672404299151" datatype="html"> |
10506 | <source>Autoplay next video</source> | 10815 | <source>Autoplay next video</source> |
10507 | <target state="translated">Következő videó automatikus lejátszása</target> | 10816 | <target state="translated">Következő videó automatikus lejátszása</target> |
10508 | 10817 | <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">222</context></context-group> | |
10509 | <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">222</context></context-group></trans-unit> | 10818 | </trans-unit> |
10510 | <trans-unit id="5870421136141540382" datatype="html"> | 10819 | <trans-unit id="5870421136141540382" datatype="html"> |
10511 | <source>Stop looping playlist videos</source> | 10820 | <source>Stop looping playlist videos</source> |
10512 | <target state="translated">Lejátszási listán lévő videók ismétlésének leállítása</target> | 10821 | <target state="translated">Lejátszási listán lévő videók ismétlésének leállítása</target> |
10513 | 10822 | <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">227</context></context-group> | |
10514 | <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">227</context></context-group></trans-unit> | 10823 | </trans-unit> |
10515 | <trans-unit id="1599585307037758139" datatype="html"> | 10824 | <trans-unit id="1599585307037758139" datatype="html"> |
10516 | <source>Loop playlist videos</source> | 10825 | <source>Loop playlist videos</source> |
10517 | <target state="translated">Lejátszási listán lévő videók ismétlése</target> | 10826 | <target state="translated">Lejátszási listán lévő videók ismétlése</target> |
10518 | 10827 | <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">228</context></context-group> | |
10519 | <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">228</context></context-group></trans-unit> | 10828 | </trans-unit> |
10520 | <trans-unit id="3704292036525161260" datatype="html"> | 10829 | <trans-unit id="3704292036525161260" datatype="html"> |
10521 | <source>Placeholder image</source> | 10830 | <source>Placeholder image</source> |
10522 | <target state="new">Placeholder image</target> | 10831 | <target state="new">Placeholder image</target> |
@@ -10528,28 +10837,28 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10528 | <trans-unit id="961774488937452220" datatype="html"> | 10837 | <trans-unit id="961774488937452220" datatype="html"> |
10529 | <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> | 10838 | <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> |
10530 | <target state="translated">Ez a videó nem érhető el ezen a példányon. Szeretné, hogy átirányítsuk a forráspéldányhoz: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</target> | 10839 | <target state="translated">Ez a videó nem érhető el ezen a példányon. Szeretné, hogy átirányítsuk a forráspéldányhoz: <a href="<x id="PH"/>"><x id="PH_1"/></a>?</target> |
10531 | 10840 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">296</context></context-group> | |
10532 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">296</context></context-group></trans-unit> | 10841 | </trans-unit> |
10533 | <trans-unit id="5761611056224181752" datatype="html"> | 10842 | <trans-unit id="5761611056224181752" datatype="html"> |
10534 | <source>Redirection</source> | 10843 | <source>Redirection</source> |
10535 | <target state="translated">Átirányítás</target> | 10844 | <target state="translated">Átirányítás</target> |
10536 | 10845 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">297</context></context-group> | |
10537 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">297</context></context-group></trans-unit> | 10846 | </trans-unit> |
10538 | <trans-unit id="8858527736400081688" datatype="html"> | 10847 | <trans-unit id="8858527736400081688" datatype="html"> |
10539 | <source>This video contains mature or explicit content. Are you sure you want to watch it?</source> | 10848 | <source>This video contains mature or explicit content. Are you sure you want to watch it?</source> |
10540 | <target state="translated">Ez a videó felnőtt vagy korhatáros tartalmat tartalmaz. Biztosan meg szeretné nézni?</target> | 10849 | <target state="translated">Ez a videó felnőtt vagy korhatáros tartalmat tartalmaz. Biztosan meg szeretné nézni?</target> |
10541 | 10850 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">343</context></context-group> | |
10542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">343</context></context-group></trans-unit> | 10851 | </trans-unit> |
10543 | <trans-unit id="3937119019020041049" datatype="html"> | 10852 | <trans-unit id="3937119019020041049" datatype="html"> |
10544 | <source>Mature or explicit content</source> | 10853 | <source>Mature or explicit content</source> |
10545 | <target state="translated">Felnőtt vagy korhatáros tartalom</target> | 10854 | <target state="translated">Felnőtt vagy korhatáros tartalom</target> |
10546 | 10855 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">344</context></context-group> | |
10547 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 10856 | </trans-unit> |
10548 | <trans-unit id="1755474755114288376" datatype="html"> | 10857 | <trans-unit id="1755474755114288376" datatype="html"> |
10549 | <source>Up Next</source> | 10858 | <source>Up Next</source> |
10550 | <target state="translated">Legközelebb</target> | 10859 | <target state="translated">Legközelebb</target> |
10551 | 10860 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">415</context></context-group> | |
10552 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">415</context></context-group></trans-unit> | 10861 | </trans-unit> |
10553 | <trans-unit id="2159130950882492111" datatype="html"> | 10862 | <trans-unit id="2159130950882492111" datatype="html"> |
10554 | <source>Cancel</source> | 10863 | <source>Cancel</source> |
10555 | <target state="translated">Mégse</target> | 10864 | <target state="translated">Mégse</target> |
@@ -10558,90 +10867,89 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10558 | <trans-unit id="3354816756665089864" datatype="html"> | 10867 | <trans-unit id="3354816756665089864" datatype="html"> |
10559 | <source>Autoplay is suspended</source> | 10868 | <source>Autoplay is suspended</source> |
10560 | <target state="translated">Az automatikus lejátszás fel van függesztve</target> | 10869 | <target state="translated">Az automatikus lejátszás fel van függesztve</target> |
10561 | 10870 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">417</context></context-group> | |
10562 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">417</context></context-group></trans-unit> | 10871 | </trans-unit> |
10563 | <trans-unit id="7895294730547405228" datatype="html"> | 10872 | <trans-unit id="7895294730547405228" datatype="html"> |
10564 | <source>Enter/exit fullscreen (requires player focus)</source> | 10873 | <source>Enter/exit fullscreen (requires player focus)</source> |
10565 | <target state="translated">Teljes képernyőre váltás vagy normál méret (lejátszófókuszt igényel)</target> | 10874 | <target state="translated">Teljes képernyőre váltás vagy normál méret (lejátszófókuszt igényel)</target> |
10566 | 10875 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">688</context></context-group> | |
10567 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">688</context></context-group></trans-unit> | 10876 | </trans-unit> |
10568 | <trans-unit id="7618388257165864759" datatype="html"> | 10877 | <trans-unit id="7618388257165864759" datatype="html"> |
10569 | <source>Play/Pause the video (requires player focus)</source> | 10878 | <source>Play/Pause the video (requires player focus)</source> |
10570 | <target state="translated">A videó lejátszása vagy szüneteltetése (lejátszófókuszt igényel)</target> | 10879 | <target state="translated">A videó lejátszása vagy szüneteltetése (lejátszófókuszt igényel)</target> |
10571 | 10880 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">689</context></context-group> | |
10572 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">689</context></context-group></trans-unit> | 10881 | </trans-unit> |
10573 | <trans-unit id="7761890399634216630" datatype="html"> | 10882 | <trans-unit id="7761890399634216630" datatype="html"> |
10574 | <source>Mute/unmute the video (requires player focus)</source> | 10883 | <source>Mute/unmute the video (requires player focus)</source> |
10575 | <target state="translated">A videó némítása vagy a némítás visszavonása (lejátszófókuszt igényel)</target> | 10884 | <target state="translated">A videó némítása vagy a némítás visszavonása (lejátszófókuszt igényel)</target> |
10576 | 10885 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">690</context></context-group> | |
10577 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">690</context></context-group></trans-unit> | 10886 | </trans-unit> |
10578 | <trans-unit id="5996585232248234904" datatype="html"> | 10887 | <trans-unit id="5996585232248234904" datatype="html"> |
10579 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</source> | 10888 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</source> |
10580 | <target state="translated">Kihagyás a videó százalékáig: a 0 jelentése 0%, a 9 jelentése 90% (lejátszófókuszt igényel)</target> | 10889 | <target state="translated">Kihagyás a videó százalékáig: a 0 jelentése 0%, a 9 jelentése 90% (lejátszófókuszt igényel)</target> |
10581 | 10890 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">692</context></context-group> | |
10582 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">692</context></context-group></trans-unit> | 10891 | </trans-unit> |
10583 | <trans-unit id="3748765405903319998" datatype="html"> | 10892 | <trans-unit id="3748765405903319998" datatype="html"> |
10584 | <source>Increase the volume (requires player focus)</source> | 10893 | <source>Increase the volume (requires player focus)</source> |
10585 | <target state="translated">A hangerő növelése (lejátszófókuszt igényel)</target> | 10894 | <target state="translated">A hangerő növelése (lejátszófókuszt igényel)</target> |
10586 | 10895 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">694</context></context-group> | |
10587 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">694</context></context-group></trans-unit> | 10896 | </trans-unit> |
10588 | <trans-unit id="5810704036407159982" datatype="html"> | 10897 | <trans-unit id="5810704036407159982" datatype="html"> |
10589 | <source>Decrease the volume (requires player focus)</source> | 10898 | <source>Decrease the volume (requires player focus)</source> |
10590 | <target state="translated">A hangerő csökkentése (lejátszófókuszt igényel)</target> | 10899 | <target state="translated">A hangerő csökkentése (lejátszófókuszt igényel)</target> |
10591 | 10900 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">695</context></context-group> | |
10592 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">695</context></context-group></trans-unit> | 10901 | </trans-unit> |
10593 | <trans-unit id="2622048822548065691" datatype="html"> | 10902 | <trans-unit id="2622048822548065691" datatype="html"> |
10594 | <source>Seek the video forward (requires player focus)</source> | 10903 | <source>Seek the video forward (requires player focus)</source> |
10595 | <target state="translated">A videó előretekerése (lejátszófókuszt igényel)</target> | 10904 | <target state="translated">A videó előretekerése (lejátszófókuszt igényel)</target> |
10596 | 10905 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">697</context></context-group> | |
10597 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">697</context></context-group></trans-unit> | 10906 | </trans-unit> |
10598 | <trans-unit id="6540078205109221153" datatype="html"> | 10907 | <trans-unit id="6540078205109221153" datatype="html"> |
10599 | <source>Seek the video backward (requires player focus)</source> | 10908 | <source>Seek the video backward (requires player focus)</source> |
10600 | <target state="translated">A videó visszatekerése (lejátszófókuszt igényel)</target> | 10909 | <target state="translated">A videó visszatekerése (lejátszófókuszt igényel)</target> |
10601 | 10910 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">698</context></context-group> | |
10602 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">698</context></context-group></trans-unit> | 10911 | </trans-unit> |
10603 | <trans-unit id="1956491957766210808" datatype="html"> | 10912 | <trans-unit id="1956491957766210808" datatype="html"> |
10604 | <source>Increase playback rate (requires player focus)</source> | 10913 | <source>Increase playback rate (requires player focus)</source> |
10605 | <target state="translated">Lejátszási sebesség növelése (lejátszófókuszt igényel)</target> | 10914 | <target state="translated">Lejátszási sebesség növelése (lejátszófókuszt igényel)</target> |
10606 | 10915 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">700</context></context-group> | |
10607 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">700</context></context-group></trans-unit> | 10916 | </trans-unit> |
10608 | <trans-unit id="5495529997674803186" datatype="html"> | 10917 | <trans-unit id="5495529997674803186" datatype="html"> |
10609 | <source>Decrease playback rate (requires player focus)</source> | 10918 | <source>Decrease playback rate (requires player focus)</source> |
10610 | <target state="translated">Lejátszási sebesség csökkentése (lejátszófókuszt igényel)</target> | 10919 | <target state="translated">Lejátszási sebesség csökkentése (lejátszófókuszt igényel)</target> |
10611 | 10920 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">701</context></context-group> | |
10612 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">701</context></context-group></trans-unit> | 10921 | </trans-unit> |
10613 | <trans-unit id="3178343147230721210" datatype="html"> | 10922 | <trans-unit id="3178343147230721210" datatype="html"> |
10614 | <source>Navigate in the video frame by frame (requires player focus)</source> | 10923 | <source>Navigate in the video frame by frame (requires player focus)</source> |
10615 | <target state="translated">Navigálás a videóban képkockánként (lejátszófókuszt igényel)</target> | 10924 | <target state="translated">Navigálás a videóban képkockánként (lejátszófókuszt igényel)</target> |
10616 | 10925 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">703</context></context-group> | |
10617 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">703</context></context-group></trans-unit> | 10926 | </trans-unit> |
10618 | <trans-unit id="8025996572234182184" datatype="html"> | 10927 | <trans-unit id="8025996572234182184" datatype="html"> |
10619 | <source>Like the video</source> | 10928 | <source>Like the video</source> |
10620 | <target state="translated">A videó kedvelése</target> | 10929 | <target state="translated">A videó kedvelése</target> |
10621 | 10930 | <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> | |
10622 | <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> | 10931 | </trans-unit> |
10623 | <trans-unit id="7692127636377222448" datatype="html"> | 10932 | <trans-unit id="7692127636377222448" datatype="html"> |
10624 | <source>Dislike the video</source> | 10933 | <source>Dislike the video</source> |
10625 | <target state="translated">A videó nem kedvelése</target> | 10934 | <target state="translated">A videó nem kedvelése</target> |
10626 | 10935 | <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> | |
10627 | <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> | 10936 | </trans-unit> |
10628 | <trans-unit id="1729036051846673606" datatype="html"> | 10937 | <trans-unit id="1729036051846673606" datatype="html"> |
10629 | <source>When active, the next video is automatically played after the current one.</source> | 10938 | <source>When active, the next video is automatically played after the current one.</source> |
10630 | <target state="translated">Ha be van kapcsolva, akkor a következő videó automatikusan lejátszásra kerül a jelenlegi után.</target> | 10939 | <target state="translated">Ha be van kapcsolva, akkor a következő videó automatikusan lejátszásra kerül a jelenlegi után.</target> |
10631 | 10940 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts</context><context context-type="linenumber">61</context></context-group> | |
10632 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> | 10941 | </trans-unit> |
10633 | <trans-unit id="2431286785954354122" datatype="html"> | 10942 | <trans-unit id="2431286785954354122" datatype="html"> |
10634 | <source>Recently added</source> | 10943 | <source>Recently added</source> |
10635 | <target state="translated">Nemrég hozzáadott</target> | 10944 | <target state="translated">Nemrég hozzáadott</target> |
10636 | 10945 | <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> | |
10637 | <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> | 10946 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">137</context></context-group> |
10947 | </trans-unit> | ||
10638 | <trans-unit id="12646164819555880" datatype="html"> | 10948 | <trans-unit id="12646164819555880" datatype="html"> |
10639 | <source>Videos from your subscriptions</source> | 10949 | <source>Videos from your subscriptions</source> |
10640 | <target state="translated">Videók a feliratkozóitól</target> | 10950 | <target state="translated">Videók a feliratkozóitól</target> |
10641 | 10951 | <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> | |
10642 | <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> | 10952 | </trans-unit> |
10643 | |||
10644 | |||
10645 | <trans-unit id="1812379335568847528" datatype="html"> | 10953 | <trans-unit id="1812379335568847528" datatype="html"> |
10646 | <source>Subscriptions</source> | 10954 | <source>Subscriptions</source> |
10647 | <target state="translated">Feliratkozások</target> | 10955 | <target state="translated">Feliratkozások</target> |
@@ -10665,10 +10973,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10665 | <trans-unit id="8681933925782924101" datatype="html"> | 10973 | <trans-unit id="8681933925782924101" datatype="html"> |
10666 | <source>Local videos</source> | 10974 | <source>Local videos</source> |
10667 | <target state="translated">Helyi videók</target> | 10975 | <target state="translated">Helyi videók</target> |
10668 | 10976 | <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> | |
10669 | 10977 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">142</context></context-group> | |
10670 | <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="3037358578603095196" datatype="html"> | 10978 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">143</context></context-group> |
10671 | <source>Only videos uploaded on this instance are displayed</source><target state="new">Only videos uploaded on this instance are displayed</target> | 10979 | </trans-unit> |
10980 | <trans-unit id="3037358578603095196" datatype="html"> | ||
10981 | <source>Only videos uploaded on this instance are displayed</source> | ||
10982 | <target state="new">Only videos uploaded on this instance are displayed</target> | ||
10672 | <context-group purpose="location"> | 10983 | <context-group purpose="location"> |
10673 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> | 10984 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> |
10674 | <context context-type="linenumber">190</context> | 10985 | <context context-type="linenumber">190</context> |
@@ -10677,28 +10988,29 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10677 | <trans-unit id="4668975178372693951" datatype="html"> | 10988 | <trans-unit id="4668975178372693951" datatype="html"> |
10678 | <source>Discover videos</source> | 10989 | <source>Discover videos</source> |
10679 | <target state="translated">Videók felfedezése</target> | 10990 | <target state="translated">Videók felfedezése</target> |
10680 | 10991 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">19</context></context-group> | |
10681 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">19</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> | 10992 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">124</context></context-group> |
10993 | </trans-unit> | ||
10682 | <trans-unit id="8067135025051844577" datatype="html"> | 10994 | <trans-unit id="8067135025051844577" datatype="html"> |
10683 | <source>Trending videos</source> | 10995 | <source>Trending videos</source> |
10684 | <target state="translated">Felkapott videók</target> | 10996 | <target state="translated">Felkapott videók</target> |
10685 | 10997 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">130</context></context-group> | |
10686 | <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> | 10998 | </trans-unit> |
10687 | <trans-unit id="664221386829541948" datatype="html"> | 10999 | <trans-unit id="664221386829541948" datatype="html"> |
10688 | <source>Recently added videos</source> | 11000 | <source>Recently added videos</source> |
10689 | <target state="translated">Nemrég hozzáadott videók</target> | 11001 | <target state="translated">Nemrég hozzáadott videók</target> |
10690 | 11002 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">136</context></context-group> | |
10691 | <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> | 11003 | </trans-unit> |
10692 | <trans-unit id="8212906256415538361" datatype="html"> | 11004 | <trans-unit id="8212906256415538361" datatype="html"> |
10693 | <source>Upload a video</source> | 11005 | <source>Upload a video</source> |
10694 | <target state="translated">Videó feltöltése</target> | 11006 | <target state="translated">Videó feltöltése</target> |
10695 | 11007 | <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">91</context></context-group> | |
10696 | <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">91</context></context-group></trans-unit> | 11008 | </trans-unit> |
10697 | <trans-unit id="7590784934397800835" datatype="html"> | 11009 | <trans-unit id="7590784934397800835" datatype="html"> |
10698 | <source>Edit a video</source> | 11010 | <source>Edit a video</source> |
10699 | <target state="translated">Videó szerkesztése</target> | 11011 | <target state="translated">Videó szerkesztése</target> |
10700 | 11012 | <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">100</context></context-group> | |
10701 | <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">100</context></context-group></trans-unit> | 11013 | </trans-unit> |
10702 | </body> | 11014 | </body> |
10703 | </file> | 11015 | </file> |
10704 | </xliff> | 11016 | </xliff> |
diff --git a/client/src/locale/angular.it-IT.xlf b/client/src/locale/angular.it-IT.xlf index 88370ef60..ec1afdef8 100644 --- a/client/src/locale/angular.it-IT.xlf +++ b/client/src/locale/angular.it-IT.xlf | |||
@@ -237,7 +237,7 @@ | |||
237 | <source>video</source> | 237 | <source>video</source> |
238 | <target state="translated">video</target> | 238 | <target state="translated">video</target> |
239 | 239 | ||
240 | <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">294</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="6438815964972582865" datatype="html"> | 240 | <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">301</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="6438815964972582865" datatype="html"> |
241 | <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> | 241 | <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> |
242 | 242 | ||
243 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> | 243 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> |
@@ -299,10 +299,10 @@ | |||
299 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> | 299 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> |
300 | <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> | 300 | <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> |
301 | 301 | ||
302 | <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">330</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> | 302 | <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">337</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> |
303 | <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> | 303 | <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> |
304 | 304 | ||
305 | <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">349</context></context-group></trans-unit> | 305 | <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">356</context></context-group></trans-unit> |
306 | 306 | ||
307 | <trans-unit id="5235042777215655908" datatype="html"> | 307 | <trans-unit id="5235042777215655908" datatype="html"> |
308 | <source>subtitles</source> | 308 | <source>subtitles</source> |
@@ -315,7 +315,7 @@ | |||
315 | Annulla | 315 | Annulla |
316 | </target> | 316 | </target> |
317 | 317 | ||
318 | <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">48</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> | 318 | <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">48</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">23</context></context-group></trans-unit> |
319 | <trans-unit id="3099741642167775297"> | 319 | <trans-unit id="3099741642167775297"> |
320 | <source>Download</source> | 320 | <source>Download</source> |
321 | <target>Scarica</target> | 321 | <target>Scarica</target> |
@@ -2318,7 +2318,7 @@ The link will expire within 1 hour.</source> | |||
2318 | <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"> | 2318 | <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"> |
2319 | <source>Upload on hold</source><target state="new">Upload on hold</target> | 2319 | <source>Upload on hold</source><target state="new">Upload on hold</target> |
2320 | 2320 | ||
2321 | <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">167</context></context-group></trans-unit> | 2321 | <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">174</context></context-group></trans-unit> |
2322 | <trans-unit id="285180972645018518" datatype="html"> | 2322 | <trans-unit id="285180972645018518" datatype="html"> |
2323 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2323 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2324 | <target state="translated">Spiacente, la funzionalità di upload è disabilitata per il tuo account. Se vuoi aggiungere video, un amministratore deve sbloccare la tua quota.</target> | 2324 | <target state="translated">Spiacente, la funzionalità di upload è disabilitata per il tuo account. Se vuoi aggiungere video, un amministratore deve sbloccare la tua quota.</target> |
@@ -10332,33 +10332,33 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10332 | <source>Your video was uploaded to your account and is private.</source> | 10332 | <source>Your video was uploaded to your account and is private.</source> |
10333 | <target>Il video è stato caricato sul proprio account ed è privato.</target> | 10333 | <target>Il video è stato caricato sul proprio account ed è privato.</target> |
10334 | 10334 | ||
10335 | <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">118</context></context-group></trans-unit> | 10335 | <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">125</context></context-group></trans-unit> |
10336 | <trans-unit id="5699822024600815733"> | 10336 | <trans-unit id="5699822024600815733"> |
10337 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10337 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10338 | <target>I dati associati (tag, descrizione, ...) saranno persi. Chiudere questa pagina ?</target> | 10338 | <target>I dati associati (tag, descrizione, ...) saranno persi. Chiudere questa pagina ?</target> |
10339 | 10339 | ||
10340 | <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">119</context></context-group></trans-unit> | 10340 | <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> |
10341 | <trans-unit id="1219739004043110649"> | 10341 | <trans-unit id="1219739004043110649"> |
10342 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10342 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10343 | <target>Il tuo video non è ancora caricato. Sei sicuro di volere chiudere questa pagina ?</target> | 10343 | <target>Il tuo video non è ancora caricato. Sei sicuro di volere chiudere questa pagina ?</target> |
10344 | 10344 | ||
10345 | <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">121</context></context-group></trans-unit> | 10345 | <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">128</context></context-group></trans-unit> |
10346 | <trans-unit id="6932865105766151309" datatype="html"> | 10346 | <trans-unit id="6932865105766151309" datatype="html"> |
10347 | <source>Upload</source> | 10347 | <source>Upload</source> |
10348 | <target state="translated">Carica</target> | 10348 | <target state="translated">Carica</target> |
10349 | 10349 | ||
10350 | <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">227</context></context-group></trans-unit> | 10350 | <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">234</context></context-group></trans-unit> |
10351 | <trans-unit id="8278735427925094503" datatype="html"> | 10351 | <trans-unit id="8278735427925094503" datatype="html"> |
10352 | <source>Upload <x id="PH"/> </source> | 10352 | <source>Upload <x id="PH"/> </source> |
10353 | <target state="translated">Carica<x id="PH"/> </target> | 10353 | <target state="translated">Carica<x id="PH"/> </target> |
10354 | 10354 | ||
10355 | <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">229</context></context-group></trans-unit> | 10355 | <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">236</context></context-group></trans-unit> |
10356 | 10356 | ||
10357 | <trans-unit id="5981816353437801748"> | 10357 | <trans-unit id="5981816353437801748"> |
10358 | <source>Video published.</source> | 10358 | <source>Video published.</source> |
10359 | <target>Video pubblicato.</target> | 10359 | <target>Video pubblicato.</target> |
10360 | 10360 | ||
10361 | <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">251</context></context-group></trans-unit> | 10361 | <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">258</context></context-group></trans-unit> |
10362 | 10362 | ||
10363 | 10363 | ||
10364 | <trans-unit id="764164089183618119"> | 10364 | <trans-unit id="764164089183618119"> |
diff --git a/client/src/locale/angular.ja-JP.xlf b/client/src/locale/angular.ja-JP.xlf index 6cbd9f77e..b62458684 100644 --- a/client/src/locale/angular.ja-JP.xlf +++ b/client/src/locale/angular.ja-JP.xlf | |||
@@ -5,13 +5,13 @@ | |||
5 | <trans-unit id="219462505467671767" datatype="html"> | 5 | <trans-unit id="219462505467671767" datatype="html"> |
6 | <source>Close the left menu</source> | 6 | <source>Close the left menu</source> |
7 | <target state="translated">メニューを閉じる</target> | 7 | <target state="translated">メニューを閉じる</target> |
8 | 8 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">133</context></context-group> | |
9 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit> | 9 | </trans-unit> |
10 | <trans-unit id="3455550526898419928" datatype="html"> | 10 | <trans-unit id="3455550526898419928" datatype="html"> |
11 | <source>Open the left menu</source> | 11 | <source>Open the left menu</source> |
12 | <target state="translated">メニューを開く</target> | 12 | <target state="translated">メニューを開く</target> |
13 | 13 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">135</context></context-group> | |
14 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit> | 14 | </trans-unit> |
15 | <trans-unit id="9075761896562520962"> | 15 | <trans-unit id="9075761896562520962"> |
16 | <source>You don't have notifications.</source> | 16 | <source>You don't have notifications.</source> |
17 | <target>通知はありません。</target> | 17 | <target>通知はありません。</target> |
@@ -230,9 +230,9 @@ | |||
230 | <trans-unit id="1486537403020619891" datatype="html"> | 230 | <trans-unit id="1486537403020619891" datatype="html"> |
231 | <source>My watch history</source> | 231 | <source>My watch history</source> |
232 | <target state="new">My watch history</target> | 232 | <target state="new">My watch history</target> |
233 | 233 | <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> | |
234 | 234 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">68</context></context-group> | |
235 | <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">68</context></context-group></trans-unit> | 235 | </trans-unit> |
236 | <trans-unit id="5924559757556526785"> | 236 | <trans-unit id="5924559757556526785"> |
237 | <source>Save to</source> | 237 | <source>Save to</source> |
238 | <target>保存</target> | 238 | <target>保存</target> |
@@ -302,22 +302,22 @@ | |||
302 | <trans-unit id="5674286808255988565"> | 302 | <trans-unit id="5674286808255988565"> |
303 | <source>Create</source> | 303 | <source>Create</source> |
304 | <target>作成</target> | 304 | <target>作成</target> |
305 | 305 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
306 | 306 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
307 | 307 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">102</context></context-group> | |
308 | 308 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
309 | 309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
310 | 310 | <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> | |
311 | 311 | <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> | |
312 | 312 | <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> | |
313 | 313 | <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> | |
314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/+my-library/+my-video-channels/my-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-channels/my-video-channel-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-channels/my-video-channel-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-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> | 314 | </trans-unit> |
315 | <trans-unit id="1006562256968398209" datatype="html"> | 315 | <trans-unit id="1006562256968398209" datatype="html"> |
316 | <source>video</source> | 316 | <source>video</source> |
317 | <target state="new">video</target> | 317 | <target state="new">video</target> |
318 | 318 | ||
319 | 319 | ||
320 | <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">294</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> | 320 | <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">301</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> |
321 | <trans-unit id="6438815964972582865" datatype="html"> | 321 | <trans-unit id="6438815964972582865" datatype="html"> |
322 | <source>The following link contains a private token and should not be shared with anyone.</source> | 322 | <source>The following link contains a private token and should not be shared with anyone.</source> |
323 | <target state="new"> The following link contains a private token and should not be shared with anyone. </target> | 323 | <target state="new"> The following link contains a private token and should not be shared with anyone. </target> |
@@ -334,8 +334,8 @@ | |||
334 | <trans-unit id="5235042777215655908" datatype="html"> | 334 | <trans-unit id="5235042777215655908" datatype="html"> |
335 | <source>subtitles</source> | 335 | <source>subtitles</source> |
336 | <target state="translated">字幕</target> | 336 | <target state="translated">字幕</target> |
337 | 337 | <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> | |
338 | <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> | 338 | </trans-unit> |
339 | <trans-unit id="7513076467032912668" datatype="html"> | 339 | <trans-unit id="7513076467032912668" datatype="html"> |
340 | <source>Format</source> | 340 | <source>Format</source> |
341 | <target state="translated">フォーマット</target> | 341 | <target state="translated">フォーマット</target> |
@@ -388,12 +388,12 @@ | |||
388 | <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> | 388 | <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> |
389 | <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> | 389 | <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> |
390 | 390 | ||
391 | <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">330</context></context-group></trans-unit> | 391 | <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">337</context></context-group></trans-unit> |
392 | <trans-unit id="7873395933409147217" datatype="html"> | 392 | <trans-unit id="7873395933409147217" datatype="html"> |
393 | <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> | 393 | <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> |
394 | <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> | 394 | <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> |
395 | 395 | ||
396 | <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">349</context></context-group></trans-unit> | 396 | <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">356</context></context-group></trans-unit> |
397 | <trans-unit id="5235042777215655908" datatype="html"> | 397 | <trans-unit id="5235042777215655908" datatype="html"> |
398 | <source>subtitles</source> | 398 | <source>subtitles</source> |
399 | <target state="translated">字幕</target> | 399 | <target state="translated">字幕</target> |
@@ -406,7 +406,7 @@ | |||
406 | </target> | 406 | </target> |
407 | 407 | ||
408 | 408 | ||
409 | <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">48</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> | 409 | <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">48</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">23</context></context-group></trans-unit> |
410 | <trans-unit id="3099741642167775297"> | 410 | <trans-unit id="3099741642167775297"> |
411 | <source>Download</source> | 411 | <source>Download</source> |
412 | <target>ダウンロード</target> | 412 | <target>ダウンロード</target> |
@@ -429,16 +429,10 @@ | |||
429 | <trans-unit id="834805431202576194" datatype="html"> | 429 | <trans-unit id="834805431202576194" datatype="html"> |
430 | <source>No results.</source> | 430 | <source>No results.</source> |
431 | <target state="new">No results.</target> | 431 | <target state="new">No results.</target> |
432 | 432 | <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> | |
433 | 433 | <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> | |
434 | 434 | <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> | |
435 | 435 | </trans-unit> | |
436 | |||
437 | |||
438 | |||
439 | |||
440 | |||
441 | <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> | ||
442 | <trans-unit id="935187492052582731"> | 436 | <trans-unit id="935187492052582731"> |
443 | <source>Submit</source> | 437 | <source>Submit</source> |
444 | <target>送信</target> | 438 | <target>送信</target> |
@@ -478,8 +472,10 @@ | |||
478 | <source>Blocking this live will automatically terminate the live stream.</source> | 472 | <source>Blocking this live will automatically terminate the live stream.</source> |
479 | <target state="new"> Blocking this live will automatically terminate the live stream. </target> | 473 | <target state="new"> Blocking this live will automatically terminate the live stream. </target> |
480 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">33</context></context-group> | 474 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">33</context></context-group> |
481 | </trans-unit><trans-unit id="2466846716878254816" datatype="html"> | 475 | </trans-unit> |
482 | <source>Element <x id="PH" equiv-text="param"/> not found</source><target state="new">Element <x id="PH" equiv-text="param"/> not found</target> | 476 | <trans-unit id="2466846716878254816" datatype="html"> |
477 | <source>Element <x id="PH" equiv-text="param"/> not found</source> | ||
478 | <target state="new">Element <x id="PH" equiv-text="param"/> not found</target> | ||
483 | <context-group purpose="location"> | 479 | <context-group purpose="location"> |
484 | <context context-type="sourcefile">src/app/shared/shared-search/find-in-bulk.service.ts</context> | 480 | <context context-type="sourcefile">src/app/shared/shared-search/find-in-bulk.service.ts</context> |
485 | <context context-type="linenumber">80</context> | 481 | <context context-type="linenumber">80</context> |
@@ -537,8 +533,8 @@ | |||
537 | <trans-unit id="3267631941074558910" datatype="html"> | 533 | <trans-unit id="3267631941074558910" datatype="html"> |
538 | <source>Cannot fetch information of this remote account</source> | 534 | <source>Cannot fetch information of this remote account</source> |
539 | <target state="translated">リモートアカウントの情報を読み込むことができません</target> | 535 | <target state="translated">リモートアカウントの情報を読み込むことができません</target> |
540 | 536 | <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> | |
541 | <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> | 537 | </trans-unit> |
542 | <trans-unit id="9081463435738465430" datatype="html"> | 538 | <trans-unit id="9081463435738465430" datatype="html"> |
543 | <source>Blocked</source> | 539 | <source>Blocked</source> |
544 | <target state="needs-translation">Blocked</target> | 540 | <target state="needs-translation">Blocked</target> |
@@ -554,9 +550,9 @@ | |||
554 | <target>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { | 550 | <target>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { |
555 | <x id="INTERPOLATION" equiv-text="{{ playlist.videosLength }}"/> videos} } | 551 | <x id="INTERPOLATION" equiv-text="{{ playlist.videosLength }}"/> videos} } |
556 | </target> | 552 | </target> |
557 | 553 | <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">32</context></context-group> | |
558 | 554 | <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> | |
559 | <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">32</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> | 555 | </trans-unit> |
560 | <trans-unit id="7708270344948043036"> | 556 | <trans-unit id="7708270344948043036"> |
561 | <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> | 557 | <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> |
562 | <target> | 558 | <target> |
@@ -589,13 +585,11 @@ | |||
589 | <trans-unit id="3768927257183755959"> | 585 | <trans-unit id="3768927257183755959"> |
590 | <source>Save</source> | 586 | <source>Save</source> |
591 | <target>保存</target> | 587 | <target>保存</target> |
592 | 588 | <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> | |
593 | 589 | <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> | |
594 | 590 | <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> | |
595 | 591 | <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">82</context></context-group> | |
596 | 592 | </trans-unit> | |
597 | |||
598 | <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">82</context></context-group></trans-unit> | ||
599 | <trans-unit id="8890926675057871150"> | 593 | <trans-unit id="8890926675057871150"> |
600 | <source>Delete from <x id="INTERPOLATION"/></source> | 594 | <source>Delete from <x id="INTERPOLATION"/></source> |
601 | <target><x id="INTERPOLATION"/>から削除</target> | 595 | <target><x id="INTERPOLATION"/>から削除</target> |
@@ -613,40 +607,39 @@ | |||
613 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> | 607 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> |
614 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> | 608 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> |
615 | </trans-unit> | 609 | </trans-unit> |
616 | |||
617 | <trans-unit id="3594371452042277118" datatype="html"> | 610 | <trans-unit id="3594371452042277118" datatype="html"> |
618 | <source>Videos with the most interactions for recent videos, minus user history</source> | 611 | <source>Videos with the most interactions for recent videos, minus user history</source> |
619 | <target state="new">Videos with the most interactions for recent videos, minus user history</target> | 612 | <target state="new">Videos with the most interactions for recent videos, minus user history</target> |
620 | 613 | <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> | |
621 | <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> | 614 | </trans-unit> |
622 | <trans-unit id="7022070615528435141"> | 615 | <trans-unit id="7022070615528435141"> |
623 | <source>Delete</source> | 616 | <source>Delete</source> |
624 | <target>削除</target> | 617 | <target>削除</target> |
625 | 618 | <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> | |
626 | 619 | <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">88</context></context-group> | |
627 | 620 | <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">92</context></context-group> | |
628 | 621 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">95</context></context-group> | |
629 | 622 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">164</context></context-group> | |
630 | 623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">81</context></context-group> | |
631 | 624 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">195</context></context-group> | |
632 | 625 | <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> | |
633 | 626 | <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> | |
634 | 627 | <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> | |
635 | 628 | <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> | |
636 | 629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">117</context></context-group> | |
637 | 630 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">144</context></context-group> | |
638 | 631 | <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> | |
639 | 632 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">178</context></context-group> | |
640 | 633 | <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> | |
641 | 634 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">145</context></context-group> | |
642 | 635 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">388</context></context-group> | |
643 | 636 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">423</context></context-group> | |
644 | 637 | <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> | |
645 | 638 | <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> | |
646 | 639 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">87</context></context-group> | |
647 | 640 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">208</context></context-group> | |
648 | 641 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">308</context></context-group> | |
649 | <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">88</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">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">164</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">81</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">195</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">117</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">144</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">185</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">178</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">145</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">388</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">423</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-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">87</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">208</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">308</context></context-group></trans-unit> | 642 | </trans-unit> |
650 | <trans-unit id="158575725114802951" datatype="html"> | 643 | <trans-unit id="158575725114802951" datatype="html"> |
651 | <source>Only live videos</source> | 644 | <source>Only live videos</source> |
652 | <target state="translated">ライブ動画のみ</target> | 645 | <target state="translated">ライブ動画のみ</target> |
@@ -677,11 +670,12 @@ | |||
677 | <trans-unit id="8461609631969932886" datatype="html"> | 670 | <trans-unit id="8461609631969932886" datatype="html"> |
678 | <source>Hide</source> | 671 | <source>Hide</source> |
679 | <target state="new">Hide</target> | 672 | <target state="new">Hide</target> |
680 | 673 | <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> | |
681 | 674 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.html</context><context context-type="linenumber">11</context></context-group> | |
682 | 675 | <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> | |
683 | 676 | <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> | |
684 | <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/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> | 677 | <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> |
678 | </trans-unit> | ||
685 | <trans-unit id="8461842260159597706" datatype="html"> | 679 | <trans-unit id="8461842260159597706" datatype="html"> |
686 | <source>Show</source> | 680 | <source>Show</source> |
687 | <target state="new">Show</target> | 681 | <target state="new">Show</target> |
@@ -726,7 +720,6 @@ | |||
726 | <target>ローカルアカウントで登録する</target> | 720 | <target>ローカルアカウントで登録する</target> |
727 | <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> | 721 | <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> |
728 | </trans-unit> | 722 | </trans-unit> |
729 | |||
730 | <trans-unit id="7639191791633609999" datatype="html"> | 723 | <trans-unit id="7639191791633609999" datatype="html"> |
731 | <source>The live stream will be automatically terminated.</source> | 724 | <source>The live stream will be automatically terminated.</source> |
732 | <target state="translated">ライブ配信は自動的に終了します。</target> | 725 | <target state="translated">ライブ配信は自動的に終了します。</target> |
@@ -877,8 +870,9 @@ | |||
877 | <trans-unit id="2906587845957718064"> | 870 | <trans-unit id="2906587845957718064"> |
878 | <source>Local</source> | 871 | <source>Local</source> |
879 | <target>ローカル</target> | 872 | <target>ローカル</target> |
880 | 873 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">4</context></context-group> | |
881 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.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-filters.model.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> | 874 | <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> |
875 | </trans-unit> | ||
882 | <trans-unit id="1670306451865226564" datatype="html"> | 876 | <trans-unit id="1670306451865226564" datatype="html"> |
883 | <source>users</source> | 877 | <source>users</source> |
884 | <target state="translated">ユーザー</target> | 878 | <target state="translated">ユーザー</target> |
@@ -953,42 +947,42 @@ | |||
953 | <trans-unit id="2605931708025789621" datatype="html"> | 947 | <trans-unit id="2605931708025789621" datatype="html"> |
954 | <source>The upload failed</source> | 948 | <source>The upload failed</source> |
955 | <target state="translated">アップロードに失敗しました</target> | 949 | <target state="translated">アップロードに失敗しました</target> |
956 | 950 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">12</context></context-group> | |
957 | <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> | 951 | </trans-unit> |
958 | <trans-unit id="1447760976255144968" datatype="html"> | 952 | <trans-unit id="1447760976255144968" datatype="html"> |
959 | <source>The connection was interrupted</source> | 953 | <source>The connection was interrupted</source> |
960 | <target state="new">The connection was interrupted</target> | 954 | <target state="new">The connection was interrupted</target> |
961 | 955 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">16</context></context-group> | |
962 | <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> | 956 | </trans-unit> |
963 | <trans-unit id="4499233456830047129" datatype="html"> | 957 | <trans-unit id="4499233456830047129" datatype="html"> |
964 | <source>The server encountered an error</source> | 958 | <source>The server encountered an error</source> |
965 | <target state="new">The server encountered an error</target> | 959 | <target state="new">The server encountered an error</target> |
966 | 960 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">19</context></context-group> | |
967 | <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> | 961 | </trans-unit> |
968 | <trans-unit id="3334825601859787496" datatype="html"> | 962 | <trans-unit id="3334825601859787496" datatype="html"> |
969 | <source>Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</source> | 963 | <source>Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</source> |
970 | <target state="new">Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</target> | 964 | <target state="new">Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</target> |
971 | 965 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">22</context></context-group> | |
972 | <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> | 966 | </trans-unit> |
973 | <trans-unit id="8530934870279569179" datatype="html"> | 967 | <trans-unit id="8530934870279569179" datatype="html"> |
974 | <source>Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</source> | 968 | <source>Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</source> |
975 | <target state="new">Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</target> | 969 | <target state="new">Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</target> |
976 | 970 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">26</context></context-group> | |
977 | <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> | 971 | </trans-unit> |
978 | <trans-unit id="2392488717875840729" datatype="html"> | 972 | <trans-unit id="2392488717875840729" datatype="html"> |
979 | <source>User</source> | 973 | <source>User</source> |
980 | <target state="new">User</target> | 974 | <target state="new">User</target> |
981 | 975 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group> | |
982 | 976 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">27</context></context-group> | |
983 | 977 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group> | |
984 | <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">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group></trans-unit> | 978 | </trans-unit> |
985 | <trans-unit id="4209525355702493436"> | 979 | <trans-unit id="4209525355702493436"> |
986 | <source>Ban</source> | 980 | <source>Ban</source> |
987 | <target>BAN</target> | 981 | <target>BAN</target> |
988 | 982 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">87</context></context-group> | |
989 | 983 | <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> | |
990 | 984 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">271</context></context-group> | |
991 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">87</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-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">271</context></context-group></trans-unit> | 985 | </trans-unit> |
992 | <trans-unit id="7908493851025027368"> | 986 | <trans-unit id="7908493851025027368"> |
993 | <source>A banned user will no longer be able to login.</source> | 987 | <source>A banned user will no longer be able to login.</source> |
994 | <target> | 988 | <target> |
@@ -999,26 +993,26 @@ | |||
999 | <trans-unit id="2159130950882492111"> | 993 | <trans-unit id="2159130950882492111"> |
1000 | <source>Cancel</source> | 994 | <source>Cancel</source> |
1001 | <target>キャンセル</target> | 995 | <target>キャンセル</target> |
1002 | 996 | <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> | |
1003 | 997 | <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> | |
1004 | 998 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">121</context></context-group> | |
1005 | 999 | <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> | |
1006 | 1000 | <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> | |
1007 | 1001 | <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> | |
1008 | 1002 | <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> | |
1009 | 1003 | <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> | |
1010 | 1004 | <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> | |
1011 | 1005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">416</context></context-group> | |
1012 | 1006 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.html</context><context context-type="linenumber">20</context></context-group> | |
1013 | 1007 | <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> | |
1014 | 1008 | <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> | |
1015 | 1009 | <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> | |
1016 | 1010 | <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> | |
1017 | 1011 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">92</context></context-group> | |
1018 | 1012 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">26</context></context-group> | |
1019 | 1013 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">38</context></context-group> | |
1020 | 1014 | <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> | |
1021 | <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">121</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-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/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">416</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">92</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">26</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">38</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> | 1015 | </trans-unit> |
1022 | <trans-unit id="3616223838716839702"> | 1016 | <trans-unit id="3616223838716839702"> |
1023 | <source>Ban this user</source> | 1017 | <source>Ban this user</source> |
1024 | <target>このユーザーをBANする</target> | 1018 | <target>このユーザーをBANする</target> |
@@ -1263,8 +1257,8 @@ The link will expire within 1 hour.</source> | |||
1263 | <source>Signup</source> | 1257 | <source>Signup</source> |
1264 | <target state="translated">アカウント作成</target> | 1258 | <target state="translated">アカウント作成</target> |
1265 | <note priority="1" from="description">Button on the registration form to finalize the account and channel creation</note> | 1259 | <note priority="1" from="description">Button on the registration form to finalize the account and channel creation</note> |
1266 | 1260 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">67</context></context-group> | |
1267 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 1261 | </trans-unit> |
1268 | <trans-unit id="5340005218109333045"> | 1262 | <trans-unit id="5340005218109333045"> |
1269 | <source>Filters <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> | 1263 | <source>Filters <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> |
1270 | <target>フィルタ <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></target> | 1264 | <target>フィルタ <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></target> |
@@ -1287,58 +1281,58 @@ The link will expire within 1 hour.</source> | |||
1287 | <trans-unit id="1516969129397662377" datatype="html"> | 1281 | <trans-unit id="1516969129397662377" datatype="html"> |
1288 | <source>Welcome to PeerTube, dear administrator!</source> | 1282 | <source>Welcome to PeerTube, dear administrator!</source> |
1289 | <target state="translated">管理者の方、PeerTubeへようこそ!</target> | 1283 | <target state="translated">管理者の方、PeerTubeへようこそ!</target> |
1290 | 1284 | <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> | |
1291 | <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> | 1285 | </trans-unit> |
1292 | <trans-unit id="807030720531713957" datatype="html"> | 1286 | <trans-unit id="807030720531713957" datatype="html"> |
1293 | <source>CLI documentation</source> | 1287 | <source>CLI documentation</source> |
1294 | <target state="translated">CLIドキュメント</target> | 1288 | <target state="translated">CLIドキュメント</target> |
1295 | 1289 | <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> | |
1296 | <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> | 1290 | </trans-unit> |
1297 | <trans-unit id="199127249622290422" datatype="html"> | 1291 | <trans-unit id="199127249622290422" datatype="html"> |
1298 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> | 1292 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> |
1299 | <target state="new">Upload or import videos, parse logs, prune storage directories, reset user password...</target> | 1293 | <target state="new">Upload or import videos, parse logs, prune storage directories, reset user password...</target> |
1300 | 1294 | <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> | |
1301 | <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> | 1295 | </trans-unit> |
1302 | <trans-unit id="249453844439446209" datatype="html"> | 1296 | <trans-unit id="249453844439446209" datatype="html"> |
1303 | <source>Administer documentation</source> | 1297 | <source>Administer documentation</source> |
1304 | <target state="translated">運営者向けドキュメント</target> | 1298 | <target state="translated">運営者向けドキュメント</target> |
1305 | 1299 | <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> | |
1306 | <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> | 1300 | </trans-unit> |
1307 | <trans-unit id="5910950876330656326" datatype="html"> | 1301 | <trans-unit id="5910950876330656326" datatype="html"> |
1308 | <source>Managing users, following other instances, dealing with spammers...</source> | 1302 | <source>Managing users, following other instances, dealing with spammers...</source> |
1309 | <target state="new">Managing users, following other instances, dealing with spammers...</target> | 1303 | <target state="new">Managing users, following other instances, dealing with spammers...</target> |
1310 | 1304 | <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> | |
1311 | <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> | 1305 | </trans-unit> |
1312 | <trans-unit id="879127294610588497" datatype="html"> | 1306 | <trans-unit id="879127294610588497" datatype="html"> |
1313 | <source>Use documentation</source> | 1307 | <source>Use documentation</source> |
1314 | <target state="translated">ドキュメントを利用する</target> | 1308 | <target state="translated">ドキュメントを利用する</target> |
1315 | 1309 | <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> | |
1316 | <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> | 1310 | </trans-unit> |
1317 | <trans-unit id="3848077896245199337" datatype="html"> | 1311 | <trans-unit id="3848077896245199337" datatype="html"> |
1318 | <source>Setup your account, managing video playlists, discover third-party applications...</source> | 1312 | <source>Setup your account, managing video playlists, discover third-party applications...</source> |
1319 | <target state="new">Setup your account, managing video playlists, discover third-party applications...</target> | 1313 | <target state="new">Setup your account, managing video playlists, discover third-party applications...</target> |
1320 | 1314 | <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> | |
1321 | <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> | 1315 | </trans-unit> |
1322 | <trans-unit id="6284442506490785579" datatype="html"> | 1316 | <trans-unit id="6284442506490785579" datatype="html"> |
1323 | <source>Useful links</source> | 1317 | <source>Useful links</source> |
1324 | <target state="translated">便利なリンク集</target> | 1318 | <target state="translated">便利なリンク集</target> |
1325 | 1319 | <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> | |
1326 | <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> | 1320 | </trans-unit> |
1327 | <trans-unit id="5170617864166788170" datatype="html"> | 1321 | <trans-unit id="5170617864166788170" datatype="html"> |
1328 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> | 1322 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> |
1329 | <target state="translated">PeerTube公式ウェブサイト(ニュース、サポート、コントリビュートなど): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></target> | 1323 | <target state="translated">PeerTube公式ウェブサイト(ニュース、サポート、コントリビュートなど): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></target> |
1330 | 1324 | <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> | |
1331 | <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> | 1325 | </trans-unit> |
1332 | <trans-unit id="4614992717645869756" datatype="html"> | 1326 | <trans-unit id="4614992717645869756" datatype="html"> |
1333 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> | 1327 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> |
1334 | <target state="translated">あなたのインスタンスをPeerTubeの公開インデックスに加える:<x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></target> | 1328 | <target state="translated">あなたのインスタンスをPeerTubeの公開インデックスに加える:<x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></target> |
1335 | 1329 | <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> | |
1336 | <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> | 1330 | </trans-unit> |
1337 | <trans-unit id="2081626998027585315" datatype="html"> | 1331 | <trans-unit id="2081626998027585315" datatype="html"> |
1338 | <source>It's time to configure your instance!</source> | 1332 | <source>It's time to configure your instance!</source> |
1339 | <target state="translated">あなたのインスタンスの設定を行いましょう!</target> | 1333 | <target state="translated">あなたのインスタンスの設定を行いましょう!</target> |
1340 | 1334 | <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> | |
1341 | <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> | 1335 | </trans-unit> |
1342 | <trans-unit id="5083058563861587027" datatype="html"> | 1336 | <trans-unit id="5083058563861587027" datatype="html"> |
1343 | <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> | 1337 | <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> |
1344 | <target state="new"> | 1338 | <target state="new"> |
@@ -1359,26 +1353,29 @@ The link will expire within 1 hour.</source> | |||
1359 | is very important for visitors to understand on what type of instance they are. | 1353 | is very important for visitors to understand on what type of instance they are. |
1360 | 1354 | ||
1361 | </target> | 1355 | </target> |
1362 | 1356 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">58</context></context-group> | |
1363 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 1357 | </trans-unit> |
1364 | <trans-unit id="5329436244765769292" datatype="html"> | 1358 | <trans-unit id="5329436244765769292" datatype="html"> |
1365 | <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> | 1359 | <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> |
1366 | <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> | 1360 | <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> |
1367 | 1361 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">64</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">64</context></context-group></trans-unit> | 1362 | </trans-unit> |
1369 | <trans-unit id="5704345824323933019" datatype="html"> | 1363 | <trans-unit id="5704345824323933019" datatype="html"> |
1370 | <source>Remind me later</source> | 1364 | <source>Remind me later</source> |
1371 | <target state="translated">後ほど通知させる</target> | 1365 | <target state="translated">後ほど通知させる</target> |
1372 | 1366 | <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> | |
1373 | <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/admin-welcome-modal.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit><trans-unit id="7997432701743294657" datatype="html"> | 1367 | <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> |
1374 | <source> Set up </source><target state="new"> Set up </target> | 1368 | </trans-unit> |
1375 | 1369 | <trans-unit id="7997432701743294657" datatype="html"> | |
1376 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 1370 | <source>Set up</source> |
1371 | <target state="new"> Set up </target> | ||
1372 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">35</context></context-group> | ||
1373 | </trans-unit> | ||
1377 | <trans-unit id="9202089339019827574" datatype="html"> | 1374 | <trans-unit id="9202089339019827574" datatype="html"> |
1378 | <source>Configure my instance</source> | 1375 | <source>Configure my instance</source> |
1379 | <target state="translated">インスタンスの設定をする</target> | 1376 | <target state="translated">インスタンスの設定をする</target> |
1380 | 1377 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">81</context></context-group> | |
1381 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit> | 1378 | </trans-unit> |
1382 | <trans-unit id="9005121595859995793" datatype="html"> | 1379 | <trans-unit id="9005121595859995793" datatype="html"> |
1383 | <source>Configuration warning!</source> | 1380 | <source>Configuration warning!</source> |
1384 | <target state="new">Configuration warning!</target> | 1381 | <target state="new">Configuration warning!</target> |
@@ -1560,11 +1557,11 @@ The link will expire within 1 hour.</source> | |||
1560 | <trans-unit id="3058024914967508975" datatype="html"> | 1557 | <trans-unit id="3058024914967508975" datatype="html"> |
1561 | <source>My videos</source> | 1558 | <source>My videos</source> |
1562 | <target state="translated">自分の動画</target> | 1559 | <target state="translated">自分の動画</target> |
1563 | 1560 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">76</context></context-group> | |
1564 | 1561 | <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> | |
1565 | 1562 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">71</context></context-group> | |
1566 | 1563 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">77</context></context-group> | |
1567 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">76</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">71</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> | 1564 | </trans-unit> |
1568 | <trans-unit id="3108704604266608109" datatype="html"> | 1565 | <trans-unit id="3108704604266608109" datatype="html"> |
1569 | <source>My video imports</source> | 1566 | <source>My video imports</source> |
1570 | <target state="translated">自分がインポートした動画</target> | 1567 | <target state="translated">自分がインポートした動画</target> |
@@ -1592,9 +1589,11 @@ The link will expire within 1 hour.</source> | |||
1592 | <trans-unit id="8936704404804793618"> | 1589 | <trans-unit id="8936704404804793618"> |
1593 | <source>Videos</source> | 1590 | <source>Videos</source> |
1594 | <target>動画</target> | 1591 | <target>動画</target> |
1595 | 1592 | <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> | |
1596 | 1593 | <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> | |
1597 | <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/+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/+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> | 1594 | <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> |
1595 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">76</context></context-group> | ||
1596 | </trans-unit> | ||
1598 | <trans-unit id="2689878465089314112" datatype="html"> | 1597 | <trans-unit id="2689878465089314112" datatype="html"> |
1599 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> | 1598 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> |
1600 | <target state="translated">言語: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | 1599 | <target state="translated">言語: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> |
@@ -1609,11 +1608,11 @@ The link will expire within 1 hour.</source> | |||
1609 | <trans-unit id="1812379335568847528"> | 1608 | <trans-unit id="1812379335568847528"> |
1610 | <source>Subscriptions</source> | 1609 | <source>Subscriptions</source> |
1611 | <target>登録チャンネル</target> | 1610 | <target>登録チャンネル</target> |
1612 | 1611 | <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> | |
1613 | 1612 | <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> | |
1614 | 1613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">58</context></context-group> | |
1615 | 1614 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">91</context></context-group> | |
1616 | <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><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">58</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> | 1615 | </trans-unit> |
1617 | <trans-unit id="186236568870281953"> | 1616 | <trans-unit id="186236568870281953"> |
1618 | <source>History</source> | 1617 | <source>History</source> |
1619 | <target>履歴</target> | 1618 | <target>履歴</target> |
@@ -1623,10 +1622,10 @@ The link will expire within 1 hour.</source> | |||
1623 | <trans-unit id="1504521795586863905" datatype="html"> | 1622 | <trans-unit id="1504521795586863905" datatype="html"> |
1624 | <source>VIDEOS</source> | 1623 | <source>VIDEOS</source> |
1625 | <target state="translated">動画</target> | 1624 | <target state="translated">動画</target> |
1626 | 1625 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">82</context></context-group> | |
1627 | 1626 | <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">215</context></context-group> | |
1628 | 1627 | <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> | |
1629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">82</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">215</context></context-group><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></trans-unit> | 1628 | </trans-unit> |
1630 | <trans-unit id="667372110624203230" datatype="html"> | 1629 | <trans-unit id="667372110624203230" datatype="html"> |
1631 | <source>Import jobs concurrency</source> | 1630 | <source>Import jobs concurrency</source> |
1632 | <target state="new">Import jobs concurrency</target> | 1631 | <target state="new">Import jobs concurrency</target> |
@@ -1667,9 +1666,9 @@ The link will expire within 1 hour.</source> | |||
1667 | <trans-unit id="7922989125096435449" datatype="html"> | 1666 | <trans-unit id="7922989125096435449" datatype="html"> |
1668 | <source>Contact</source> | 1667 | <source>Contact</source> |
1669 | <target state="translated">連絡先</target> | 1668 | <target state="translated">連絡先</target> |
1670 | 1669 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">36</context></context-group> | |
1671 | 1670 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">136</context></context-group> | |
1672 | <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">136</context></context-group></trans-unit> | 1671 | </trans-unit> |
1673 | <trans-unit id="403762424689874454"> | 1672 | <trans-unit id="403762424689874454"> |
1674 | <source>View your notifications</source> | 1673 | <source>View your notifications</source> |
1675 | <target>通知を表示</target> | 1674 | <target>通知を表示</target> |
@@ -1701,23 +1700,35 @@ The link will expire within 1 hour.</source> | |||
1701 | <source>See all your notifications</source> | 1700 | <source>See all your notifications</source> |
1702 | <target>通知をすべて見る</target> | 1701 | <target>通知をすべて見る</target> |
1703 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">49</context></context-group> | 1702 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">49</context></context-group> |
1704 | </trans-unit><trans-unit id="5108072242786374364" datatype="html"> | 1703 | </trans-unit> |
1705 | <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> | 1704 | <trans-unit id="5108072242786374364" datatype="html"> |
1706 | 1705 | <source>Welcome to <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, dear user!</source> | |
1707 | <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"> | 1706 | <target state="new">Welcome to <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, dear user!</target> |
1708 | <source>It's time to set up your account profile!</source><target state="new">It's time to set up your account profile!</target> | 1707 | <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> |
1709 | 1708 | </trans-unit> | |
1710 | <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"> | 1709 | <trans-unit id="8821712929823045567" datatype="html"> |
1711 | <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> | 1710 | <source>It's time to set up your account profile!</source> |
1712 | 1711 | <target state="new">It's time to set up your account profile!</target> | |
1713 | <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"> | 1712 | <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> |
1714 | <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> | 1713 | </trans-unit> |
1715 | 1714 | <trans-unit id="7239874680342223476" datatype="html"> | |
1716 | <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"> | 1715 | <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> |
1717 | <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> | 1716 | <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> |
1718 | 1717 | <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> | |
1719 | <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"> | 1718 | </trans-unit> |
1720 | <source>Don't show me this anymore</source><target state="new">Don't show me this anymore</target> | 1719 | <trans-unit id="5856432243446401016" datatype="html"> |
1720 | <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> | ||
1721 | <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> | ||
1722 | <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> | ||
1723 | </trans-unit> | ||
1724 | <trans-unit id="3221645359464920754" datatype="html"> | ||
1725 | <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> | ||
1726 | <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> | ||
1727 | <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> | ||
1728 | </trans-unit> | ||
1729 | <trans-unit id="2218100934178971211" datatype="html"> | ||
1730 | <source>Don't show me this anymore</source> | ||
1731 | <target state="new">Don't show me this anymore</target> | ||
1721 | <context-group purpose="location"> | 1732 | <context-group purpose="location"> |
1722 | <context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context> | 1733 | <context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context> |
1723 | <context context-type="linenumber">23</context> | 1734 | <context context-type="linenumber">23</context> |
@@ -1820,8 +1831,8 @@ The link will expire within 1 hour.</source> | |||
1820 | <trans-unit id="2971365540217107489" datatype="html"> | 1831 | <trans-unit id="2971365540217107489" datatype="html"> |
1821 | <source>Media is too large for the server. Please contact you administrator if you want to increase the limit size.</source> | 1832 | <source>Media is too large for the server. Please contact you administrator if you want to increase the limit size.</source> |
1822 | <target state="needs-translation">Media is too large for the server. Please contact you administrator if you want to increase the limit size.</target> | 1833 | <target state="needs-translation">Media is too large for the server. Please contact you administrator if you want to increase the limit size.</target> |
1823 | 1834 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">65</context></context-group> | |
1824 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">65</context></context-group></trans-unit> | 1835 | </trans-unit> |
1825 | <trans-unit id="5131854469652959713" datatype="html"> | 1836 | <trans-unit id="5131854469652959713" datatype="html"> |
1826 | <source>GLOBAL SEARCH</source> | 1837 | <source>GLOBAL SEARCH</source> |
1827 | <target state="translated">グローバル検索</target> | 1838 | <target state="translated">グローバル検索</target> |
@@ -1927,15 +1938,19 @@ The link will expire within 1 hour.</source> | |||
1927 | <trans-unit id="2180217594100853008" datatype="html"> | 1938 | <trans-unit id="2180217594100853008" datatype="html"> |
1928 | <source>Live videos</source> | 1939 | <source>Live videos</source> |
1929 | <target state="new">Live videos</target> | 1940 | <target state="new">Live videos</target> |
1930 | 1941 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">29</context></context-group> | |
1931 | 1942 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">64</context></context-group> | |
1932 | <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/+search/search-filters.component.ts</context><context context-type="linenumber">64</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">158</context></context-group></trans-unit> | 1943 | <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> |
1944 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">158</context></context-group> | ||
1945 | </trans-unit> | ||
1933 | <trans-unit id="2392481201920342009" datatype="html"> | 1946 | <trans-unit id="2392481201920342009" datatype="html"> |
1934 | <source>VOD videos</source> | 1947 | <source>VOD videos</source> |
1935 | <target state="new">VOD videos</target> | 1948 | <target state="new">VOD videos</target> |
1936 | 1949 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">34</context></context-group> | |
1937 | 1950 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">60</context></context-group> | |
1938 | <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/+search/search-filters.component.ts</context><context context-type="linenumber">60</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">164</context></context-group></trans-unit> | 1951 | <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> |
1952 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">164</context></context-group> | ||
1953 | </trans-unit> | ||
1939 | <trans-unit id="7970752988844762769"> | 1954 | <trans-unit id="7970752988844762769"> |
1940 | <source>Published date</source> | 1955 | <source>Published date</source> |
1941 | <target>投稿日</target> | 1956 | <target>投稿日</target> |
@@ -2123,14 +2138,14 @@ The link will expire within 1 hour.</source> | |||
2123 | <trans-unit id="6179532215548637839" datatype="html"> | 2138 | <trans-unit id="6179532215548637839" datatype="html"> |
2124 | <source>extensions</source> | 2139 | <source>extensions</source> |
2125 | <target state="new">extensions</target> | 2140 | <target state="new">extensions</target> |
2126 | 2141 | <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> | |
2127 | <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> | 2142 | </trans-unit> |
2128 | <trans-unit id="8054921481196967348" datatype="html"> | 2143 | <trans-unit id="8054921481196967348" datatype="html"> |
2129 | <source>This image is too large.</source> | 2144 | <source>This image is too large.</source> |
2130 | <target state="translated">このイメージはサイズが大きすぎます。</target> | 2145 | <target state="translated">このイメージはサイズが大きすぎます。</target> |
2131 | 2146 | <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> | |
2132 | 2147 | <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> | |
2133 | <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> | 2148 | </trans-unit> |
2134 | <trans-unit id="6259523075362402245" datatype="html"> | 2149 | <trans-unit id="6259523075362402245" datatype="html"> |
2135 | <source>Upload a new banner</source> | 2150 | <source>Upload a new banner</source> |
2136 | <target state="translated">新しいバナーをアップロードする</target> | 2151 | <target state="translated">新しいバナーをアップロードする</target> |
@@ -2155,13 +2170,13 @@ The link will expire within 1 hour.</source> | |||
2155 | <trans-unit id="3220184757632006830" datatype="html"> | 2170 | <trans-unit id="3220184757632006830" datatype="html"> |
2156 | <source>Account avatar</source> | 2171 | <source>Account avatar</source> |
2157 | <target state="translated">アカウントのアバター</target> | 2172 | <target state="translated">アカウントのアバター</target> |
2158 | 2173 | <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> | |
2159 | <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> | 2174 | </trans-unit> |
2160 | <trans-unit id="1138964882426023395" datatype="html"> | 2175 | <trans-unit id="1138964882426023395" datatype="html"> |
2161 | <source>Channel avatar</source> | 2176 | <source>Channel avatar</source> |
2162 | <target state="translated">チャンネルのアバター</target> | 2177 | <target state="translated">チャンネルのアバター</target> |
2163 | 2178 | <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> | |
2164 | <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> | 2179 | </trans-unit> |
2165 | <trans-unit id="1358902062258458923" datatype="html"> | 2180 | <trans-unit id="1358902062258458923" datatype="html"> |
2166 | <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> | 2181 | <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> |
2167 | <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> | 2182 | <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> |
@@ -2177,26 +2192,34 @@ The link will expire within 1 hour.</source> | |||
2177 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context> | 2192 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context> |
2178 | <context context-type="linenumber">24</context> | 2193 | <context context-type="linenumber">24</context> |
2179 | </context-group> | 2194 | </context-group> |
2180 | </trans-unit><trans-unit id="283609029522452529" datatype="html"> | 2195 | </trans-unit> |
2181 | <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> | 2196 | <trans-unit id="283609029522452529" datatype="html"> |
2197 | <source>Error in channel miniature component: <x id="PH" equiv-text="err.message"/></source> | ||
2198 | <target state="new">Error in channel miniature component: <x id="PH" equiv-text="err.message"/></target> | ||
2182 | <context-group purpose="location"> | 2199 | <context-group purpose="location"> |
2183 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts</context> | 2200 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts</context> |
2184 | <context context-type="linenumber">57</context> | 2201 | <context context-type="linenumber">57</context> |
2185 | </context-group> | 2202 | </context-group> |
2186 | </trans-unit><trans-unit id="3059355667050002541" datatype="html"> | 2203 | </trans-unit> |
2187 | <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> | 2204 | <trans-unit id="3059355667050002541" datatype="html"> |
2205 | <source>Error in playlist miniature component: <x id="PH" equiv-text="err.message"/></source> | ||
2206 | <target state="new">Error in playlist miniature component: <x id="PH" equiv-text="err.message"/></target> | ||
2188 | <context-group purpose="location"> | 2207 | <context-group purpose="location"> |
2189 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/playlist-miniature-markup.component.ts</context> | 2208 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/playlist-miniature-markup.component.ts</context> |
2190 | <context context-type="linenumber">47</context> | 2209 | <context context-type="linenumber">47</context> |
2191 | </context-group> | 2210 | </context-group> |
2192 | </trans-unit><trans-unit id="863691161959989717" datatype="html"> | 2211 | </trans-unit> |
2193 | <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> | 2212 | <trans-unit id="863691161959989717" datatype="html"> |
2213 | <source>Error in video miniature component: <x id="PH" equiv-text="err.message"/></source> | ||
2214 | <target state="new">Error in video miniature component: <x id="PH" equiv-text="err.message"/></target> | ||
2194 | <context-group purpose="location"> | 2215 | <context-group purpose="location"> |
2195 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts</context> | 2216 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts</context> |
2196 | <context context-type="linenumber">59</context> | 2217 | <context context-type="linenumber">59</context> |
2197 | </context-group> | 2218 | </context-group> |
2198 | </trans-unit><trans-unit id="1247256698916587400" datatype="html"> | 2219 | </trans-unit> |
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> | 2220 | <trans-unit id="1247256698916587400" datatype="html"> |
2221 | <source>Error in videos list component: <x id="PH" equiv-text="err.message"/></source> | ||
2222 | <target state="new">Error in videos list component: <x id="PH" equiv-text="err.message"/></target> | ||
2200 | <context-group purpose="location"> | 2223 | <context-group purpose="location"> |
2201 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.ts</context> | 2224 | <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> | 2225 | <context context-type="linenumber">77</context> |
@@ -2390,10 +2413,10 @@ The link will expire within 1 hour.</source> | |||
2390 | <trans-unit id="2602773901491715295"> | 2413 | <trans-unit id="2602773901491715295"> |
2391 | <source>Captions</source> | 2414 | <source>Captions</source> |
2392 | <target>字幕</target> | 2415 | <target>字幕</target> |
2393 | 2416 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">155</context></context-group> | |
2394 | 2417 | <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> | |
2395 | 2418 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">181</context></context-group> | |
2396 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">155</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">181</context></context-group></trans-unit> | 2419 | </trans-unit> |
2397 | <trans-unit id="1168086599577356916" datatype="html"> | 2420 | <trans-unit id="1168086599577356916" datatype="html"> |
2398 | <source>Video preview</source> | 2421 | <source>Video preview</source> |
2399 | <target state="new">Video preview</target> | 2422 | <target state="new">Video preview</target> |
@@ -2530,17 +2553,17 @@ The link will expire within 1 hour.</source> | |||
2530 | <trans-unit id="4021752662928002901"> | 2553 | <trans-unit id="4021752662928002901"> |
2531 | <source>Update</source> | 2554 | <source>Update</source> |
2532 | <target>更新</target> | 2555 | <target>更新</target> |
2533 | 2556 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">180</context></context-group> | |
2534 | 2557 | <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> | |
2535 | 2558 | <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">45</context></context-group> | |
2536 | 2559 | <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> | |
2537 | 2560 | <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> | |
2538 | 2561 | <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> | |
2539 | 2562 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">18</context></context-group> | |
2540 | 2563 | <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> | |
2541 | 2564 | <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> | |
2542 | 2565 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">284</context></context-group> | |
2543 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">180</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">45</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">18</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">284</context></context-group></trans-unit> | 2566 | </trans-unit> |
2544 | <trans-unit id="6722765664648523978"> | 2567 | <trans-unit id="6722765664648523978"> |
2545 | <source>Select the file to upload</source> | 2568 | <source>Select the file to upload</source> |
2546 | <target>アップロードするファイルを選択する</target> | 2569 | <target>アップロードするファイルを選択する</target> |
@@ -2617,25 +2640,31 @@ The link will expire within 1 hour.</source> | |||
2617 | <source>Upload on hold</source> | 2640 | <source>Upload on hold</source> |
2618 | <target state="new">Upload on hold</target> | 2641 | <target state="new">Upload on hold</target> |
2619 | 2642 | ||
2620 | <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">167</context></context-group></trans-unit> | 2643 | <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">174</context></context-group></trans-unit> |
2621 | <trans-unit id="285180972645018518" datatype="html"> | 2644 | <trans-unit id="285180972645018518" datatype="html"> |
2622 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2645 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2623 | <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> | 2646 | <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> |
2624 | 2647 | <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> | |
2625 | <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"> | 2648 | </trans-unit> |
2626 | <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> | 2649 | <trans-unit id="1138810463037464722" datatype="html"> |
2650 | <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> | ||
2651 | <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> | ||
2627 | <context-group purpose="location"> | 2652 | <context-group purpose="location"> |
2628 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 2653 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
2629 | <context context-type="linenumber">104</context> | 2654 | <context context-type="linenumber">104</context> |
2630 | </context-group> | 2655 | </context-group> |
2631 | </trans-unit><trans-unit id="438743381693904838" datatype="html"> | 2656 | </trans-unit> |
2632 | <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> | 2657 | <trans-unit id="438743381693904838" datatype="html"> |
2658 | <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> | ||
2659 | <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> | ||
2633 | <context-group purpose="location"> | 2660 | <context-group purpose="location"> |
2634 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 2661 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
2635 | <context context-type="linenumber">106</context> | 2662 | <context context-type="linenumber">106</context> |
2636 | </context-group> | 2663 | </context-group> |
2637 | </trans-unit><trans-unit id="6796692581512042469" datatype="html"> | 2664 | </trans-unit> |
2638 | <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> | 2665 | <trans-unit id="6796692581512042469" datatype="html"> |
2666 | <source>Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.</source> | ||
2667 | <target state="new">Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.</target> | ||
2639 | <context-group purpose="location"> | 2668 | <context-group purpose="location"> |
2640 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 2669 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
2641 | <context context-type="linenumber">108</context> | 2670 | <context context-type="linenumber">108</context> |
@@ -2644,8 +2673,8 @@ The link will expire within 1 hour.</source> | |||
2644 | <trans-unit id="2587226585711833549" datatype="html"> | 2673 | <trans-unit id="2587226585711833549" datatype="html"> |
2645 | <source>Read instance rules for help</source> | 2674 | <source>Read instance rules for help</source> |
2646 | <target state="new">Read instance rules for help</target> | 2675 | <target state="new">Read instance rules for help</target> |
2647 | 2676 | <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> | |
2648 | <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> | 2677 | </trans-unit> |
2649 | <trans-unit id="3455474330346212563"> | 2678 | <trans-unit id="3455474330346212563"> |
2650 | <source>Select the torrent to import</source> | 2679 | <source>Select the torrent to import</source> |
2651 | <target>インポートする Torrent を選択する</target> | 2680 | <target>インポートする Torrent を選択する</target> |
@@ -2670,23 +2699,23 @@ The link will expire within 1 hour.</source> | |||
2670 | <trans-unit id="4422946962830681102" datatype="html"> | 2699 | <trans-unit id="4422946962830681102" datatype="html"> |
2671 | <source>Torrents with only 1 file are supported.</source> | 2700 | <source>Torrents with only 1 file are supported.</source> |
2672 | <target state="new">Torrents with only 1 file are supported.</target> | 2701 | <target state="new">Torrents with only 1 file are supported.</target> |
2673 | 2702 | <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">120</context></context-group> | |
2674 | <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">120</context></context-group></trans-unit> | 2703 | </trans-unit> |
2675 | <trans-unit id="7860848084471862305" datatype="html"> | 2704 | <trans-unit id="7860848084471862305" datatype="html"> |
2676 | <source>Cannot create live because this instance have too many created lives</source> | 2705 | <source>Cannot create live because this instance have too many created lives</source> |
2677 | <target state="needs-translation">Cannot create live because this instance have too many created lives</target> | 2706 | <target state="needs-translation">Cannot create live because this instance have too many created lives</target> |
2678 | 2707 | <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">101</context></context-group> | |
2679 | <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">101</context></context-group></trans-unit> | 2708 | </trans-unit> |
2680 | <trans-unit id="1278564497286613571" datatype="html"> | 2709 | <trans-unit id="1278564497286613571" datatype="html"> |
2681 | <source>Cannot create live because you created too many lives</source> | 2710 | <source>Cannot create live because you created too many lives</source> |
2682 | <target state="new">Cannot create live because you created too many lives</target> | 2711 | <target state="new">Cannot create live because you created too many lives</target> |
2683 | 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> | |
2684 | <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> |
2685 | <trans-unit id="2621043320678012413" datatype="html"> | 2714 | <trans-unit id="2621043320678012413" datatype="html"> |
2686 | <source>Live published.</source> | 2715 | <source>Live published.</source> |
2687 | <target state="translated">ライブ配信が投稿されました。</target> | 2716 | <target state="translated">ライブ配信が投稿されました。</target> |
2688 | 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">134</context></context-group> | |
2689 | <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> | 2718 | </trans-unit> |
2690 | <trans-unit id="8218579597782287078" datatype="html"> | 2719 | <trans-unit id="8218579597782287078" datatype="html"> |
2691 | <source>Go Live</source> | 2720 | <source>Go Live</source> |
2692 | <target state="new">Go Live</target> | 2721 | <target state="new">Go Live</target> |
@@ -2711,38 +2740,38 @@ The link will expire within 1 hour.</source> | |||
2711 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to upload your videos. | 2740 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> to upload your videos. |
2712 | 2741 | ||
2713 | </target> | 2742 | </target> |
2714 | 2743 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">34</context></context-group> | |
2715 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 2744 | </trans-unit> |
2716 | <trans-unit id="293476877021544115"> | 2745 | <trans-unit id="293476877021544115"> |
2717 | <source>Import <x id="INTERPOLATION"/></source> | 2746 | <source>Import <x id="INTERPOLATION"/></source> |
2718 | <target>インポート <x id="INTERPOLATION"/></target> | 2747 | <target>インポート <x id="INTERPOLATION"/></target> |
2719 | 2748 | <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> | |
2720 | <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> | 2749 | </trans-unit> |
2721 | <trans-unit id="4766833966971572147"> | 2750 | <trans-unit id="4766833966971572147"> |
2722 | <source>Upload <x id="INTERPOLATION"/></source> | 2751 | <source>Upload <x id="INTERPOLATION"/></source> |
2723 | <target>アップロード <x id="INTERPOLATION"/></target> | 2752 | <target>アップロード <x id="INTERPOLATION"/></target> |
2724 | 2753 | <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> | |
2725 | <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> | 2754 | </trans-unit> |
2726 | <trans-unit id="7003826819757856838"> | 2755 | <trans-unit id="7003826819757856838"> |
2727 | <source>Upload a file</source> | 2756 | <source>Upload a file</source> |
2728 | <target>ファイルをアップロードする</target> | 2757 | <target>ファイルをアップロードする</target> |
2729 | 2758 | <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> | |
2730 | <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> | 2759 | </trans-unit> |
2731 | <trans-unit id="2061223017941329156"> | 2760 | <trans-unit id="2061223017941329156"> |
2732 | <source>Import with URL</source> | 2761 | <source>Import with URL</source> |
2733 | <target>URL でインポート</target> | 2762 | <target>URL でインポート</target> |
2734 | 2763 | <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> | |
2735 | <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> | 2764 | </trans-unit> |
2736 | <trans-unit id="8740142697043012403"> | 2765 | <trans-unit id="8740142697043012403"> |
2737 | <source>Import with torrent</source> | 2766 | <source>Import with torrent</source> |
2738 | <target>Torrent でインポート</target> | 2767 | <target>Torrent でインポート</target> |
2739 | 2768 | <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> | |
2740 | <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> | 2769 | </trans-unit> |
2741 | <trans-unit id="6066940329544282265" datatype="html"> | 2770 | <trans-unit id="6066940329544282265" datatype="html"> |
2742 | <source>Go live</source> | 2771 | <source>Go live</source> |
2743 | <target state="new">Go live</target> | 2772 | <target state="new">Go live</target> |
2744 | 2773 | <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> | |
2745 | <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> | 2774 | </trans-unit> |
2746 | <trans-unit id="3907889591911208762" datatype="html"> | 2775 | <trans-unit id="3907889591911208762" datatype="html"> |
2747 | <source>Other videos</source> | 2776 | <source>Other videos</source> |
2748 | <target state="translated">他の動画</target> | 2777 | <target state="translated">他の動画</target> |
@@ -2881,8 +2910,8 @@ The link will expire within 1 hour.</source> | |||
2881 | <trans-unit id="4416005356063364306" datatype="html"> | 2910 | <trans-unit id="4416005356063364306" datatype="html"> |
2882 | <source>This video is blocked.</source> | 2911 | <source>This video is blocked.</source> |
2883 | <target state="translated">この動画はブロックされてます。</target> | 2912 | <target state="translated">この動画はブロックされてます。</target> |
2884 | 2913 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">26</context></context-group> | |
2885 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 2914 | </trans-unit> |
2886 | <trans-unit id="2482137713226830428" datatype="html"> | 2915 | <trans-unit id="2482137713226830428" datatype="html"> |
2887 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source> | 2916 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source> |
2888 | <target state="translated"><x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/>に投稿</target> | 2917 | <target state="translated"><x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/>に投稿</target> |
@@ -3032,9 +3061,10 @@ The link will expire within 1 hour.</source> | |||
3032 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 3061 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
3033 | <context context-type="linenumber">6,7</context> | 3062 | <context context-type="linenumber">6,7</context> |
3034 | </context-group> | 3063 | </context-group> |
3035 | </trans-unit><trans-unit id="9080034597841586171" datatype="html"> | 3064 | </trans-unit> |
3036 | <source> The video is being moved to an external server, it may not work properly. | 3065 | <trans-unit id="9080034597841586171" datatype="html"> |
3037 | </source><target state="new"> The video is being moved to an external server, it may not work properly. | 3066 | <source>The video is being moved to an external server, it may not work properly.</source> |
3067 | <target state="new"> The video is being moved to an external server, it may not work properly. | ||
3038 | </target> | 3068 | </target> |
3039 | <context-group purpose="location"> | 3069 | <context-group purpose="location"> |
3040 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 3070 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
@@ -3045,18 +3075,18 @@ The link will expire within 1 hour.</source> | |||
3045 | <source>This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. </source> | 3075 | <source>This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. </source> |
3046 | <target state="new"> This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. | 3076 | <target state="new"> This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. |
3047 | </target> | 3077 | </target> |
3048 | 3078 | <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> | |
3049 | <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> | 3079 | </trans-unit> |
3050 | <trans-unit id="4262297989675590582" datatype="html"> | 3080 | <trans-unit id="4262297989675590582" datatype="html"> |
3051 | <source>This live has not started yet.</source> | 3081 | <source>This live has not started yet.</source> |
3052 | <target state="translated">このライブ配信はまだ始まっていません。</target> | 3082 | <target state="translated">このライブ配信はまだ始まっていません。</target> |
3053 | 3083 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">18</context></context-group> | |
3054 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit> | 3084 | </trans-unit> |
3055 | <trans-unit id="4926204350710628499" datatype="html"> | 3085 | <trans-unit id="4926204350710628499" datatype="html"> |
3056 | <source>This live has ended.</source> | 3086 | <source>This live has ended.</source> |
3057 | <target state="translated">ライブ配信が終了しました。</target> | 3087 | <target state="translated">ライブ配信が終了しました。</target> |
3058 | 3088 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">22</context></context-group> | |
3059 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 3089 | </trans-unit> |
3060 | <trans-unit id="8518611938109939710" datatype="html"> | 3090 | <trans-unit id="8518611938109939710" datatype="html"> |
3061 | <source>SORT BY</source> | 3091 | <source>SORT BY</source> |
3062 | <target state="translated">並べ替え</target> | 3092 | <target state="translated">並べ替え</target> |
@@ -3080,30 +3110,30 @@ The link will expire within 1 hour.</source> | |||
3080 | <trans-unit id="6390009909920475335" datatype="html"> | 3110 | <trans-unit id="6390009909920475335" datatype="html"> |
3081 | <source>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 </source> | 3111 | <source>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 </source> |
3082 | <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> | 3112 | <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> |
3083 | 3113 | <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> | |
3084 | <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></trans-unit> | 3114 | </trans-unit> |
3085 | <trans-unit id="4036338619293319383" datatype="html"> | 3115 | <trans-unit id="4036338619293319383" datatype="html"> |
3086 | <source>{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</source> | 3116 | <source>{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</source> |
3087 | <target state="new">{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</target> | 3117 | <target state="new">{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</target> |
3088 | 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">74</context></context-group> | |
3089 | 3119 | <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> | |
3090 | 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> | |
3091 | <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> | 3121 | </trans-unit> |
3092 | <trans-unit id="127329338495775339" datatype="html"> | 3122 | <trans-unit id="127329338495775339" datatype="html"> |
3093 | <source>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' }}"/> </source> | 3123 | <source>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' }}"/> </source> |
3094 | <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> | 3124 | <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> |
3095 | 3125 | <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> | |
3096 | <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></trans-unit> | 3126 | </trans-unit> |
3097 | <trans-unit id="5535545444690528619" datatype="html"> | 3127 | <trans-unit id="5535545444690528619" datatype="html"> |
3098 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></source> | 3128 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></source> |
3099 | <target state="new">View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></target> | 3129 | <target state="new">View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></target> |
3100 | 3130 | <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> | |
3101 | <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> | 3131 | </trans-unit> |
3102 | <trans-unit id="1055254162789146714"> | 3132 | <trans-unit id="1055254162789146714"> |
3103 | <source>Comments are disabled.</source> | 3133 | <source>Comments are disabled.</source> |
3104 | <target>コメント機能が無効になっています。</target> | 3134 | <target>コメント機能が無効になっています。</target> |
3105 | 3135 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">92</context></context-group> | |
3106 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> | 3136 | </trans-unit> |
3107 | <trans-unit id="5733075023444401902"> | 3137 | <trans-unit id="5733075023444401902"> |
3108 | <source>Add comment...</source> | 3138 | <source>Add comment...</source> |
3109 | <target>コメントを入力...</target> | 3139 | <target>コメントを入力...</target> |
@@ -3239,14 +3269,14 @@ The link will expire within 1 hour.</source> | |||
3239 | <trans-unit id="658727060940996385" datatype="html"> | 3269 | <trans-unit id="658727060940996385" datatype="html"> |
3240 | <source>Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</source> | 3270 | <source>Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</source> |
3241 | <target state="new">Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</target> | 3271 | <target state="new">Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</target> |
3242 | 3272 | <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> | |
3243 | <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> | 3273 | </trans-unit> |
3244 | <trans-unit id="270726559962362501" datatype="html"> | 3274 | <trans-unit id="270726559962362501" datatype="html"> |
3245 | <source>Renew token</source> | 3275 | <source>Renew token</source> |
3246 | <target state="new">Renew token</target> | 3276 | <target state="new">Renew token</target> |
3247 | 3277 | <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> | |
3248 | 3278 | <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> | |
3249 | <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> | 3279 | </trans-unit> |
3250 | <trans-unit id="3029923402309610616" datatype="html"> | 3280 | <trans-unit id="3029923402309610616" datatype="html"> |
3251 | <source>Token renewed. Update your client configuration accordingly.</source> | 3281 | <source>Token renewed. Update your client configuration accordingly.</source> |
3252 | <target state="new">Token renewed. Update your client configuration accordingly.</target> | 3282 | <target state="new">Token renewed. Update your client configuration accordingly.</target> |
@@ -3315,8 +3345,9 @@ The link will expire within 1 hour.</source> | |||
3315 | <trans-unit id="6559246822757089203" datatype="html"> | 3345 | <trans-unit id="6559246822757089203" datatype="html"> |
3316 | <source>Clear filters</source> | 3346 | <source>Clear filters</source> |
3317 | <target state="translated">フィルタをクリアする</target> | 3347 | <target state="translated">フィルタをクリアする</target> |
3318 | 3348 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.component.html</context><context context-type="linenumber">23</context></context-group> | |
3319 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.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/simple-search-input.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 3349 | <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> |
3350 | </trans-unit> | ||
3320 | <trans-unit id="4266779970063047572" datatype="html"> | 3351 | <trans-unit id="4266779970063047572" datatype="html"> |
3321 | <source>Video/Comment/Account</source> | 3352 | <source>Video/Comment/Account</source> |
3322 | <target state="translated">動画/コメント/アカウント</target> | 3353 | <target state="translated">動画/コメント/アカウント</target> |
@@ -3407,9 +3438,8 @@ The link will expire within 1 hour.</source> | |||
3407 | <trans-unit id="9160510009013134726" datatype="html"> | 3438 | <trans-unit id="9160510009013134726" datatype="html"> |
3408 | <source>Unfollow</source> | 3439 | <source>Unfollow</source> |
3409 | <target state="new">Unfollow</target> | 3440 | <target state="new">Unfollow</target> |
3410 | 3441 | <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> | |
3411 | 3442 | </trans-unit> | |
3412 | <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> | ||
3413 | <trans-unit id="8246779176913476983" datatype="html"> | 3443 | <trans-unit id="8246779176913476983" datatype="html"> |
3414 | <source>Open instance in a new tab</source> | 3444 | <source>Open instance in a new tab</source> |
3415 | <target state="translated">新しいタブでインスタンスを開く</target> | 3445 | <target state="translated">新しいタブでインスタンスを開く</target> |
@@ -3464,9 +3494,9 @@ The link will expire within 1 hour.</source> | |||
3464 | <trans-unit id="8286337167859377104"> | 3494 | <trans-unit id="8286337167859377104"> |
3465 | <source>Create user</source> | 3495 | <source>Create user</source> |
3466 | <target>ユーザー作成</target> | 3496 | <target>ユーザー作成</target> |
3467 | 3497 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">96</context></context-group> | |
3468 | 3498 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">20</context></context-group> | |
3469 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">96</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 3499 | </trans-unit> |
3470 | <trans-unit id="8363291180171434623" datatype="html"> | 3500 | <trans-unit id="8363291180171434623" datatype="html"> |
3471 | <source>Table parameters</source> | 3501 | <source>Table parameters</source> |
3472 | <target state="new">Table parameters</target> | 3502 | <target state="new">Table parameters</target> |
@@ -4182,14 +4212,14 @@ The link will expire within 1 hour.</source> | |||
4182 | <trans-unit id="4580988005648117665"> | 4212 | <trans-unit id="4580988005648117665"> |
4183 | <source>Search</source> | 4213 | <source>Search</source> |
4184 | <target>検索</target> | 4214 | <target>検索</target> |
4185 | 4215 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">5</context></context-group> | |
4186 | 4216 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">12</context></context-group> | |
4187 | 4217 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">260</context></context-group> | |
4188 | 4218 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">8</context></context-group> | |
4189 | 4219 | <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> | |
4190 | 4220 | <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> | |
4191 | 4221 | <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> | |
4192 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">5</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">260</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> | 4222 | </trans-unit> |
4193 | <trans-unit id="8630916846096019339" datatype="html"> | 4223 | <trans-unit id="8630916846096019339" datatype="html"> |
4194 | <source>Users can resolve distant content</source> | 4224 | <source>Users can resolve distant content</source> |
4195 | <target state="translated">他のインスタンスのコンテンツ</target> | 4225 | <target state="translated">他のインスタンスのコンテンツ</target> |
@@ -4220,29 +4250,29 @@ The link will expire within 1 hour.</source> | |||
4220 | <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">36</context></context-group> | 4250 | <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">36</context></context-group> |
4221 | <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> | 4251 | <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> |
4222 | </trans-unit> | 4252 | </trans-unit> |
4223 | |||
4224 | <trans-unit id="2144158274184161635" datatype="html"> | 4253 | <trans-unit id="2144158274184161635" datatype="html"> |
4225 | <source>Videos with the most interactions for recent videos</source> | 4254 | <source>Videos with the most interactions for recent videos</source> |
4226 | <target state="translated">最近の動画でインタラクションが多かった動画を表示します</target> | 4255 | <target state="translated">最近の動画でインタラクションが多かった動画を表示します</target> |
4227 | 4256 | <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> | |
4228 | <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> | 4257 | </trans-unit> |
4229 | <trans-unit id="8312243926314494468" datatype="html"> | 4258 | <trans-unit id="8312243926314494468" datatype="html"> |
4230 | <source>Videos with the most views during the last 24 hours</source> | 4259 | <source>Videos with the most views during the last 24 hours</source> |
4231 | <target state="translated">過去24時間の間で視聴回数の多かった動画を表示します</target> | 4260 | <target state="translated">過去24時間の間で視聴回数の多かった動画を表示します</target> |
4232 | 4261 | <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> | |
4233 | <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"> | 4262 | </trans-unit> |
4234 | <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> | 4263 | <trans-unit id="8731139416455609016" datatype="html"> |
4264 | <source>Videos with the most views during the last <x id="PH" equiv-text="this.trendingDays"/> days</source> | ||
4265 | <target state="new">Videos with the most views during the last <x id="PH" equiv-text="this.trendingDays"/> days</target> | ||
4235 | <context-group purpose="location"> | 4266 | <context-group purpose="location"> |
4236 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> | 4267 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> |
4237 | <context context-type="linenumber">209</context> | 4268 | <context context-type="linenumber">209</context> |
4238 | </context-group> | 4269 | </context-group> |
4239 | </trans-unit> | 4270 | </trans-unit> |
4240 | |||
4241 | <trans-unit id="1671858302647356245" datatype="html"> | 4271 | <trans-unit id="1671858302647356245" datatype="html"> |
4242 | <source>Videos that have the most likes</source> | 4272 | <source>Videos that have the most likes</source> |
4243 | <target state="translated">いいね!が多かった動画を表示します</target> | 4273 | <target state="translated">いいね!が多かった動画を表示します</target> |
4244 | 4274 | <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> | |
4245 | <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> | 4275 | </trans-unit> |
4246 | <trans-unit id="2006841089844688970" datatype="html"> | 4276 | <trans-unit id="2006841089844688970" datatype="html"> |
4247 | <source>To load your new installed plugins or themes, refresh the page.</source> | 4277 | <source>To load your new installed plugins or themes, refresh the page.</source> |
4248 | <target state="translated">新しくインストールしたプラグインやテーマを適用するには、ページを更新して下さい。</target> | 4278 | <target state="translated">新しくインストールしたプラグインやテーマを適用するには、ページを更新して下さい。</target> |
@@ -4329,18 +4359,18 @@ The link will expire within 1 hour.</source> | |||
4329 | <trans-unit id="545410448674339480" datatype="html"> | 4359 | <trans-unit id="545410448674339480" datatype="html"> |
4330 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source> | 4360 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source> |
4331 | <target state="translated"><x id="PH" equiv-text="commentArgs.length"/>のコメントは削除されました。</target> | 4361 | <target state="translated"><x id="PH" equiv-text="commentArgs.length"/>のコメントは削除されました。</target> |
4332 | 4362 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">143</context></context-group> | |
4333 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">143</context></context-group></trans-unit> | 4363 | </trans-unit> |
4334 | <trans-unit id="379090446060940062" datatype="html"> | 4364 | <trans-unit id="379090446060940062" datatype="html"> |
4335 | <source>Do you really want to delete all comments of <x id="PH"/>?</source> | 4365 | <source>Do you really want to delete all comments of <x id="PH"/>?</source> |
4336 | <target state="translated">本当に <x id="PH"/>の全てのコメントを削除しますか?</target> | 4366 | <target state="translated">本当に <x id="PH"/>の全てのコメントを削除しますか?</target> |
4337 | 4367 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">163</context></context-group> | |
4338 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 4368 | </trans-unit> |
4339 | <trans-unit id="4539246224625965241" datatype="html"> | 4369 | <trans-unit id="4539246224625965241" datatype="html"> |
4340 | <source>Comments of <x id="PH"/> will be deleted in a few minutes</source> | 4370 | <source>Comments of <x id="PH"/> will be deleted in a few minutes</source> |
4341 | <target state="translated"><x id="PH"/>のコメントは数分以内に削除されます</target> | 4371 | <target state="translated"><x id="PH"/>のコメントは数分以内に削除されます</target> |
4342 | 4372 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">175</context></context-group> | |
4343 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">175</context></context-group></trans-unit> | 4373 | </trans-unit> |
4344 | <trans-unit id="7427986413651551775" datatype="html"> | 4374 | <trans-unit id="7427986413651551775" datatype="html"> |
4345 | <source>Video comments</source> | 4375 | <source>Video comments</source> |
4346 | <target state="translated">動画のコメント</target> | 4376 | <target state="translated">動画のコメント</target> |
@@ -4476,38 +4506,39 @@ The link will expire within 1 hour.</source> | |||
4476 | <trans-unit id="6588040559347368313" datatype="html"> | 4506 | <trans-unit id="6588040559347368313" datatype="html"> |
4477 | <source>Add a new category</source> | 4507 | <source>Add a new category</source> |
4478 | <target state="translated">新しいカテゴリーを加える</target> | 4508 | <target state="translated">新しいカテゴリーを加える</target> |
4479 | 4509 | <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> | 4510 | <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> |
4511 | </trans-unit> | ||
4481 | <trans-unit id="8953934448427251062" datatype="html"> | 4512 | <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> | 4513 | <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="translated"><x id="START_LINK"/>共有システム<x id="CLOSE_LINK"/>は、あなたのシステムの技術的情報(公開IPアドレスのような)が他のピアに送信される事を暗に意味していますが、サーバー負荷を大きく軽減する助けとなります。</target> | 4514 | <target state="translated"><x id="START_LINK"/>共有システム<x id="CLOSE_LINK"/>は、あなたのシステムの技術的情報(公開IPアドレスのような)が他のピアに送信される事を暗に意味していますが、サーバー負荷を大きく軽減する助けとなります。</target> |
4484 | 4515 | <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> | |
4485 | <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> | 4516 | </trans-unit> |
4486 | <trans-unit id="34094919610906740" datatype="html"> | 4517 | <trans-unit id="34094919610906740" datatype="html"> |
4487 | <source>Help share videos being played</source> | 4518 | <source>Help share videos being played</source> |
4488 | <target state="translated">サーバー負荷軽減のために、再生される動画のピアを担う</target> | 4519 | <target state="translated">サーバー負荷軽減のために、再生される動画のピアを担う</target> |
4489 | 4520 | <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> | |
4490 | <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> | 4521 | </trans-unit> |
4491 | <trans-unit id="6236140336967052987" datatype="html"> | 4522 | <trans-unit id="6236140336967052987" datatype="html"> |
4492 | <source>When on a video page, directly start playing the video.</source> | 4523 | <source>When on a video page, directly start playing the video.</source> |
4493 | <target state="translated">動画ページにアクセスすると、すぐに動画を再生する。</target> | 4524 | <target state="translated">動画ページにアクセスすると、すぐに動画を再生する。</target> |
4494 | 4525 | <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> | |
4495 | <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> | 4526 | </trans-unit> |
4496 | <trans-unit id="9135112681389493865" datatype="html"> | 4527 | <trans-unit id="9135112681389493865" datatype="html"> |
4497 | <source>Automatically play videos</source> | 4528 | <source>Automatically play videos</source> |
4498 | <target state="translated">自動的に動画を再生する</target> | 4529 | <target state="translated">自動的に動画を再生する</target> |
4499 | 4530 | <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> | |
4500 | <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> | 4531 | </trans-unit> |
4501 | <trans-unit id="575474399125992547" datatype="html"> | 4532 | <trans-unit id="575474399125992547" datatype="html"> |
4502 | <source>When a video ends, follow up with the next suggested video.</source> | 4533 | <source>When a video ends, follow up with the next suggested video.</source> |
4503 | <target state="translated">動画の再生が終了すると、次のオススメ動画が続いて再生されます。</target> | 4534 | <target state="translated">動画の再生が終了すると、次のオススメ動画が続いて再生されます。</target> |
4504 | 4535 | <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> | |
4505 | <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> | 4536 | </trans-unit> |
4506 | <trans-unit id="2701970773087072815" datatype="html"> | 4537 | <trans-unit id="2701970773087072815" datatype="html"> |
4507 | <source>Automatically start playing the next video</source> | 4538 | <source>Automatically start playing the next video</source> |
4508 | <target state="translated">自動的に次の動画を再生する</target> | 4539 | <target state="translated">自動的に次の動画を再生する</target> |
4509 | 4540 | <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> | |
4510 | <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> | 4541 | </trans-unit> |
4511 | <trans-unit id="5983800192187691457" datatype="html"> | 4542 | <trans-unit id="5983800192187691457" datatype="html"> |
4512 | <source>Main languages you/your moderators speak</source> | 4543 | <source>Main languages you/your moderators speak</source> |
4513 | <target state="translated">このインスタンスのモデレーターとあなたが話す言語</target> | 4544 | <target state="translated">このインスタンスのモデレーターとあなたが話す言語</target> |
@@ -4981,8 +5012,8 @@ The link will expire within 1 hour.</source> | |||
4981 | <trans-unit id="2149300564474427551"> | 5012 | <trans-unit id="2149300564474427551"> |
4982 | <source>Administrator</source> | 5013 | <source>Administrator</source> |
4983 | <target>管理者</target> | 5014 | <target>管理者</target> |
4984 | 5015 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group> | |
4985 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group></trans-unit> | 5016 | </trans-unit> |
4986 | <trans-unit id="3171683206914962995"> | 5017 | <trans-unit id="3171683206914962995"> |
4987 | <source>Admin email</source> | 5018 | <source>Admin email</source> |
4988 | <target>管理者のメールアドレス</target> | 5019 | <target>管理者のメールアドレス</target> |
@@ -5440,137 +5471,169 @@ color: red; | |||
5440 | <trans-unit id="4915431133669985304"> | 5471 | <trans-unit id="4915431133669985304"> |
5441 | <source>Profile</source> | 5472 | <source>Profile</source> |
5442 | <target>プロファイル</target> | 5473 | <target>プロファイル</target> |
5443 | 5474 | <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> | |
5444 | <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> | 5475 | </trans-unit> |
5445 | <trans-unit id="1963136290621768454" datatype="html"> | 5476 | <trans-unit id="1963136290621768454" datatype="html"> |
5446 | <source>Resolution</source> | 5477 | <source>Resolution</source> |
5447 | <target state="translated">解像度</target> | 5478 | <target state="translated">解像度</target> |
5448 | 5479 | <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> | |
5449 | <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> | 5480 | </trans-unit> |
5450 | <trans-unit id="7814358426066520520" datatype="html"> | 5481 | <trans-unit id="7814358426066520520" datatype="html"> |
5451 | <source>Aspect ratio</source> | 5482 | <source>Aspect ratio</source> |
5452 | <target state="translated">比率</target> | 5483 | <target state="translated">比率</target> |
5453 | 5484 | <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> | |
5454 | <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> | 5485 | </trans-unit> |
5455 | <trans-unit id="44862519224794374" datatype="html"> | 5486 | <trans-unit id="44862519224794374" datatype="html"> |
5456 | <source>Average frame rate</source> | 5487 | <source>Average frame rate</source> |
5457 | <target state="translated">平均フレームレート</target> | 5488 | <target state="translated">平均フレームレート</target> |
5458 | 5489 | <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> | |
5459 | <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> | 5490 | </trans-unit> |
5460 | <trans-unit id="5053683525387462246" datatype="html"> | 5491 | <trans-unit id="5053683525387462246" datatype="html"> |
5461 | <source>Pixel format</source> | 5492 | <source>Pixel format</source> |
5462 | <target state="translated">ピクセル形式</target> | 5493 | <target state="translated">ピクセル形式</target> |
5463 | 5494 | <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> | |
5464 | <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> | 5495 | </trans-unit> |
5465 | <trans-unit id="7858676566953242358" datatype="html"> | 5496 | <trans-unit id="7858676566953242358" datatype="html"> |
5466 | <source>Sample rate</source> | 5497 | <source>Sample rate</source> |
5467 | <target state="translated">サンプルレート</target> | 5498 | <target state="translated">サンプルレート</target> |
5468 | 5499 | <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> | |
5469 | <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> | 5500 | </trans-unit> |
5470 | <trans-unit id="5403856660543890284" datatype="html"> | 5501 | <trans-unit id="5403856660543890284" datatype="html"> |
5471 | <source>Channel Layout</source> | 5502 | <source>Channel Layout</source> |
5472 | <target state="translated">ステレオ・モノラル等</target> | 5503 | <target state="translated">ステレオ・モノラル等</target> |
5473 | 5504 | <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> | |
5474 | <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"> | 5505 | </trans-unit> |
5475 | <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 | 5506 | <trans-unit id="6317170736181476800" datatype="html"> |
5476 | >"/></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 | 5507 | <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> |
5477 | >"/></target> | 5508 | <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> |
5478 | <context-group purpose="location"> | 5509 | <context-group purpose="location"> |
5479 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5510 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5480 | <context context-type="linenumber">3,7</context> | 5511 | <context context-type="linenumber">3,7</context> |
5481 | </context-group> | 5512 | </context-group> |
5482 | </trans-unit><trans-unit id="1405600824334286337" datatype="html"> | 5513 | </trans-unit> |
5483 | <source>More filters</source><target state="new">More filters</target> | 5514 | <trans-unit id="1405600824334286337" datatype="html"> |
5515 | <source>More filters</source> | ||
5516 | <target state="new">More filters</target> | ||
5484 | <context-group purpose="location"> | 5517 | <context-group purpose="location"> |
5485 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5518 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5486 | <context context-type="linenumber">20</context> | 5519 | <context context-type="linenumber">20</context> |
5487 | </context-group> | 5520 | </context-group> |
5488 | </trans-unit><trans-unit id="8867436033163146458" datatype="html"> | 5521 | </trans-unit> |
5489 | <source>Less filters</source><target state="new">Less filters</target> | 5522 | <trans-unit id="8867436033163146458" datatype="html"> |
5523 | <source>Less filters</source> | ||
5524 | <target state="new">Less filters</target> | ||
5490 | <context-group purpose="location"> | 5525 | <context-group purpose="location"> |
5491 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5526 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5492 | <context context-type="linenumber">21</context> | 5527 | <context context-type="linenumber">21</context> |
5493 | </context-group> | 5528 | </context-group> |
5494 | </trans-unit><trans-unit id="7028708681117573961" datatype="html"> | 5529 | </trans-unit> |
5495 | <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> | 5530 | <trans-unit id="7028708681117573961" datatype="html"> |
5531 | <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> | ||
5532 | <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> | ||
5496 | <context-group purpose="location"> | 5533 | <context-group purpose="location"> |
5497 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5534 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5498 | <context context-type="linenumber">46</context> | 5535 | <context context-type="linenumber">46</context> |
5499 | </context-group> | 5536 | </context-group> |
5500 | </trans-unit><trans-unit id="5691258609562173281" datatype="html"> | 5537 | </trans-unit> |
5501 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"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>"/>"Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5538 | <trans-unit id="5691258609562173281" datatype="html"> |
5539 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | ||
5540 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
5502 | <context-group purpose="location"> | 5541 | <context-group purpose="location"> |
5503 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5542 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5504 | <context context-type="linenumber">48</context> | 5543 | <context context-type="linenumber">48</context> |
5505 | </context-group> | 5544 | </context-group> |
5506 | </trans-unit><trans-unit id="3224510615614621760" datatype="html"> | 5545 | </trans-unit> |
5507 | <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> | 5546 | <trans-unit id="3224510615614621760" datatype="html"> |
5547 | <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> | ||
5548 | <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> | ||
5508 | <context-group purpose="location"> | 5549 | <context-group purpose="location"> |
5509 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5550 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5510 | <context context-type="linenumber">49</context> | 5551 | <context context-type="linenumber">49</context> |
5511 | </context-group> | 5552 | </context-group> |
5512 | </trans-unit><trans-unit id="3082811226222076503" datatype="html"> | 5553 | </trans-unit> |
5513 | <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> | 5554 | <trans-unit id="3082811226222076503" datatype="html"> |
5555 | <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> | ||
5556 | <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> | ||
5514 | <context-group purpose="location"> | 5557 | <context-group purpose="location"> |
5515 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5558 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5516 | <context context-type="linenumber">50</context> | 5559 | <context context-type="linenumber">50</context> |
5517 | </context-group> | 5560 | </context-group> |
5518 | </trans-unit><trans-unit id="4322133526902910662" datatype="html"> | 5561 | </trans-unit> |
5519 | <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> | 5562 | <trans-unit id="4322133526902910662" datatype="html"> |
5563 | <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> | ||
5564 | <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> | ||
5520 | <context-group purpose="location"> | 5565 | <context-group purpose="location"> |
5521 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5566 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5522 | <context context-type="linenumber">51</context> | 5567 | <context context-type="linenumber">51</context> |
5523 | </context-group> | 5568 | </context-group> |
5524 | </trans-unit><trans-unit id="2343321245279384373" datatype="html"> | 5569 | </trans-unit> |
5525 | <source>Languages:</source><target state="new">Languages:</target> | 5570 | <trans-unit id="2343321245279384373" datatype="html"> |
5571 | <source>Languages:</source> | ||
5572 | <target state="new">Languages:</target> | ||
5526 | <context-group purpose="location"> | 5573 | <context-group purpose="location"> |
5527 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5574 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5528 | <context context-type="linenumber">59</context> | 5575 | <context context-type="linenumber">59</context> |
5529 | </context-group> | 5576 | </context-group> |
5530 | </trans-unit><trans-unit id="5063779773341398537" datatype="html"> | 5577 | </trans-unit> |
5531 | <source>Sensitive content:</source><target state="new">Sensitive content:</target> | 5578 | <trans-unit id="5063779773341398537" datatype="html"> |
5579 | <source>Sensitive content:</source> | ||
5580 | <target state="new">Sensitive content:</target> | ||
5532 | <context-group purpose="location"> | 5581 | <context-group purpose="location"> |
5533 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5582 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5534 | <context context-type="linenumber">66</context> | 5583 | <context context-type="linenumber">66</context> |
5535 | </context-group> | 5584 | </context-group> |
5536 | </trans-unit><trans-unit id="5723033003381016192" datatype="html"> | 5585 | </trans-unit> |
5537 | <source>Scope:</source><target state="new">Scope:</target> | 5586 | <trans-unit id="5723033003381016192" datatype="html"> |
5587 | <source>Scope:</source> | ||
5588 | <target state="new">Scope:</target> | ||
5538 | <context-group purpose="location"> | 5589 | <context-group purpose="location"> |
5539 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5590 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5540 | <context context-type="linenumber">81</context> | 5591 | <context context-type="linenumber">81</context> |
5541 | </context-group> | 5592 | </context-group> |
5542 | </trans-unit><trans-unit id="8481241275509347668" datatype="html"> | 5593 | </trans-unit> |
5543 | <source>Local videos (this instance)</source><target state="new">Local videos (this instance)</target> | 5594 | <trans-unit id="8481241275509347668" datatype="html"> |
5595 | <source>Local videos (this instance)</source> | ||
5596 | <target state="new">Local videos (this instance)</target> | ||
5544 | <context-group purpose="location"> | 5597 | <context-group purpose="location"> |
5545 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5598 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5546 | <context context-type="linenumber">85</context> | 5599 | <context context-type="linenumber">85</context> |
5547 | </context-group> | 5600 | </context-group> |
5548 | </trans-unit><trans-unit id="8383401711408398806" datatype="html"> | 5601 | </trans-unit> |
5549 | <source>Federated videos (this instance + followed instances)</source><target state="new">Federated videos (this instance + followed instances)</target> | 5602 | <trans-unit id="8383401711408398806" datatype="html"> |
5603 | <source>Federated videos (this instance + followed instances)</source> | ||
5604 | <target state="new">Federated videos (this instance + followed instances)</target> | ||
5550 | <context-group purpose="location"> | 5605 | <context-group purpose="location"> |
5551 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5606 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5552 | <context context-type="linenumber">90</context> | 5607 | <context context-type="linenumber">90</context> |
5553 | </context-group> | 5608 | </context-group> |
5554 | </trans-unit><trans-unit id="2736556170366900089" datatype="html"> | 5609 | </trans-unit> |
5555 | <source>Type:</source><target state="new">Type:</target> | 5610 | <trans-unit id="2736556170366900089" datatype="html"> |
5611 | <source>Type:</source> | ||
5612 | <target state="new">Type:</target> | ||
5556 | <context-group purpose="location"> | 5613 | <context-group purpose="location"> |
5557 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5614 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5558 | <context context-type="linenumber">95</context> | 5615 | <context context-type="linenumber">95</context> |
5559 | </context-group> | 5616 | </context-group> |
5560 | </trans-unit><trans-unit id="1744425032255703211" datatype="html"> | 5617 | </trans-unit> |
5561 | <source>VOD & Live videos</source><target state="new">VOD & Live videos</target> | 5618 | <trans-unit id="1744425032255703211" datatype="html"> |
5619 | <source>VOD & Live videos</source> | ||
5620 | <target state="new">VOD & Live videos</target> | ||
5562 | <context-group purpose="location"> | 5621 | <context-group purpose="location"> |
5563 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5622 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5564 | <context context-type="linenumber">99</context> | 5623 | <context context-type="linenumber">99</context> |
5565 | </context-group> | 5624 | </context-group> |
5566 | </trans-unit><trans-unit id="1370537846415473089" datatype="html"> | 5625 | </trans-unit> |
5567 | <source>Categories:</source><target state="new">Categories:</target> | 5626 | <trans-unit id="1370537846415473089" datatype="html"> |
5627 | <source>Categories:</source> | ||
5628 | <target state="new">Categories:</target> | ||
5568 | <context-group purpose="location"> | 5629 | <context-group purpose="location"> |
5569 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5630 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5570 | <context context-type="linenumber">114</context> | 5631 | <context context-type="linenumber">114</context> |
5571 | </context-group> | 5632 | </context-group> |
5572 | </trans-unit><trans-unit id="4250125031269088402" datatype="html"> | 5633 | </trans-unit> |
5573 | <source>Moderation:</source><target state="new">Moderation:</target> | 5634 | <trans-unit id="4250125031269088402" datatype="html"> |
5635 | <source>Moderation:</source> | ||
5636 | <target state="new">Moderation:</target> | ||
5574 | <context-group purpose="location"> | 5637 | <context-group purpose="location"> |
5575 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5638 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5576 | <context context-type="linenumber">120</context> | 5639 | <context context-type="linenumber">120</context> |
@@ -5640,9 +5703,9 @@ color: red; | |||
5640 | <trans-unit id="2658703380934466003" datatype="html"> | 5703 | <trans-unit id="2658703380934466003" datatype="html"> |
5641 | <source>Add a new language</source> | 5704 | <source>Add a new language</source> |
5642 | <target state="translated">新しく言語を加える</target> | 5705 | <target state="translated">新しく言語を加える</target> |
5643 | 5706 | <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> | |
5644 | 5707 | <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> | |
5645 | <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> | 5708 | </trans-unit> |
5646 | <trans-unit id="1530331428384894781" datatype="html"> | 5709 | <trans-unit id="1530331428384894781" datatype="html"> |
5647 | <source><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> is awaiting email verification </source> | 5710 | <source><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> is awaiting email verification </source> |
5648 | <target state="translated"><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/>はメールアドレスの認証を待っています </target> | 5711 | <target state="translated"><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/>はメールアドレスの認証を待っています </target> |
@@ -5677,9 +5740,9 @@ color: red; | |||
5677 | <trans-unit id="4844578664427956129"> | 5740 | <trans-unit id="4844578664427956129"> |
5678 | <source>Change ownership</source> | 5741 | <source>Change ownership</source> |
5679 | <target>所有権を変更する</target> | 5742 | <target>所有権を変更する</target> |
5680 | 5743 | <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> | |
5681 | 5744 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">180</context></context-group> | |
5682 | <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">180</context></context-group></trans-unit> | 5745 | </trans-unit> |
5683 | <trans-unit id="4561174610228620528"> | 5746 | <trans-unit id="4561174610228620528"> |
5684 | <source>Select the next owner</source> | 5747 | <source>Select the next owner</source> |
5685 | <target>次の所有者を選択</target> | 5748 | <target>次の所有者を選択</target> |
@@ -5780,13 +5843,13 @@ color: red; | |||
5780 | <trans-unit id="7000850040589508423" datatype="html"> | 5843 | <trans-unit id="7000850040589508423" datatype="html"> |
5781 | <source>Create video channel</source> | 5844 | <source>Create video channel</source> |
5782 | <target state="translated">動画チャンネルの作成</target> | 5845 | <target state="translated">動画チャンネルの作成</target> |
5783 | 5846 | <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> | |
5784 | <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> | 5847 | </trans-unit> |
5785 | <trans-unit id="5700655611297335752" datatype="html"> | 5848 | <trans-unit id="5700655611297335752" datatype="html"> |
5786 | <source>No channel found.</source> | 5849 | <source>No channel found.</source> |
5787 | <target state="translated">チャンネルが見つかりませんでした。</target> | 5850 | <target state="translated">チャンネルが見つかりませんでした。</target> |
5788 | 5851 | <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> | |
5789 | <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> | 5852 | </trans-unit> |
5790 | <trans-unit id="5500467336262464724"> | 5853 | <trans-unit id="5500467336262464724"> |
5791 | <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers </source> | 5854 | <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers </source> |
5792 | <target>チャンネル登録者数 | 5855 | <target>チャンネル登録者数 |
@@ -5877,16 +5940,16 @@ color: red; | |||
5877 | <trans-unit id="3122895472333547524"> | 5940 | <trans-unit id="3122895472333547524"> |
5878 | <source>Delete your account</source> | 5941 | <source>Delete your account</source> |
5879 | <target>アカウントを削除する</target> | 5942 | <target>アカウントを削除する</target> |
5880 | 5943 | <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> | |
5881 | 5944 | <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">26</context></context-group> | |
5882 | <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">26</context></context-group></trans-unit> | 5945 | </trans-unit> |
5883 | <trans-unit id="4000980858407872649" datatype="html"> | 5946 | <trans-unit id="4000980858407872649" datatype="html"> |
5884 | <source>Channel page</source> | 5947 | <source>Channel page</source> |
5885 | <target state="translated">チャンネルページ</target> | 5948 | <target state="translated">チャンネルページ</target> |
5886 | 5949 | <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> | |
5887 | 5950 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">20</context></context-group> | |
5888 | 5951 | <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> | |
5889 | <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-subscriptions/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">67</context></context-group></trans-unit> | 5952 | </trans-unit> |
5890 | <trans-unit id="9131836378905533756"> | 5953 | <trans-unit id="9131836378905533756"> |
5891 | <source>Created by <x id="INTERPOLATION"/></source> | 5954 | <source>Created by <x id="INTERPOLATION"/></source> |
5892 | <target><x id="INTERPOLATION"/> 制作</target> | 5955 | <target><x id="INTERPOLATION"/> 制作</target> |
@@ -5905,8 +5968,8 @@ color: red; | |||
5905 | <trans-unit id="4781078006040259916" datatype="html"> | 5968 | <trans-unit id="4781078006040259916" datatype="html"> |
5906 | <source>You don't have any video in your watch history yet.</source> | 5969 | <source>You don't have any video in your watch history yet.</source> |
5907 | <target state="translated">まだ視聴履歴に見た動画がありません。</target> | 5970 | <target state="translated">まだ視聴履歴に見た動画がありません。</target> |
5908 | 5971 | <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> | |
5909 | <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> | 5972 | </trans-unit> |
5910 | <trans-unit id="687236465759862933" datatype="html"> | 5973 | <trans-unit id="687236465759862933" datatype="html"> |
5911 | <source>Open syndication dropdown</source> | 5974 | <source>Open syndication dropdown</source> |
5912 | <target state="new">Open syndication dropdown</target> | 5975 | <target state="new">Open syndication dropdown</target> |
@@ -5918,14 +5981,18 @@ color: red; | |||
5918 | <context context-type="sourcefile">src/app/shared/shared-main/feeds/feed.component.html</context> | 5981 | <context context-type="sourcefile">src/app/shared/shared-main/feeds/feed.component.html</context> |
5919 | <context context-type="linenumber">3</context> | 5982 | <context context-type="linenumber">3</context> |
5920 | </context-group> | 5983 | </context-group> |
5921 | </trans-unit><trans-unit id="5511928240200239994" datatype="html"> | 5984 | </trans-unit> |
5922 | <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> | 5985 | <trans-unit id="5511928240200239994" datatype="html"> |
5986 | <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> | ||
5987 | <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> | ||
5923 | <context-group purpose="location"> | 5988 | <context-group purpose="location"> |
5924 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> | 5989 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> |
5925 | <context context-type="linenumber">5</context> | 5990 | <context context-type="linenumber">5</context> |
5926 | </context-group> | 5991 | </context-group> |
5927 | </trans-unit><trans-unit id="5339945526545410198" datatype="html"> | 5992 | </trans-unit> |
5928 | <source>Set up my channels</source><target state="new">Set up my channels</target> | 5993 | <trans-unit id="5339945526545410198" datatype="html"> |
5994 | <source>Set up my channels</source> | ||
5995 | <target state="new">Set up my channels</target> | ||
5929 | <context-group purpose="location"> | 5996 | <context-group purpose="location"> |
5930 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> | 5997 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> |
5931 | <context context-type="linenumber">6</context> | 5998 | <context context-type="linenumber">6</context> |
@@ -5982,8 +6049,8 @@ color: red; | |||
5982 | <trans-unit id="3438686710205841496" datatype="html"> | 6049 | <trans-unit id="3438686710205841496" datatype="html"> |
5983 | <source>Create playlist</source> | 6050 | <source>Create playlist</source> |
5984 | <target state="translated">プレイリストの作成</target> | 6051 | <target state="translated">プレイリストの作成</target> |
5985 | 6052 | <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> | |
5986 | <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> | 6053 | </trans-unit> |
5987 | <trans-unit id="7040375308762081154" datatype="html"> | 6054 | <trans-unit id="7040375308762081154" datatype="html"> |
5988 | <source>My video channels</source> | 6055 | <source>My video channels</source> |
5989 | <target state="translated">自分の動画チャンネル</target> | 6056 | <target state="translated">自分の動画チャンネル</target> |
@@ -6031,8 +6098,10 @@ color: red; | |||
6031 | <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> | 6098 | <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> |
6032 | <target state="translated">PeerTubeを利用するためにヘルプが必要な場合、<x id="START_LINK"/>ドキュメント<x id="CLOSE_LINK"/>を読むことができます。 </target> | 6099 | <target state="translated">PeerTubeを利用するためにヘルプが必要な場合、<x id="START_LINK"/>ドキュメント<x id="CLOSE_LINK"/>を読むことができます。 </target> |
6033 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">14</context></context-group> | 6100 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">14</context></context-group> |
6034 | </trans-unit><trans-unit id="8844610145426272276" datatype="html"> | 6101 | </trans-unit> |
6035 | <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> | 6102 | <trans-unit id="8844610145426272276" datatype="html"> |
6103 | <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> | ||
6104 | <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> | ||
6036 | <context-group purpose="location"> | 6105 | <context-group purpose="location"> |
6037 | <context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context> | 6106 | <context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context> |
6038 | <context context-type="linenumber">18,19</context> | 6107 | <context context-type="linenumber">18,19</context> |
@@ -6147,12 +6216,12 @@ color: red; | |||
6147 | <trans-unit id="403587185492002456" datatype="html"> | 6216 | <trans-unit id="403587185492002456" datatype="html"> |
6148 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> | 6217 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> |
6149 | <target state="new">{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</target> | 6218 | <target state="new">{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</target> |
6150 | 6219 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">23</context></context-group> | |
6151 | 6220 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">38</context></context-group> | |
6152 | 6221 | <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">30</context></context-group> | |
6153 | 6222 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">73</context></context-group> | |
6154 | 6223 | <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> | |
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">23</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">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">73</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> | 6224 | </trans-unit> |
6156 | <trans-unit id="3068011377000255023" datatype="html"> | 6225 | <trans-unit id="3068011377000255023" datatype="html"> |
6157 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> | 6226 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> |
6158 | <target state="new">{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</target> | 6227 | <target state="new">{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</target> |
@@ -6194,8 +6263,8 @@ color: red; | |||
6194 | <trans-unit id="5512878593724620692" datatype="html"> | 6263 | <trans-unit id="5512878593724620692" datatype="html"> |
6195 | <source>CHANNELS</source> | 6264 | <source>CHANNELS</source> |
6196 | <target state="translated">チャンネル</target> | 6265 | <target state="translated">チャンネル</target> |
6197 | 6266 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">81</context></context-group> | |
6198 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 6267 | </trans-unit> |
6199 | <trans-unit id="3666829335406793239" datatype="html"> | 6268 | <trans-unit id="3666829335406793239" datatype="html"> |
6200 | <source>This account does not have channels.</source> | 6269 | <source>This account does not have channels.</source> |
6201 | <target state="translated">このアカウントはチャンネルを持ってません。</target> | 6270 | <target state="translated">このアカウントはチャンネルを持ってません。</target> |
@@ -6320,7 +6389,6 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6320 | <context context-type="linenumber">16</context> | 6389 | <context context-type="linenumber">16</context> |
6321 | </context-group> | 6390 | </context-group> |
6322 | </trans-unit> | 6391 | </trans-unit> |
6323 | |||
6324 | <trans-unit id="8203367621031610680"> | 6392 | <trans-unit id="8203367621031610680"> |
6325 | <source>Your name</source> | 6393 | <source>Your name</source> |
6326 | <target>名前</target> | 6394 | <target>名前</target> |
@@ -6345,8 +6413,10 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6345 | <source>About <x id="INTERPOLATION"/></source> | 6413 | <source>About <x id="INTERPOLATION"/></source> |
6346 | <target state="translated"><x id="INTERPOLATION"/>について</target> | 6414 | <target state="translated"><x id="INTERPOLATION"/>について</target> |
6347 | <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> | 6415 | <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> |
6348 | </trans-unit><trans-unit id="8525213662266893834" datatype="html"> | 6416 | </trans-unit> |
6349 | <source>Contact us</source><target state="new">Contact us</target> | 6417 | <trans-unit id="8525213662266893834" datatype="html"> |
6418 | <source>Contact us</source> | ||
6419 | <target state="new">Contact us</target> | ||
6350 | <context-group purpose="location"> | 6420 | <context-group purpose="location"> |
6351 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> | 6421 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> |
6352 | <context context-type="linenumber">7</context> | 6422 | <context context-type="linenumber">7</context> |
@@ -6356,7 +6426,6 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6356 | <context context-type="linenumber">3</context> | 6426 | <context context-type="linenumber">3</context> |
6357 | </context-group> | 6427 | </context-group> |
6358 | </trans-unit> | 6428 | </trans-unit> |
6359 | |||
6360 | <trans-unit id="19872047295276660" datatype="html"> | 6429 | <trans-unit id="19872047295276660" datatype="html"> |
6361 | <source>This instance is dedicated to sensitive/NSFW content.</source> | 6430 | <source>This instance is dedicated to sensitive/NSFW content.</source> |
6362 | <target state="translated">このインスタンスはセンシティブもしくはNSFWなコンテンツに力を注いでいます。</target> | 6431 | <target state="translated">このインスタンスはセンシティブもしくはNSFWなコンテンツに力を注いでいます。</target> |
@@ -6657,24 +6726,26 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6657 | <trans-unit id="4195286790385468087" datatype="html"> | 6726 | <trans-unit id="4195286790385468087" datatype="html"> |
6658 | <source>About this instance</source> | 6727 | <source>About this instance</source> |
6659 | <target state="translated">このインスタンスについて</target> | 6728 | <target state="translated">このインスタンスについて</target> |
6660 | 6729 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">24</context></context-group> | |
6661 | <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> | 6730 | </trans-unit> |
6662 | <trans-unit id="8773846522957677259" datatype="html"> | 6731 | <trans-unit id="8773846522957677259" datatype="html"> |
6663 | <source>About PeerTube</source> | 6732 | <source>About PeerTube</source> |
6664 | <target state="translated">PeerTubeについて</target> | 6733 | <target state="translated">PeerTubeについて</target> |
6665 | 6734 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">49</context></context-group> | |
6666 | <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> | 6735 | </trans-unit> |
6667 | <trans-unit id="1812900507515561988" datatype="html"> | 6736 | <trans-unit id="1812900507515561988" datatype="html"> |
6668 | <source>About this instance's network</source> | 6737 | <source>About this instance's network</source> |
6669 | <target state="translated">このインスタンスのネットワークについて</target> | 6738 | <target state="translated">このインスタンスのネットワークについて</target> |
6670 | 6739 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">58</context></context-group> | |
6671 | <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> | 6740 | </trans-unit> |
6672 | <trans-unit id="892073694820881630" datatype="html"> | 6741 | <trans-unit id="892073694820881630" datatype="html"> |
6673 | <source>Link copied</source> | 6742 | <source>Link copied</source> |
6674 | <target state="translated">リンクをコピーしました</target> | 6743 | <target state="translated">リンクをコピーしました</target> |
6675 | <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> | 6744 | <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> |
6676 | </trans-unit><trans-unit id="4807161697338135032" datatype="html"> | 6745 | </trans-unit> |
6677 | <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> | 6746 | <trans-unit id="4807161697338135032" datatype="html"> |
6747 | <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> | ||
6748 | <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> | ||
6678 | <context-group purpose="location"> | 6749 | <context-group purpose="location"> |
6679 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> | 6750 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> |
6680 | <context context-type="linenumber">3</context> | 6751 | <context context-type="linenumber">3</context> |
@@ -6827,9 +6898,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6827 | <trans-unit id="819067926858619041" datatype="html"> | 6898 | <trans-unit id="819067926858619041" datatype="html"> |
6828 | <source>Account videos</source> | 6899 | <source>Account videos</source> |
6829 | <target state="translated">このアカウントの動画</target> | 6900 | <target state="translated">このアカウントの動画</target> |
6830 | 6901 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">35</context></context-group> | |
6831 | <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> | 6902 | </trans-unit> |
6832 | |||
6833 | <trans-unit id="4605517634011438234" datatype="html"> | 6903 | <trans-unit id="4605517634011438234" datatype="html"> |
6834 | <source>ACCOUNT</source> | 6904 | <source>ACCOUNT</source> |
6835 | <target state="translated">アカウント</target> | 6905 | <target state="translated">アカウント</target> |
@@ -6841,65 +6911,80 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6841 | <trans-unit id="6823616469362610020" datatype="html"> | 6911 | <trans-unit id="6823616469362610020" datatype="html"> |
6842 | <source>Account video channels</source> | 6912 | <source>Account video channels</source> |
6843 | <target state="translated">このアカウントのチャンネルリスト</target> | 6913 | <target state="translated">このアカウントのチャンネルリスト</target> |
6844 | 6914 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">26</context></context-group> | |
6845 | <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> | 6915 | </trans-unit> |
6846 | |||
6847 | <trans-unit id="807777065817324789" datatype="html"> | 6916 | <trans-unit id="807777065817324789" datatype="html"> |
6848 | <source>Display all videos (private, unlisted or not yet published)</source> | 6917 | <source>Display all videos (private, unlisted or not yet published)</source> |
6849 | <target state="new">Display all videos (private, unlisted or not yet published)</target> | 6918 | <target state="new">Display all videos (private, unlisted or not yet published)</target> |
6850 | 6919 | <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> | |
6851 | 6920 | </trans-unit> | |
6852 | 6921 | <trans-unit id="784681343382270982" datatype="html"> | |
6853 | 6922 | <source>Remove this filter</source> | |
6854 | 6923 | <target state="new">Remove this filter</target> | |
6855 | 6924 | <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> | |
6856 | 6925 | </trans-unit> | |
6857 | <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"> | 6926 | <trans-unit id="5254305728396198887" datatype="html"> |
6858 | <source>Remove this filter</source><target state="new">Remove this filter</target> | 6927 | <source>Sensitive content</source> |
6859 | 6928 | <target state="new">Sensitive content</target> | |
6860 | <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"> | 6929 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">115</context></context-group> |
6861 | <source>Sensitive content</source><target state="new">Sensitive content</target> | 6930 | </trans-unit> |
6862 | 6931 | <trans-unit id="5590086849807274701" datatype="html"> | |
6863 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">115</context></context-group></trans-unit><trans-unit id="5590086849807274701" datatype="html"> | 6932 | <source>Scope</source> |
6864 | <source>Scope</source><target state="new">Scope</target> | 6933 | <target state="new">Scope</target> |
6865 | 6934 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">122</context></context-group> | |
6866 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">122</context></context-group></trans-unit><trans-unit id="5019568087038659501" datatype="html"> | 6935 | </trans-unit> |
6867 | <source>Federated</source><target state="new">Federated</target> | 6936 | <trans-unit id="5019568087038659501" datatype="html"> |
6868 | 6937 | <source>Federated</source> | |
6869 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">124</context></context-group></trans-unit><trans-unit id="1949800099101277248" datatype="html"> | 6938 | <target state="new">Federated</target> |
6870 | <source>Languages</source><target state="new">Languages</target> | 6939 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">124</context></context-group> |
6871 | 6940 | </trans-unit> | |
6872 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">132</context></context-group></trans-unit><trans-unit id="1902100407096396858" datatype="html"> | 6941 | <trans-unit id="1949800099101277248" datatype="html"> |
6873 | <source>Categories</source><target state="new">Categories</target> | 6942 | <source>Languages</source> |
6874 | 6943 | <target state="new">Languages</target> | |
6875 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">141</context></context-group></trans-unit><trans-unit id="3599150758014724057" datatype="html"> | 6944 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">132</context></context-group> |
6876 | <source>All videos</source><target state="new">All videos</target> | 6945 | </trans-unit> |
6877 | 6946 | <trans-unit id="1902100407096396858" datatype="html"> | |
6878 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">150</context></context-group></trans-unit><trans-unit id="8466337030143068285" datatype="html"> | 6947 | <source>Categories</source> |
6879 | <source>Blurred</source><target state="new">Blurred</target> | 6948 | <target state="new">Categories</target> |
6880 | 6949 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">141</context></context-group> | |
6881 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">225</context></context-group></trans-unit><trans-unit id="7054829409324166420" datatype="html"> | 6950 | </trans-unit> |
6882 | <source>hidden</source><target state="new">hidden</target> | 6951 | <trans-unit id="3599150758014724057" datatype="html"> |
6883 | 6952 | <source>All videos</source> | |
6884 | <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="5766954855630346873" datatype="html"> | 6953 | <target state="new">All videos</target> |
6885 | <source>blurred</source><target state="new">blurred</target> | 6954 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">150</context></context-group> |
6886 | 6955 | </trans-unit> | |
6887 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">232</context></context-group></trans-unit><trans-unit id="1833483831276078393" datatype="html"> | 6956 | <trans-unit id="8466337030143068285" datatype="html"> |
6888 | <source>displayed</source><target state="new">displayed</target> | 6957 | <source>Blurred</source> |
6889 | 6958 | <target state="new">Blurred</target> | |
6890 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">234</context></context-group></trans-unit> | 6959 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">225</context></context-group> |
6960 | </trans-unit> | ||
6961 | <trans-unit id="7054829409324166420" datatype="html"> | ||
6962 | <source>hidden</source> | ||
6963 | <target state="new">hidden</target> | ||
6964 | <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> | ||
6965 | </trans-unit> | ||
6966 | <trans-unit id="5766954855630346873" datatype="html"> | ||
6967 | <source>blurred</source> | ||
6968 | <target state="new">blurred</target> | ||
6969 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">232</context></context-group> | ||
6970 | </trans-unit> | ||
6971 | <trans-unit id="1833483831276078393" datatype="html"> | ||
6972 | <source>displayed</source> | ||
6973 | <target state="new">displayed</target> | ||
6974 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">234</context></context-group> | ||
6975 | </trans-unit> | ||
6891 | <trans-unit id="4856575356061361269" datatype="html"> | 6976 | <trans-unit id="4856575356061361269" datatype="html"> |
6892 | <source><x id="PH"/> direct account followers </source> | 6977 | <source><x id="PH"/> direct account followers </source> |
6893 | <target state="new"> | 6978 | <target state="new"> |
6894 | <x id="PH"/> direct account followers | 6979 | <x id="PH"/> direct account followers |
6895 | </target> | 6980 | </target> |
6896 | 6981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">152</context></context-group> | |
6897 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">152</context></context-group></trans-unit> | 6982 | </trans-unit> |
6898 | <trans-unit id="6250999352462648289" datatype="html"> | 6983 | <trans-unit id="6250999352462648289" datatype="html"> |
6899 | <source>Report this account</source> | 6984 | <source>Report this account</source> |
6900 | <target state="translated">アカウントを通報する</target> | 6985 | <target state="translated">アカウントを通報する</target> |
6901 | 6986 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">196</context></context-group> | |
6902 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> | 6987 | </trans-unit> |
6903 | <trans-unit id="1504521795586863905" datatype="html"> | 6988 | <trans-unit id="1504521795586863905" datatype="html"> |
6904 | <source>VIDEOS</source> | 6989 | <source>VIDEOS</source> |
6905 | <target state="new">VIDEOS</target> | 6990 | <target state="new">VIDEOS</target> |
@@ -6909,19 +6994,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6909 | <trans-unit id="25349740244798533" datatype="html"> | 6994 | <trans-unit id="25349740244798533" datatype="html"> |
6910 | <source>Username copied</source> | 6995 | <source>Username copied</source> |
6911 | <target state="translated">ユーザー名をコピーしました</target> | 6996 | <target state="translated">ユーザー名をコピーしました</target> |
6912 | 6997 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">120</context></context-group> | |
6913 | 6998 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">103</context></context-group> | |
6914 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">120</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit> | 6999 | </trans-unit> |
6915 | <trans-unit id="9221735175659318025" datatype="html"> | 7000 | <trans-unit id="9221735175659318025" datatype="html"> |
6916 | <source>1 subscriber</source> | 7001 | <source>1 subscriber</source> |
6917 | <target state="translated">チャンネル登録者1人</target> | 7002 | <target state="translated">チャンネル登録者1人</target> |
6918 | 7003 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">124</context></context-group> | |
6919 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7004 | </trans-unit> |
6920 | <trans-unit id="4097331874769079975" datatype="html"> | 7005 | <trans-unit id="4097331874769079975" datatype="html"> |
6921 | <source><x id="PH"/> subscribers</source> | 7006 | <source><x id="PH"/> subscribers</source> |
6922 | <target state="translated">チャンネル登録者数 <x id="PH"/> 人</target> | 7007 | <target state="translated">チャンネル登録者数 <x id="PH"/> 人</target> |
6923 | 7008 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">126</context></context-group> | |
6924 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 7009 | </trans-unit> |
6925 | <trans-unit id="1035838766454786107" datatype="html"> | 7010 | <trans-unit id="1035838766454786107" datatype="html"> |
6926 | <source>Audio-only</source> | 7011 | <source>Audio-only</source> |
6927 | <target state="translated">音声のみ</target> | 7012 | <target state="translated">音声のみ</target> |
@@ -7084,8 +7169,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7084 | <trans-unit id="2060042292048624940"> | 7169 | <trans-unit id="2060042292048624940"> |
7085 | <source>Configuration updated.</source> | 7170 | <source>Configuration updated.</source> |
7086 | <target>設定が更新されました。</target> | 7171 | <target>設定が更新されました。</target> |
7087 | 7172 | <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">286</context></context-group> | |
7088 | <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">286</context></context-group></trans-unit> | 7173 | </trans-unit> |
7089 | <trans-unit id="6920964195632624609" datatype="html"> | 7174 | <trans-unit id="6920964195632624609" datatype="html"> |
7090 | <source>INSTANCE HOMEPAGE</source> | 7175 | <source>INSTANCE HOMEPAGE</source> |
7091 | <target state="translated">インスタンスのホームページ</target> | 7176 | <target state="translated">インスタンスのホームページ</target> |
@@ -7353,8 +7438,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7353 | <trans-unit id="2355066641781598196"> | 7438 | <trans-unit id="2355066641781598196"> |
7354 | <source>Follow request(s) sent!</source> | 7439 | <source>Follow request(s) sent!</source> |
7355 | <target>フォローリクエストを送信しました!</target> | 7440 | <target>フォローリクエストを送信しました!</target> |
7356 | 7441 | <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> | |
7357 | <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> | 7442 | </trans-unit> |
7358 | <trans-unit id="3459358413436264734" datatype="html"> | 7443 | <trans-unit id="3459358413436264734" datatype="html"> |
7359 | <source>Your instance subscriptions</source> | 7444 | <source>Your instance subscriptions</source> |
7360 | <target state="new">Your instance subscriptions</target> | 7445 | <target state="new">Your instance subscriptions</target> |
@@ -7366,8 +7451,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7366 | <trans-unit id="4245720728052819482"> | 7451 | <trans-unit id="4245720728052819482"> |
7367 | <source>Do you really want to unfollow <x id="PH"/>?</source> | 7452 | <source>Do you really want to unfollow <x id="PH"/>?</source> |
7368 | <target>本当に <x id="PH"/> のフォローを解除しますか?</target> | 7453 | <target>本当に <x id="PH"/> のフォローを解除しますか?</target> |
7369 | 7454 | <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> | |
7370 | <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> | 7455 | </trans-unit> |
7371 | <trans-unit id="9160510009013134726"> | 7456 | <trans-unit id="9160510009013134726"> |
7372 | <source>Unfollow</source> | 7457 | <source>Unfollow</source> |
7373 | <target>フォロー解除</target> | 7458 | <target>フォロー解除</target> |
@@ -7396,33 +7481,33 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7396 | <trans-unit id="81585474102700882" datatype="html"> | 7481 | <trans-unit id="81585474102700882" datatype="html"> |
7397 | <source>Used</source> | 7482 | <source>Used</source> |
7398 | <target state="new">Used</target> | 7483 | <target state="new">Used</target> |
7399 | 7484 | <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">102</context></context-group> | |
7400 | <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">102</context></context-group></trans-unit> | 7485 | </trans-unit> |
7401 | <trans-unit id="3955868613858648955" datatype="html"> | 7486 | <trans-unit id="3955868613858648955" datatype="html"> |
7402 | <source>Available</source> | 7487 | <source>Available</source> |
7403 | <target state="new">Available</target> | 7488 | <target state="new">Available</target> |
7404 | 7489 | <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">102</context></context-group> | |
7405 | <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">102</context></context-group></trans-unit> | 7490 | </trans-unit> |
7406 | <trans-unit id="5875705095657098468" datatype="html"> | 7491 | <trans-unit id="5875705095657098468" datatype="html"> |
7407 | <source>Do you really want to remove this video redundancy?</source> | 7492 | <source>Do you really want to remove this video redundancy?</source> |
7408 | <target state="new">Do you really want to remove this video redundancy?</target> | 7493 | <target state="new">Do you really want to remove this video redundancy?</target> |
7409 | 7494 | <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">142</context></context-group> | |
7410 | <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">142</context></context-group></trans-unit> | 7495 | </trans-unit> |
7411 | <trans-unit id="9098272570113000349" datatype="html"> | 7496 | <trans-unit id="9098272570113000349" datatype="html"> |
7412 | <source>Remove redundancy</source> | 7497 | <source>Remove redundancy</source> |
7413 | <target state="new">Remove redundancy</target> | 7498 | <target state="new">Remove redundancy</target> |
7414 | 7499 | <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">143</context></context-group> | |
7415 | <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">143</context></context-group></trans-unit> | 7500 | </trans-unit> |
7416 | <trans-unit id="6537102123107780785" datatype="html"> | 7501 | <trans-unit id="6537102123107780785" datatype="html"> |
7417 | <source>Video redundancies removed!</source> | 7502 | <source>Video redundancies removed!</source> |
7418 | <target state="new">Video redundancies removed!</target> | 7503 | <target state="new">Video redundancies removed!</target> |
7419 | 7504 | <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> | |
7420 | <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> | 7505 | </trans-unit> |
7421 | <trans-unit id="8639315630141911544"> | 7506 | <trans-unit id="8639315630141911544"> |
7422 | <source>Account <x id="PH"/> unmuted by your instance.</source> | 7507 | <source>Account <x id="PH"/> unmuted by your instance.</source> |
7423 | <target>あなたのインスタンスからアカウント <x id="PH"/> のミュートが解除されました。</target> | 7508 | <target>あなたのインスタンスからアカウント <x id="PH"/> のミュートが解除されました。</target> |
7424 | 7509 | <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> | |
7425 | <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> | 7510 | </trans-unit> |
7426 | <trans-unit id="3371601176452094961"> | 7511 | <trans-unit id="3371601176452094961"> |
7427 | <source>Instance <x id="PH"/> unmuted by your instance.</source> | 7512 | <source>Instance <x id="PH"/> unmuted by your instance.</source> |
7428 | <target>あなたのインスタンスからインスタンス <x id="PH"/> のミュートが解除されました。</target> | 7513 | <target>あなたのインスタンスからインスタンス <x id="PH"/> のミュートが解除されました。</target> |
@@ -7431,9 +7516,9 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7431 | <trans-unit id="1598375456114200087" datatype="html"> | 7516 | <trans-unit id="1598375456114200087" datatype="html"> |
7432 | <source>Instance <x id="PH"/> muted.</source> | 7517 | <source>Instance <x id="PH"/> muted.</source> |
7433 | <target state="translated">インスタンス<x id="PH"/>をミュートしました。</target> | 7518 | <target state="translated">インスタンス<x id="PH"/>をミュートしました。</target> |
7434 | 7519 | <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> | |
7435 | 7520 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">145</context></context-group> | |
7436 | <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">145</context></context-group></trans-unit> | 7521 | </trans-unit> |
7437 | <trans-unit id="3096398988891996621" datatype="html"> | 7522 | <trans-unit id="3096398988891996621" datatype="html"> |
7438 | <source>Instance <x id="PH"/> muted by your instance.</source> | 7523 | <source>Instance <x id="PH"/> muted by your instance.</source> |
7439 | <target state="translated">インスタンス <x id="PH"/>はあなたのインスタンスからミュートされました。</target> | 7524 | <target state="translated">インスタンス <x id="PH"/>はあなたのインスタンスからミュートされました。</target> |
@@ -7467,9 +7552,9 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7467 | <trans-unit id="8768506950499277937" datatype="html"> | 7552 | <trans-unit id="8768506950499277937" datatype="html"> |
7468 | <source>Copyright</source> | 7553 | <source>Copyright</source> |
7469 | <target state="translated">コピーライト</target> | 7554 | <target state="translated">コピーライト</target> |
7470 | 7555 | <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> | |
7471 | 7556 | <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> | |
7472 | <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">161</context></context-group></trans-unit> | 7557 | </trans-unit> |
7473 | <trans-unit id="3776575731053010580" datatype="html"> | 7558 | <trans-unit id="3776575731053010580" datatype="html"> |
7474 | <source>Server rules</source> | 7559 | <source>Server rules</source> |
7475 | <target state="translated">サーバールール</target> | 7560 | <target state="translated">サーバールール</target> |
@@ -7478,67 +7563,67 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7478 | <trans-unit id="6907161397537530258" datatype="html"> | 7563 | <trans-unit id="6907161397537530258" datatype="html"> |
7479 | <source>Thumbnails</source> | 7564 | <source>Thumbnails</source> |
7480 | <target state="translated">サムネイル</target> | 7565 | <target state="translated">サムネイル</target> |
7481 | 7566 | <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> | |
7482 | 7567 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">176</context></context-group> | |
7483 | <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">176</context></context-group></trans-unit> | 7568 | </trans-unit> |
7484 | <trans-unit id="6473213678768782133" datatype="html"> | 7569 | <trans-unit id="6473213678768782133" datatype="html"> |
7485 | <source>Internal actions</source> | 7570 | <source>Internal actions</source> |
7486 | <target state="new">Internal actions</target> | 7571 | <target state="new">Internal actions</target> |
7487 | 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">56</context></context-group> | |
7488 | 7573 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">256</context></context-group> | |
7489 | <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">56</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">256</context></context-group></trans-unit> | 7574 | </trans-unit> |
7490 | <trans-unit id="4559872264406386913" datatype="html"> | 7575 | <trans-unit id="4559872264406386913" datatype="html"> |
7491 | <source>Delete report</source> | 7576 | <source>Delete report</source> |
7492 | <target state="translated">通報を削除する</target> | 7577 | <target state="translated">通報を削除する</target> |
7493 | 7578 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">287</context></context-group> | |
7494 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">287</context></context-group></trans-unit> | 7579 | </trans-unit> |
7495 | <trans-unit id="5793550984155962433" datatype="html"> | 7580 | <trans-unit id="5793550984155962433" datatype="html"> |
7496 | <source>Actions for the flagged account</source> | 7581 | <source>Actions for the flagged account</source> |
7497 | <target state="new">Actions for the flagged account</target> | 7582 | <target state="new">Actions for the flagged account</target> |
7498 | 7583 | <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> | |
7499 | <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> | 7584 | </trans-unit> |
7500 | <trans-unit id="1679841953757186358"> | 7585 | <trans-unit id="1679841953757186358"> |
7501 | <source>Mark as accepted</source> | 7586 | <source>Mark as accepted</source> |
7502 | <target>承認済としてマーク</target> | 7587 | <target>承認済としてマーク</target> |
7503 | 7588 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">272</context></context-group> | |
7504 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">272</context></context-group></trans-unit> | 7589 | </trans-unit> |
7505 | <trans-unit id="7993358694073742566"> | 7590 | <trans-unit id="7993358694073742566"> |
7506 | <source>Mark as rejected</source> | 7591 | <source>Mark as rejected</source> |
7507 | <target>却下としてマーク</target> | 7592 | <target>却下としてマーク</target> |
7508 | 7593 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">277</context></context-group> | |
7509 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">277</context></context-group></trans-unit> | 7594 | </trans-unit> |
7510 | <trans-unit id="4175703770051343108" datatype="html"> | 7595 | <trans-unit id="4175703770051343108" datatype="html"> |
7511 | <source>Add internal note</source> | 7596 | <source>Add internal note</source> |
7512 | <target state="new">Add internal note</target> | 7597 | <target state="new">Add internal note</target> |
7513 | 7598 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">282</context></context-group> | |
7514 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">282</context></context-group></trans-unit> | 7599 | </trans-unit> |
7515 | <trans-unit id="296166371893775555" datatype="html"> | 7600 | <trans-unit id="296166371893775555" datatype="html"> |
7516 | <source>Actions for the video</source> | 7601 | <source>Actions for the video</source> |
7517 | <target state="new">Actions for the video</target> | 7602 | <target state="new">Actions for the video</target> |
7518 | 7603 | <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">79</context></context-group> | |
7519 | 7604 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">346</context></context-group> | |
7520 | <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">79</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">346</context></context-group></trans-unit> | 7605 | </trans-unit> |
7521 | <trans-unit id="3924877328520650445" datatype="html"> | 7606 | <trans-unit id="3924877328520650445" datatype="html"> |
7522 | <source>Block video</source> | 7607 | <source>Block video</source> |
7523 | <target state="translated">動画をブロックする</target> | 7608 | <target state="translated">動画をブロックする</target> |
7524 | 7609 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">351</context></context-group> | |
7525 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">351</context></context-group></trans-unit> | 7610 | </trans-unit> |
7526 | <trans-unit id="4762794934098378428" datatype="html"> | 7611 | <trans-unit id="4762794934098378428" datatype="html"> |
7527 | <source>Video blocked.</source> | 7612 | <source>Video blocked.</source> |
7528 | <target state="translated">動画がブロックされました。</target> | 7613 | <target state="translated">動画がブロックされました。</target> |
7529 | 7614 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">357</context></context-group> | |
7530 | 7615 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context><context context-type="linenumber">60</context></context-group> | |
7531 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">357</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> | 7616 | </trans-unit> |
7532 | <trans-unit id="4328862996304258770" datatype="html"> | 7617 | <trans-unit id="4328862996304258770" datatype="html"> |
7533 | <source>Unblock video</source> | 7618 | <source>Unblock video</source> |
7534 | <target state="translated">動画のブロックを解除する</target> | 7619 | <target state="translated">動画のブロックを解除する</target> |
7535 | 7620 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">367</context></context-group> | |
7536 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">367</context></context-group></trans-unit> | 7621 | </trans-unit> |
7537 | <trans-unit id="9065327551191479877" datatype="html"> | 7622 | <trans-unit id="9065327551191479877" datatype="html"> |
7538 | <source>Video unblocked.</source> | 7623 | <source>Video unblocked.</source> |
7539 | <target state="translated">動画のブロックが解除されました。</target> | 7624 | <target state="translated">動画のブロックが解除されました。</target> |
7540 | 7625 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">373</context></context-group> | |
7541 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">373</context></context-group></trans-unit> | 7626 | </trans-unit> |
7542 | <trans-unit id="1250415136605923486"> | 7627 | <trans-unit id="1250415136605923486"> |
7543 | <source>Do you really want to delete this abuse report?</source> | 7628 | <source>Do you really want to delete this abuse report?</source> |
7544 | <target>この悪用通報を本当に削除しますか?</target> | 7629 | <target>この悪用通報を本当に削除しますか?</target> |
@@ -7547,28 +7632,28 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7547 | <trans-unit id="3482559157143817408"> | 7632 | <trans-unit id="3482559157143817408"> |
7548 | <source>Abuse deleted.</source> | 7633 | <source>Abuse deleted.</source> |
7549 | <target>悪用が削除されました。</target> | 7634 | <target>悪用が削除されました。</target> |
7550 | 7635 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">151</context></context-group> | |
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">151</context></context-group></trans-unit> | 7636 | </trans-unit> |
7552 | <trans-unit id="6282990098351939529" datatype="html"> | 7637 | <trans-unit id="6282990098351939529" datatype="html"> |
7553 | <source>Deleted comment</source> | 7638 | <source>Deleted comment</source> |
7554 | <target state="translated">コメントが削除されました</target> | 7639 | <target state="translated">コメントが削除されました</target> |
7555 | 7640 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">227</context></context-group> | |
7556 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">227</context></context-group></trans-unit> | 7641 | </trans-unit> |
7557 | <trans-unit id="9196775343330824083" datatype="html"> | 7642 | <trans-unit id="9196775343330824083" datatype="html"> |
7558 | <source>Messages with reporter</source> | 7643 | <source>Messages with reporter</source> |
7559 | <target state="translated">通報者とのメッセージ</target> | 7644 | <target state="translated">通報者とのメッセージ</target> |
7560 | 7645 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">261</context></context-group> | |
7561 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">261</context></context-group></trans-unit> | 7646 | </trans-unit> |
7562 | <trans-unit id="8770468575924421391" datatype="html"> | 7647 | <trans-unit id="8770468575924421391" datatype="html"> |
7563 | <source>Messages with moderators</source> | 7648 | <source>Messages with moderators</source> |
7564 | <target state="translated">モデレーターとのメッセージ</target> | 7649 | <target state="translated">モデレーターとのメッセージ</target> |
7565 | 7650 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">262</context></context-group> | |
7566 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">262</context></context-group></trans-unit> | 7651 | </trans-unit> |
7567 | <trans-unit id="8528549800795985099" datatype="html"> | 7652 | <trans-unit id="8528549800795985099" datatype="html"> |
7568 | <source>Update internal note</source> | 7653 | <source>Update internal note</source> |
7569 | <target state="new">Update internal note</target> | 7654 | <target state="new">Update internal note</target> |
7570 | 7655 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">267</context></context-group> | |
7571 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">267</context></context-group></trans-unit> | 7656 | </trans-unit> |
7572 | <trans-unit id="3962242315365992494" datatype="html"> | 7657 | <trans-unit id="3962242315365992494" datatype="html"> |
7573 | <source>Switch video block to manual</source> | 7658 | <source>Switch video block to manual</source> |
7574 | <target state="needs-translation">Switch video block to manual</target> | 7659 | <target state="needs-translation">Switch video block to manual</target> |
@@ -7582,23 +7667,23 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7582 | <trans-unit id="7293356040886494773" datatype="html"> | 7667 | <trans-unit id="7293356040886494773" datatype="html"> |
7583 | <source>Do you really want to unblock this video? It will be available again in the videos list.</source> | 7668 | <source>Do you really want to unblock this video? It will be available again in the videos list.</source> |
7584 | <target state="translated">本当にこの動画のブロックを解除しますか?動画リストに再度表示されます。</target> | 7669 | <target state="translated">本当にこの動画のブロックを解除しますか?動画リストに再度表示されます。</target> |
7585 | 7670 | <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">132</context></context-group> | |
7586 | 7671 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">180</context></context-group> | |
7587 | <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">132</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">180</context></context-group></trans-unit> | 7672 | </trans-unit> |
7588 | <trans-unit id="4859202148272511129" datatype="html"> | 7673 | <trans-unit id="4859202148272511129" datatype="html"> |
7589 | <source>Unblock</source> | 7674 | <source>Unblock</source> |
7590 | <target state="translated">ブロック解除</target> | 7675 | <target state="translated">ブロック解除</target> |
7591 | 7676 | <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">83</context></context-group> | |
7592 | 7677 | <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">134</context></context-group> | |
7593 | 7678 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">182</context></context-group> | |
7594 | 7679 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">296</context></context-group> | |
7595 | <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">83</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">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">182</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">296</context></context-group></trans-unit> | 7680 | </trans-unit> |
7596 | <trans-unit id="4922469417589203720" datatype="html"> | 7681 | <trans-unit id="4922469417589203720" datatype="html"> |
7597 | <source>Video <x id="PH"/> unblocked.</source> | 7682 | <source>Video <x id="PH"/> unblocked.</source> |
7598 | <target state="translated">Video <x id="PH"/> unblocked.</target> | 7683 | <target state="translated">Video <x id="PH"/> unblocked.</target> |
7599 | 7684 | <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">140</context></context-group> | |
7600 | 7685 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">188</context></context-group> | |
7601 | <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">140</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">188</context></context-group></trans-unit> | 7686 | </trans-unit> |
7602 | <trans-unit id="6286037250766429054"> | 7687 | <trans-unit id="6286037250766429054"> |
7603 | <source>yes</source> | 7688 | <source>yes</source> |
7604 | <target>はい</target> | 7689 | <target>はい</target> |
@@ -7707,23 +7792,23 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7707 | <trans-unit id="6901018060567164184" datatype="html"> | 7792 | <trans-unit id="6901018060567164184" datatype="html"> |
7708 | <source>Plugins</source> | 7793 | <source>Plugins</source> |
7709 | <target state="translated">プラグイン</target> | 7794 | <target state="translated">プラグイン</target> |
7710 | 7795 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">31</context></context-group> | |
7711 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">31</context></context-group></trans-unit> | 7796 | </trans-unit> |
7712 | <trans-unit id="2798270190074840767" datatype="html"> | 7797 | <trans-unit id="2798270190074840767" datatype="html"> |
7713 | <source>Themes</source> | 7798 | <source>Themes</source> |
7714 | <target state="translated">テーマ</target> | 7799 | <target state="translated">テーマ</target> |
7715 | 7800 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">35</context></context-group> | |
7716 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">35</context></context-group></trans-unit> | 7801 | </trans-unit> |
7717 | <trans-unit id="2941409202780782189" datatype="html"> | 7802 | <trans-unit id="2941409202780782189" datatype="html"> |
7718 | <source>plugin</source> | 7803 | <source>plugin</source> |
7719 | <target state="translated">プラグイン</target> | 7804 | <target state="translated">プラグイン</target> |
7720 | 7805 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">43</context></context-group> | |
7721 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">43</context></context-group></trans-unit> | 7806 | </trans-unit> |
7722 | <trans-unit id="840045833311458646" datatype="html"> | 7807 | <trans-unit id="840045833311458646" datatype="html"> |
7723 | <source>theme</source> | 7808 | <source>theme</source> |
7724 | <target state="translated">テーマ</target> | 7809 | <target state="translated">テーマ</target> |
7725 | 7810 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">46</context></context-group> | |
7726 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 7811 | </trans-unit> |
7727 | <trans-unit id="2483018961011868950" datatype="html"> | 7812 | <trans-unit id="2483018961011868950" datatype="html"> |
7728 | <source>IP address</source> | 7813 | <source>IP address</source> |
7729 | <target state="translated">IPアドレス</target> | 7814 | <target state="translated">IPアドレス</target> |
@@ -7865,8 +7950,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7865 | <trans-unit id="1886888801485703107"> | 7950 | <trans-unit id="1886888801485703107"> |
7866 | <source>User <x id="PH"/> created.</source> | 7951 | <source>User <x id="PH"/> created.</source> |
7867 | <target>ユーザー <x id="PH"/> を作成しました。</target> | 7952 | <target>ユーザー <x id="PH"/> を作成しました。</target> |
7868 | 7953 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">77</context></context-group> | |
7869 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 7954 | </trans-unit> |
7870 | <trans-unit id="8286337167859377104" datatype="html"> | 7955 | <trans-unit id="8286337167859377104" datatype="html"> |
7871 | <source>Create user</source> | 7956 | <source>Create user</source> |
7872 | <target state="translated">ユーザー作成</target> | 7957 | <target state="translated">ユーザー作成</target> |
@@ -7890,23 +7975,23 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7890 | <trans-unit id="149953821752893163"> | 7975 | <trans-unit id="149953821752893163"> |
7891 | <source>Update user password</source> | 7976 | <source>Update user password</source> |
7892 | <target>ユーザーパスワードを更新する</target> | 7977 | <target>ユーザーパスワードを更新する</target> |
7893 | 7978 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">53</context></context-group> | |
7894 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">53</context></context-group></trans-unit> | 7979 | </trans-unit> |
7895 | <trans-unit id="780323526182667308" datatype="html"> | 7980 | <trans-unit id="780323526182667308" datatype="html"> |
7896 | <source>User <x id="PH"/> updated.</source> | 7981 | <source>User <x id="PH"/> updated.</source> |
7897 | <target state="translated">User <x id="PH"/> updated.</target> | 7982 | <target state="translated">User <x id="PH"/> updated.</target> |
7898 | 7983 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">92</context></context-group> | |
7899 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">92</context></context-group></trans-unit> | 7984 | </trans-unit> |
7900 | <trans-unit id="1349763489797682899"> | 7985 | <trans-unit id="1349763489797682899"> |
7901 | <source>Update user</source> | 7986 | <source>Update user</source> |
7902 | <target>ユーザーを更新する</target> | 7987 | <target>ユーザーを更新する</target> |
7903 | 7988 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">111</context></context-group> | |
7904 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">111</context></context-group></trans-unit> | 7989 | </trans-unit> |
7905 | <trans-unit id="8819563010322372715"> | 7990 | <trans-unit id="8819563010322372715"> |
7906 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> | 7991 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> |
7907 | <target>パスワードの再設定の手順が記載されたメールが <x id="PH"/> に送信されました。</target> | 7992 | <target>パスワードの再設定の手順が記載されたメールが <x id="PH"/> に送信されました。</target> |
7908 | 7993 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">118</context></context-group> | |
7909 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7994 | </trans-unit> |
7910 | <trans-unit id="7483807629538115183" datatype="html"> | 7995 | <trans-unit id="7483807629538115183" datatype="html"> |
7911 | <source>Users list</source> | 7996 | <source>Users list</source> |
7912 | <target state="translated">ユーザーリスト</target> | 7997 | <target state="translated">ユーザーリスト</target> |
@@ -7930,9 +8015,9 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7930 | <trans-unit id="3767259920053407667" datatype="html"> | 8015 | <trans-unit id="3767259920053407667" datatype="html"> |
7931 | <source>Videos will be deleted, comments will be tombstoned.</source> | 8016 | <source>Videos will be deleted, comments will be tombstoned.</source> |
7932 | <target state="translated">動画が削除され、コメントも削除されます。</target> | 8017 | <target state="translated">動画が削除され、コメントも削除されます。</target> |
7933 | 8018 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">82</context></context-group> | |
7934 | 8019 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">267</context></context-group> | |
7935 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">82</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">267</context></context-group></trans-unit> | 8020 | </trans-unit> |
7936 | <trans-unit id="4209525355702493436" datatype="html"> | 8021 | <trans-unit id="4209525355702493436" datatype="html"> |
7937 | <source>Ban</source> | 8022 | <source>Ban</source> |
7938 | <target state="new">Ban</target> | 8023 | <target state="new">Ban</target> |
@@ -7942,9 +8027,9 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7942 | <trans-unit id="3855396975723886053" datatype="html"> | 8027 | <trans-unit id="3855396975723886053" datatype="html"> |
7943 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> | 8028 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> |
7944 | <target state="translated">ユーザーがログイン出来なくなりますが、動画とコメントがそのまま残ります。</target> | 8029 | <target state="translated">ユーザーがログイン出来なくなりますが、動画とコメントがそのまま残ります。</target> |
7945 | 8030 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">88</context></context-group> | |
7946 | 8031 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">272</context></context-group> | |
7947 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">88</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">272</context></context-group></trans-unit> | 8032 | </trans-unit> |
7948 | <trans-unit id="4451482225013335720"> | 8033 | <trans-unit id="4451482225013335720"> |
7949 | <source>Unban</source> | 8034 | <source>Unban</source> |
7950 | <target>BANを解除</target> | 8035 | <target>BANを解除</target> |
@@ -7955,9 +8040,9 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7955 | <trans-unit id="7210277223053877333"> | 8040 | <trans-unit id="7210277223053877333"> |
7956 | <source>Set Email as Verified</source> | 8041 | <source>Set Email as Verified</source> |
7957 | <target>メールを確認済みとして設定</target> | 8042 | <target>メールを確認済みとして設定</target> |
7958 | 8043 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">100</context></context-group> | |
7959 | 8044 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">283</context></context-group> | |
7960 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">100</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">283</context></context-group></trans-unit> | 8045 | </trans-unit> |
7961 | <trans-unit id="4207916966377787111" datatype="html"> | 8046 | <trans-unit id="4207916966377787111" datatype="html"> |
7962 | <source>Created</source> | 8047 | <source>Created</source> |
7963 | <target state="new">Created</target> | 8048 | <target state="new">Created</target> |
@@ -8016,52 +8101,52 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8016 | <target> | 8101 | <target> |
8017 | <x id="PH"/> 名のユーザーが削除されました。 | 8102 | <x id="PH"/> 名のユーザーが削除されました。 |
8018 | </target> | 8103 | </target> |
8019 | 8104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">201</context></context-group> | |
8020 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">201</context></context-group></trans-unit> | 8105 | </trans-unit> |
8021 | <trans-unit id="8360664597512051242"> | 8106 | <trans-unit id="8360664597512051242"> |
8022 | <source><x id="PH"/> users email set as verified. </source> | 8107 | <source><x id="PH"/> users email set as verified. </source> |
8023 | <target>ユーザー | 8108 | <target>ユーザー |
8024 | <x id="PH"/> 名のメールアドレスは確認済として設定されています。 | 8109 | <x id="PH"/> 名のメールアドレスは確認済として設定されています。 |
8025 | </target> | 8110 | </target> |
8026 | 8111 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">213</context></context-group> | |
8027 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit> | 8112 | </trans-unit> |
8028 | <trans-unit id="7390990800435887351"> | 8113 | <trans-unit id="7390990800435887351"> |
8029 | <source>Account <x id="PH"/> unmuted.</source> | 8114 | <source>Account <x id="PH"/> unmuted.</source> |
8030 | <target>アカウント <x id="PH"/> のミュートを解除しました。</target> | 8115 | <target>アカウント <x id="PH"/> のミュートを解除しました。</target> |
8031 | 8116 | <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> | |
8032 | 8117 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">131</context></context-group> | |
8033 | <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">131</context></context-group></trans-unit> | 8118 | </trans-unit> |
8034 | <trans-unit id="7246356397085094208"> | 8119 | <trans-unit id="7246356397085094208"> |
8035 | <source>Instance <x id="PH"/> unmuted.</source> | 8120 | <source>Instance <x id="PH"/> unmuted.</source> |
8036 | <target>インスタンス <x id="PH"/> のミュートを解除しました。</target> | 8121 | <target>インスタンス <x id="PH"/> のミュートを解除しました。</target> |
8037 | 8122 | <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> | |
8038 | 8123 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">159</context></context-group> | |
8039 | <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">159</context></context-group></trans-unit> | 8124 | </trans-unit> |
8040 | <trans-unit id="5551551295632950210"> | 8125 | <trans-unit id="5551551295632950210"> |
8041 | <source>Videos history is enabled</source> | 8126 | <source>Videos history is enabled</source> |
8042 | <target>再生履歴が有効になっています</target> | 8127 | <target>再生履歴が有効になっています</target> |
8043 | 8128 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">114</context></context-group> | |
8044 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">114</context></context-group></trans-unit> | 8129 | </trans-unit> |
8045 | <trans-unit id="9136227503281311926"> | 8130 | <trans-unit id="9136227503281311926"> |
8046 | <source>Videos history is disabled</source> | 8131 | <source>Videos history is disabled</source> |
8047 | <target>再生履歴が無効になっています</target> | 8132 | <target>再生履歴が無効になっています</target> |
8048 | 8133 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">115</context></context-group> | |
8049 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">115</context></context-group></trans-unit> | 8134 | </trans-unit> |
8050 | <trans-unit id="8966726118414892732"> | 8135 | <trans-unit id="8966726118414892732"> |
8051 | <source>Delete videos history</source> | 8136 | <source>Delete videos history</source> |
8052 | <target>再生履歴を削除</target> | 8137 | <target>再生履歴を削除</target> |
8053 | 8138 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">127</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">127</context></context-group></trans-unit> | 8139 | </trans-unit> |
8055 | <trans-unit id="2482543433481435105"> | 8140 | <trans-unit id="2482543433481435105"> |
8056 | <source>Are you sure you want to delete all your videos history?</source> | 8141 | <source>Are you sure you want to delete all your videos history?</source> |
8057 | <target>再生履歴をすべて削除してもよろしいですか?</target> | 8142 | <target>再生履歴をすべて削除してもよろしいですか?</target> |
8058 | 8143 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">128</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">128</context></context-group></trans-unit> | 8144 | </trans-unit> |
8060 | <trans-unit id="4051606152827088952"> | 8145 | <trans-unit id="4051606152827088952"> |
8061 | <source>Videos history deleted</source> | 8146 | <source>Videos history deleted</source> |
8062 | <target>再生履歴を削除しました</target> | 8147 | <target>再生履歴を削除しました</target> |
8063 | 8148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">136</context></context-group> | |
8064 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">136</context></context-group></trans-unit> | 8149 | </trans-unit> |
8065 | <trans-unit id="1486537403020619891" datatype="html"> | 8150 | <trans-unit id="1486537403020619891" datatype="html"> |
8066 | <source>My watch history</source> | 8151 | <source>My watch history</source> |
8067 | <target state="translated">視聴履歴</target> | 8152 | <target state="translated">視聴履歴</target> |
@@ -8101,24 +8186,24 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8101 | <trans-unit id="853586874765134886"> | 8186 | <trans-unit id="853586874765134886"> |
8102 | <source>You current password is invalid.</source> | 8187 | <source>You current password is invalid.</source> |
8103 | <target>現在のパスワードは無効です。</target> | 8188 | <target>現在のパスワードは無効です。</target> |
8104 | 8189 | <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> | |
8105 | 8190 | <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> | |
8106 | <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> | 8191 | </trans-unit> |
8107 | <trans-unit id="6159571046971090595"> | 8192 | <trans-unit id="6159571046971090595"> |
8108 | <source>Password updated.</source> | 8193 | <source>Password updated.</source> |
8109 | <target>パスワードは変更されました。</target> | 8194 | <target>パスワードは変更されました。</target> |
8110 | 8195 | <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> | |
8111 | <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> | 8196 | </trans-unit> |
8112 | <trans-unit id="5179099584732142331" datatype="html"> | 8197 | <trans-unit id="5179099584732142331" datatype="html"> |
8113 | <source>Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</source> | 8198 | <source>Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</source> |
8114 | <target state="translated">本当にアカウントを削除しますか?チャンネル、動画、コメントを含めた全てのデータが削除されます。他のサーバーやサードパーティによってキャッシュされたコンテンツは、もう削除できなくなるかもしれません。</target> | 8199 | <target state="translated">本当にアカウントを削除しますか?チャンネル、動画、コメントを含めた全てのデータが削除されます。他のサーバーやサードパーティによってキャッシュされたコンテンツは、もう削除できなくなるかもしれません。</target> |
8115 | 8200 | <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">23</context></context-group> | |
8116 | <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">23</context></context-group></trans-unit> | 8201 | </trans-unit> |
8117 | <trans-unit id="6897292459203320054"> | 8202 | <trans-unit id="6897292459203320054"> |
8118 | <source>Type your username to confirm</source> | 8203 | <source>Type your username to confirm</source> |
8119 | <target>確認のためにユーザー名を入力してください</target> | 8204 | <target>確認のためにユーザー名を入力してください</target> |
8120 | 8205 | <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">24</context></context-group> | |
8121 | <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">24</context></context-group></trans-unit> | 8206 | </trans-unit> |
8122 | <trans-unit id="3122895472333547524" datatype="html"> | 8207 | <trans-unit id="3122895472333547524" datatype="html"> |
8123 | <source>Delete your account</source> | 8208 | <source>Delete your account</source> |
8124 | <target state="new">Delete your account</target> | 8209 | <target state="new">Delete your account</target> |
@@ -8127,19 +8212,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8127 | <trans-unit id="2520605306994744004"> | 8212 | <trans-unit id="2520605306994744004"> |
8128 | <source>Delete my account</source> | 8213 | <source>Delete my account</source> |
8129 | <target>アカウントを削除する</target> | 8214 | <target>アカウントを削除する</target> |
8130 | 8215 | <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">27</context></context-group> | |
8131 | <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">27</context></context-group></trans-unit> | 8216 | </trans-unit> |
8132 | <trans-unit id="3902597758945766483"> | 8217 | <trans-unit id="3902597758945766483"> |
8133 | <source>Your account is deleted.</source> | 8218 | <source>Your account is deleted.</source> |
8134 | <target>あなたのアカウントは削除されました。</target> | 8219 | <target>あなたのアカウントは削除されました。</target> |
8135 | 8220 | <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">34</context></context-group> | |
8136 | <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">34</context></context-group></trans-unit> | 8221 | </trans-unit> |
8137 | <trans-unit id="4776289814033837037" datatype="html"> | 8222 | <trans-unit id="4776289814033837037" datatype="html"> |
8138 | <source>Interface settings updated.</source> | 8223 | <source>Interface settings updated.</source> |
8139 | <target state="translated">外観設定が更新されました。</target> | 8224 | <target state="translated">外観設定が更新されました。</target> |
8140 | 8225 | <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> | |
8141 | 8226 | <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> | |
8142 | <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> | 8227 | </trans-unit> |
8143 | <trans-unit id="77907918814566205"> | 8228 | <trans-unit id="77907918814566205"> |
8144 | <source>New video from your subscriptions</source> | 8229 | <source>New video from your subscriptions</source> |
8145 | <target>登録チャンネルから新しい動画がアップロードされました</target> | 8230 | <target>登録チャンネルから新しい動画がアップロードされました</target> |
@@ -8234,8 +8319,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8234 | <trans-unit id="4967231969832964676"> | 8319 | <trans-unit id="4967231969832964676"> |
8235 | <source>Profile updated.</source> | 8320 | <source>Profile updated.</source> |
8236 | <target>プロフィールを更新しました。</target> | 8321 | <target>プロフィールを更新しました。</target> |
8237 | 8322 | <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> | |
8238 | <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> | 8323 | </trans-unit> |
8239 | <trans-unit id="6721822899525405039" datatype="html"> | 8324 | <trans-unit id="6721822899525405039" datatype="html"> |
8240 | <source>People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source> | 8325 | <source>People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source> |
8241 | <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> | 8326 | <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> |
@@ -8247,41 +8332,41 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8247 | <trans-unit id="3525866160632851851"> | 8332 | <trans-unit id="3525866160632851851"> |
8248 | <source>Avatar changed.</source> | 8333 | <source>Avatar changed.</source> |
8249 | <target>アバターを変更しました。</target> | 8334 | <target>アバターを変更しました。</target> |
8250 | 8335 | <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> | |
8251 | 8336 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">111</context></context-group> | |
8252 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">111</context></context-group></trans-unit> | 8337 | </trans-unit> |
8253 | <trans-unit id="8920809083620698740" datatype="html"> | 8338 | <trans-unit id="8920809083620698740" datatype="html"> |
8254 | <source>avatar</source> | 8339 | <source>avatar</source> |
8255 | <target state="translated">アバター</target> | 8340 | <target state="translated">アバター</target> |
8256 | 8341 | <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> | |
8257 | 8342 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">118</context></context-group> | |
8258 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 8343 | </trans-unit> |
8259 | <trans-unit id="2775050991871557896" datatype="html"> | 8344 | <trans-unit id="2775050991871557896" datatype="html"> |
8260 | <source>Avatar deleted.</source> | 8345 | <source>Avatar deleted.</source> |
8261 | <target state="translated">アバターを削除しました。</target> | 8346 | <target state="translated">アバターを削除しました。</target> |
8262 | 8347 | <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> | |
8263 | 8348 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">128</context></context-group> | |
8264 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> | 8349 | </trans-unit> |
8265 | <trans-unit id="1233062525939746039" datatype="html"> | 8350 | <trans-unit id="1233062525939746039" datatype="html"> |
8266 | <source>Unknown language</source> | 8351 | <source>Unknown language</source> |
8267 | <target state="translated">不明な言語</target> | 8352 | <target state="translated">不明な言語</target> |
8268 | 8353 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">41</context></context-group> | |
8269 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit> | 8354 | </trans-unit> |
8270 | <trans-unit id="3761504852202418603" datatype="html"> | 8355 | <trans-unit id="3761504852202418603" datatype="html"> |
8271 | <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source> | 8356 | <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source> |
8272 | <target state="translated">非常に多くの言語が設定されています。全ての言語を有効にするか、または20言語以下に設定してください。</target> | 8357 | <target state="translated">非常に多くの言語が設定されています。全ての言語を有効にするか、または20言語以下に設定してください。</target> |
8273 | 8358 | <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> | |
8274 | <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> | 8359 | </trans-unit> |
8275 | <trans-unit id="3960396487495291449" datatype="html"> | 8360 | <trans-unit id="3960396487495291449" datatype="html"> |
8276 | <source>Video settings updated.</source> | 8361 | <source>Video settings updated.</source> |
8277 | <target state="translated">動画設定が更新されました。</target> | 8362 | <target state="translated">動画設定が更新されました。</target> |
8278 | 8363 | <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> | |
8279 | <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> | 8364 | </trans-unit> |
8280 | <trans-unit id="3326446048041727269" datatype="html"> | 8365 | <trans-unit id="3326446048041727269" datatype="html"> |
8281 | <source>Display/Video settings updated.</source> | 8366 | <source>Display/Video settings updated.</source> |
8282 | <target state="translated">表示・動画設定が更新されました。</target> | 8367 | <target state="translated">表示・動画設定が更新されました。</target> |
8283 | 8368 | <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> | |
8284 | <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> | 8369 | </trans-unit> |
8285 | <trans-unit id="1137937154872046253"> | 8370 | <trans-unit id="1137937154872046253"> |
8286 | <source>Video channel <x id="PH"/> created.</source> | 8371 | <source>Video channel <x id="PH"/> created.</source> |
8287 | <target>動画チャンネル <x id="PH"/> を作成しました。</target> | 8372 | <target>動画チャンネル <x id="PH"/> を作成しました。</target> |
@@ -8295,23 +8380,23 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8295 | <trans-unit id="7589345916094713536"> | 8380 | <trans-unit id="7589345916094713536"> |
8296 | <source>Video channel <x id="PH"/> updated.</source> | 8381 | <source>Video channel <x id="PH"/> updated.</source> |
8297 | <target>動画チャンネル: <x id="PH"/> を更新しました。</target> | 8382 | <target>動画チャンネル: <x id="PH"/> を更新しました。</target> |
8298 | 8383 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">96</context></context-group> | |
8299 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">96</context></context-group></trans-unit> | 8384 | </trans-unit> |
8300 | <trans-unit id="8407755843502300957" datatype="html"> | 8385 | <trans-unit id="8407755843502300957" datatype="html"> |
8301 | <source>Banner changed.</source> | 8386 | <source>Banner changed.</source> |
8302 | <target state="translated">バナーが変更されました。</target> | 8387 | <target state="translated">バナーが変更されました。</target> |
8303 | 8388 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">141</context></context-group> | |
8304 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">141</context></context-group></trans-unit> | 8389 | </trans-unit> |
8305 | <trans-unit id="689638706960732906" datatype="html"> | 8390 | <trans-unit id="689638706960732906" datatype="html"> |
8306 | <source>banner</source> | 8391 | <source>banner</source> |
8307 | <target state="translated">バナー</target> | 8392 | <target state="translated">バナー</target> |
8308 | 8393 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">148</context></context-group> | |
8309 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">148</context></context-group></trans-unit> | 8394 | </trans-unit> |
8310 | <trans-unit id="3230561499965076671" datatype="html"> | 8395 | <trans-unit id="3230561499965076671" datatype="html"> |
8311 | <source>Banner deleted.</source> | 8396 | <source>Banner deleted.</source> |
8312 | <target state="translated">バナーが削除されました。</target> | 8397 | <target state="translated">バナーが削除されました。</target> |
8313 | 8398 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">158</context></context-group> | |
8314 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">158</context></context-group></trans-unit> | 8399 | </trans-unit> |
8315 | <trans-unit id="624066830180032195"> | 8400 | <trans-unit id="624066830180032195"> |
8316 | <source>Video channel <x id="PH"/> deleted.</source> | 8401 | <source>Video channel <x id="PH"/> deleted.</source> |
8317 | <target>動画チャンネル <x id="PH"/> を削除しました。</target> | 8402 | <target>動画チャンネル <x id="PH"/> を削除しました。</target> |
@@ -8367,8 +8452,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8367 | <trans-unit id="5032453707232754344"> | 8452 | <trans-unit id="5032453707232754344"> |
8368 | <source>Playlist <x id="PH"/> created.</source> | 8453 | <source>Playlist <x id="PH"/> created.</source> |
8369 | <target>プレイリスト <x id="PH"/> を作成しました。</target> | 8454 | <target>プレイリスト <x id="PH"/> を作成しました。</target> |
8370 | 8455 | <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> | |
8371 | <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> | 8456 | </trans-unit> |
8372 | <trans-unit id="5674286808255988565" datatype="html"> | 8457 | <trans-unit id="5674286808255988565" datatype="html"> |
8373 | <source>Create</source> | 8458 | <source>Create</source> |
8374 | <target state="new">Create</target> | 8459 | <target state="new">Create</target> |
@@ -8401,15 +8486,15 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8401 | <trans-unit id="1431617394009162547"> | 8486 | <trans-unit id="1431617394009162547"> |
8402 | <source>Playlist <x id="PH"/> updated.</source> | 8487 | <source>Playlist <x id="PH"/> updated.</source> |
8403 | <target>プレイリスト: <x id="PH"/> を更新しました。</target> | 8488 | <target>プレイリスト: <x id="PH"/> を更新しました。</target> |
8404 | 8489 | <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> | |
8405 | <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> | 8490 | </trans-unit> |
8406 | <trans-unit id="2027805873922338635"> | 8491 | <trans-unit id="2027805873922338635"> |
8407 | <source>Do you really want to delete <x id="PH"/>?</source> | 8492 | <source>Do you really want to delete <x id="PH"/>?</source> |
8408 | <target>本当にプレイリスト <x id="PH"/> を削除してもよろしいですか?</target> | 8493 | <target>本当にプレイリスト <x id="PH"/> を削除してもよろしいですか?</target> |
8409 | 8494 | <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> | |
8410 | 8495 | <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> | |
8411 | 8496 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">143</context></context-group> | |
8412 | <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">143</context></context-group></trans-unit> | 8497 | </trans-unit> |
8413 | <trans-unit id="4844578664427956129" datatype="html"> | 8498 | <trans-unit id="4844578664427956129" datatype="html"> |
8414 | <source>Change ownership</source> | 8499 | <source>Change ownership</source> |
8415 | <target state="translated">所有権を変更する</target> | 8500 | <target state="translated">所有権を変更する</target> |
@@ -8434,15 +8519,15 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8434 | <trans-unit id="8197117721861453263"> | 8519 | <trans-unit id="8197117721861453263"> |
8435 | <source>Do you really want to delete <x id="PH"/> videos?</source> | 8520 | <source>Do you really want to delete <x id="PH"/> videos?</source> |
8436 | <target>本当に <x id="PH"/> 個の動画を削除してもよろしいですか?</target> | 8521 | <target>本当に <x id="PH"/> 個の動画を削除してもよろしいですか?</target> |
8437 | 8522 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">116</context></context-group> | |
8438 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">116</context></context-group></trans-unit> | 8523 | </trans-unit> |
8439 | <trans-unit id="2728855911908920537"> | 8524 | <trans-unit id="2728855911908920537"> |
8440 | <source><x id="PH"/> videos deleted. </source> | 8525 | <source><x id="PH"/> videos deleted. </source> |
8441 | <target> | 8526 | <target> |
8442 | <x id="PH"/> 個の動画を削除しました。 | 8527 | <x id="PH"/> 個の動画を削除しました。 |
8443 | </target> | 8528 | </target> |
8444 | 8529 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">133</context></context-group> | |
8445 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit> | 8530 | </trans-unit> |
8446 | <trans-unit id="2027805873922338635"> | 8531 | <trans-unit id="2027805873922338635"> |
8447 | <source>Do you really want to delete <x id="PH"/>? </source> | 8532 | <source>Do you really want to delete <x id="PH"/>? </source> |
8448 | <target>本当に動画 | 8533 | <target>本当に動画 |
@@ -8456,14 +8541,14 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8456 | <trans-unit id="2767660806989176400"> | 8541 | <trans-unit id="2767660806989176400"> |
8457 | <source>Video <x id="PH"/> deleted.</source> | 8542 | <source>Video <x id="PH"/> deleted.</source> |
8458 | <target>動画 <x id="PH"/> を削除しました。</target> | 8543 | <target>動画 <x id="PH"/> を削除しました。</target> |
8459 | 8544 | <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> | |
8460 | 8545 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">214</context></context-group> | |
8461 | <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/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">214</context></context-group></trans-unit> | 8546 | </trans-unit> |
8462 | <trans-unit id="6810714890760227072"> | 8547 | <trans-unit id="6810714890760227072"> |
8463 | <source>Ownership change request sent.</source> | 8548 | <source>Ownership change request sent.</source> |
8464 | <target>所有権の変更リクエストが送信されました。</target> | 8549 | <target>所有権の変更リクエストが送信されました。</target> |
8465 | 8550 | <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> | |
8466 | <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> | 8551 | </trans-unit> |
8467 | <trans-unit id="7699622144571229146" datatype="html"> | 8552 | <trans-unit id="7699622144571229146" datatype="html"> |
8468 | <source>Sort by</source> | 8553 | <source>Sort by</source> |
8469 | <target state="new">Sort by</target> | 8554 | <target state="new">Sort by</target> |
@@ -8525,9 +8610,9 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8525 | <trans-unit id="7916647920967632052" datatype="html"> | 8610 | <trans-unit id="7916647920967632052" datatype="html"> |
8526 | <source>max size</source> | 8611 | <source>max size</source> |
8527 | <target state="translated">最大サイズ</target> | 8612 | <target state="translated">最大サイズ</target> |
8528 | 8613 | <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> | |
8529 | 8614 | <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> | |
8530 | <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> | 8615 | </trans-unit> |
8531 | <trans-unit id="6489275254908395777" datatype="html"> | 8616 | <trans-unit id="6489275254908395777" datatype="html"> |
8532 | <source>Maximize editor</source> | 8617 | <source>Maximize editor</source> |
8533 | <target state="new">Maximize editor</target> | 8618 | <target state="new">Maximize editor</target> |
@@ -8541,13 +8626,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8541 | <trans-unit id="6537885755702623401" datatype="html"> | 8626 | <trans-unit id="6537885755702623401" datatype="html"> |
8542 | <source>Now please check your emails to verify your account and complete signup.</source> | 8627 | <source>Now please check your emails to verify your account and complete signup.</source> |
8543 | <target state="translated">アカウントの認証とアカウント作成を完了するため、メールをチェックしてください。</target> | 8628 | <target state="translated">アカウントの認証とアカウント作成を完了するため、メールをチェックしてください。</target> |
8544 | 8629 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">129</context></context-group> | |
8545 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit> | 8630 | </trans-unit> |
8546 | <trans-unit id="2847376451647729886"> | 8631 | <trans-unit id="2847376451647729886"> |
8547 | <source>You are now logged in as <x id="PH"/>!</source> | 8632 | <source>You are now logged in as <x id="PH"/>!</source> |
8548 | <target><x id="PH"/> としてログインしています!</target> | 8633 | <target><x id="PH"/> としてログインしています!</target> |
8549 | 8634 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">137</context></context-group> | |
8550 | <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> | 8635 | </trans-unit> |
8551 | <trans-unit id="2687679787442328897"> | 8636 | <trans-unit id="2687679787442328897"> |
8552 | <source>An email with verification link will be sent to <x id="PH"/>.</source> | 8637 | <source>An email with verification link will be sent to <x id="PH"/>.</source> |
8553 | <target>確認リンクを記載したメールが <x id="PH"/> に送信されます。</target> | 8638 | <target>確認リンクを記載したメールが <x id="PH"/> に送信されます。</target> |
@@ -8559,13 +8644,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8559 | <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> | 8644 | <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> |
8560 | <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">33</context></context-group> | 8645 | <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">33</context></context-group> |
8561 | </trans-unit> | 8646 | </trans-unit> |
8562 | |||
8563 | <trans-unit id="1783173774503340906"> | 8647 | <trans-unit id="1783173774503340906"> |
8564 | <source>Subscribe to the account</source> | 8648 | <source>Subscribe to the account</source> |
8565 | <target>アカウントを購読する</target> | 8649 | <target>アカウントを購読する</target> |
8566 | 8650 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">71</context></context-group> | |
8567 | 8651 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">713</context></context-group> | |
8568 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">71</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">713</context></context-group></trans-unit> | 8652 | </trans-unit> |
8569 | <trans-unit id="3131904093925601441" datatype="html"> | 8653 | <trans-unit id="3131904093925601441" datatype="html"> |
8570 | <source>PLAYLISTS</source> | 8654 | <source>PLAYLISTS</source> |
8571 | <target state="translated">プレイリスト</target> | 8655 | <target state="translated">プレイリスト</target> |
@@ -8577,38 +8661,38 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8577 | <trans-unit id="7709367721354853232"> | 8661 | <trans-unit id="7709367721354853232"> |
8578 | <source>Focus the search bar</source> | 8662 | <source>Focus the search bar</source> |
8579 | <target>検索バーを絞り込む</target> | 8663 | <target>検索バーを絞り込む</target> |
8580 | 8664 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">270</context></context-group> | |
8581 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">270</context></context-group></trans-unit> | 8665 | </trans-unit> |
8582 | <trans-unit id="4049262826107502276"> | 8666 | <trans-unit id="4049262826107502276"> |
8583 | <source>Toggle the left menu</source> | 8667 | <source>Toggle the left menu</source> |
8584 | <target>メニューの表示/非表示</target> | 8668 | <target>メニューの表示/非表示</target> |
8585 | 8669 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">275</context></context-group> | |
8586 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">275</context></context-group></trans-unit> | 8670 | </trans-unit> |
8587 | <trans-unit id="5409372033656550095" datatype="html"> | 8671 | <trans-unit id="5409372033656550095" datatype="html"> |
8588 | <source>Go to the discover videos page</source> | 8672 | <source>Go to the discover videos page</source> |
8589 | <target state="translated">ディスカバーページへ移動</target> | 8673 | <target state="translated">ディスカバーページへ移動</target> |
8590 | 8674 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">280</context></context-group> | |
8591 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">280</context></context-group></trans-unit> | 8675 | </trans-unit> |
8592 | <trans-unit id="4278050445961255445"> | 8676 | <trans-unit id="4278050445961255445"> |
8593 | <source>Go to the trending videos page</source> | 8677 | <source>Go to the trending videos page</source> |
8594 | <target>トレンドのページへ移動する</target> | 8678 | <target>トレンドのページへ移動する</target> |
8595 | 8679 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">285</context></context-group> | |
8596 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">285</context></context-group></trans-unit> | 8680 | </trans-unit> |
8597 | <trans-unit id="3242234958443825475"> | 8681 | <trans-unit id="3242234958443825475"> |
8598 | <source>Go to the recently added videos page</source> | 8682 | <source>Go to the recently added videos page</source> |
8599 | <target>最近投稿された動画ページへ移動</target> | 8683 | <target>最近投稿された動画ページへ移動</target> |
8600 | 8684 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">290</context></context-group> | |
8601 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">290</context></context-group></trans-unit> | 8685 | </trans-unit> |
8602 | <trans-unit id="2887122197778293919"> | 8686 | <trans-unit id="2887122197778293919"> |
8603 | <source>Go to the local videos page</source> | 8687 | <source>Go to the local videos page</source> |
8604 | <target>ローカル動画のページへ移動</target> | 8688 | <target>ローカル動画のページへ移動</target> |
8605 | 8689 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">295</context></context-group> | |
8606 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">295</context></context-group></trans-unit> | 8690 | </trans-unit> |
8607 | <trans-unit id="8009065619559214982"> | 8691 | <trans-unit id="8009065619559214982"> |
8608 | <source>Go to the videos upload page</source> | 8692 | <source>Go to the videos upload page</source> |
8609 | <target>動画のアップロードページへ移動する</target> | 8693 | <target>動画のアップロードページへ移動する</target> |
8610 | 8694 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">300</context></context-group> | |
8611 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">300</context></context-group></trans-unit> | 8695 | </trans-unit> |
8612 | <trans-unit id="3779524668013120370"> | 8696 | <trans-unit id="3779524668013120370"> |
8613 | <source>Go to my subscriptions</source> | 8697 | <source>Go to my subscriptions</source> |
8614 | <target>自分の登録チャンネルへ移動</target> | 8698 | <target>自分の登録チャンネルへ移動</target> |
@@ -8639,8 +8723,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8639 | <trans-unit id="375263728166936544"> | 8723 | <trans-unit id="375263728166936544"> |
8640 | <source>You need to reconnect.</source> | 8724 | <source>You need to reconnect.</source> |
8641 | <target>再接続する必要があります。</target> | 8725 | <target>再接続する必要があります。</target> |
8642 | 8726 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">221</context></context-group> | |
8643 | <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> | 8727 | </trans-unit> |
8644 | <trans-unit id="2206638022166154361"> | 8728 | <trans-unit id="2206638022166154361"> |
8645 | <source>Keyboard Shortcuts:</source> | 8729 | <source>Keyboard Shortcuts:</source> |
8646 | <target>キーボードショートカット:</target> | 8730 | <target>キーボードショートカット:</target> |
@@ -8665,8 +8749,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8665 | <trans-unit id="232050922346936574" datatype="html"> | 8749 | <trans-unit id="232050922346936574" datatype="html"> |
8666 | <source>Trending</source> | 8750 | <source>Trending</source> |
8667 | <target state="translated">トレンド</target> | 8751 | <target state="translated">トレンド</target> |
8668 | 8752 | <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> | |
8669 | <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> | 8753 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">131</context></context-group> |
8754 | </trans-unit> | ||
8670 | <trans-unit id="6470888608149621404" datatype="html"> | 8755 | <trans-unit id="6470888608149621404" datatype="html"> |
8671 | <source>ON <x id="PH" equiv-text="config.instance.name"/></source> | 8756 | <source>ON <x id="PH" equiv-text="config.instance.name"/></source> |
8672 | <target state="new">ON <x id="PH" equiv-text="config.instance.name"/></target> | 8757 | <target state="new">ON <x id="PH" equiv-text="config.instance.name"/></target> |
@@ -8729,54 +8814,54 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8729 | <trans-unit id="6048892649018070225"> | 8814 | <trans-unit id="6048892649018070225"> |
8730 | <source>Today</source> | 8815 | <source>Today</source> |
8731 | <target>今日</target> | 8816 | <target>今日</target> |
8732 | 8817 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">41</context></context-group> | |
8733 | 8818 | <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> | |
8734 | 8819 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">123</context></context-group> | |
8735 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">41</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">123</context></context-group></trans-unit> | 8820 | </trans-unit> |
8736 | <trans-unit id="4498682414491138092" datatype="html"> | 8821 | <trans-unit id="4498682414491138092" datatype="html"> |
8737 | <source>Yesterday</source> | 8822 | <source>Yesterday</source> |
8738 | <target state="translated">昨日</target> | 8823 | <target state="translated">昨日</target> |
8739 | 8824 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">124</context></context-group> | |
8740 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 8825 | </trans-unit> |
8741 | <trans-unit id="5073473933031004097" datatype="html"> | 8826 | <trans-unit id="5073473933031004097" datatype="html"> |
8742 | <source>This week</source> | 8827 | <source>This week</source> |
8743 | <target state="translated">今週</target> | 8828 | <target state="translated">今週</target> |
8744 | 8829 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">125</context></context-group> | |
8745 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> | 8830 | </trans-unit> |
8746 | <trans-unit id="842657237693374355" datatype="html"> | 8831 | <trans-unit id="842657237693374355" datatype="html"> |
8747 | <source>This month</source> | 8832 | <source>This month</source> |
8748 | <target state="translated">今月</target> | 8833 | <target state="translated">今月</target> |
8749 | 8834 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">126</context></context-group> | |
8750 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 8835 | </trans-unit> |
8751 | <trans-unit id="4463380307954693363" datatype="html"> | 8836 | <trans-unit id="4463380307954693363" datatype="html"> |
8752 | <source>Last month</source> | 8837 | <source>Last month</source> |
8753 | <target state="translated">先月</target> | 8838 | <target state="translated">先月</target> |
8754 | 8839 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">127</context></context-group> | |
8755 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | 8840 | </trans-unit> |
8756 | <trans-unit id="7473676707373218484" datatype="html"> | 8841 | <trans-unit id="7473676707373218484" datatype="html"> |
8757 | <source>Older</source> | 8842 | <source>Older</source> |
8758 | <target state="translated">もっと前</target> | 8843 | <target state="translated">もっと前</target> |
8759 | 8844 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">128</context></context-group> | |
8760 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> | 8845 | </trans-unit> |
8761 | <trans-unit id="5036991421517255667" datatype="html"> | 8846 | <trans-unit id="5036991421517255667" datatype="html"> |
8762 | <source>Cannot load more videos. Try again later.</source> | 8847 | <source>Cannot load more videos. Try again later.</source> |
8763 | <target state="translated">これ以上の動画を読み込むことができません。時間をおいてまた試して下さい。</target> | 8848 | <target state="translated">これ以上の動画を読み込むことができません。時間をおいてまた試して下さい。</target> |
8764 | 8849 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">225</context></context-group> | |
8765 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">225</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">127</context></context-group></trans-unit> | 8850 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">127</context></context-group> |
8766 | 8851 | </trans-unit> | |
8767 | <trans-unit id="4873149362496451858"> | 8852 | <trans-unit id="4873149362496451858"> |
8768 | <source>Last 7 days</source> | 8853 | <source>Last 7 days</source> |
8769 | <target>過去 7 日間</target> | 8854 | <target>過去7日間</target> |
8770 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">45</context></context-group> | 8855 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">45</context></context-group> |
8771 | </trans-unit> | 8856 | </trans-unit> |
8772 | <trans-unit id="2949150997160654358"> | 8857 | <trans-unit id="2949150997160654358"> |
8773 | <source>Last 30 days</source> | 8858 | <source>Last 30 days</source> |
8774 | <target>過去 30 日間</target> | 8859 | <target>過去30日間</target> |
8775 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">49</context></context-group> | 8860 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">49</context></context-group> |
8776 | </trans-unit> | 8861 | </trans-unit> |
8777 | <trans-unit id="5328600704510694984"> | 8862 | <trans-unit id="5328600704510694984"> |
8778 | <source>Last 365 days</source> | 8863 | <source>Last 365 days</source> |
8779 | <target>過去 365 日間</target> | 8864 | <target>過去365日間</target> |
8780 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">53</context></context-group> | 8865 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">53</context></context-group> |
8781 | </trans-unit> | 8866 | </trans-unit> |
8782 | <trans-unit id="2392481201920342009" datatype="html"> | 8867 | <trans-unit id="2392481201920342009" datatype="html"> |
@@ -8797,17 +8882,17 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8797 | </trans-unit> | 8882 | </trans-unit> |
8798 | <trans-unit id="8487565500496466433"> | 8883 | <trans-unit id="8487565500496466433"> |
8799 | <source>Short (< 4 min)</source> | 8884 | <source>Short (< 4 min)</source> |
8800 | <target>短い (< 4 分)</target> | 8885 | <target>短い(< 4 分)</target> |
8801 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">71</context></context-group> | 8886 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">71</context></context-group> |
8802 | </trans-unit> | 8887 | </trans-unit> |
8803 | <trans-unit id="3642535017283477339"> | 8888 | <trans-unit id="3642535017283477339"> |
8804 | <source>Medium (4-10 min)</source> | 8889 | <source>Medium (4-10 min)</source> |
8805 | <target>中間 (4 ~ 10 分)</target> | 8890 | <target>中間(4 ~ 10 分)</target> |
8806 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">75</context></context-group> | 8891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">75</context></context-group> |
8807 | </trans-unit> | 8892 | </trans-unit> |
8808 | <trans-unit id="6613870447286561244"> | 8893 | <trans-unit id="6613870447286561244"> |
8809 | <source>Long (> 10 min)</source> | 8894 | <source>Long (> 10 min)</source> |
8810 | <target>長い (> 10 分)</target> | 8895 | <target>長い(> 10 分)</target> |
8811 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">79</context></context-group> | 8896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">79</context></context-group> |
8812 | </trans-unit> | 8897 | </trans-unit> |
8813 | <trans-unit id="1787083504545967"> | 8898 | <trans-unit id="1787083504545967"> |
@@ -8823,24 +8908,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8823 | <trans-unit id="2123659921722214537"> | 8908 | <trans-unit id="2123659921722214537"> |
8824 | <source>Views</source> | 8909 | <source>Views</source> |
8825 | <target>視聴回数</target> | 8910 | <target>視聴回数</target> |
8826 | 8911 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">94</context></context-group> | |
8827 | 8912 | </trans-unit> | |
8828 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit> | ||
8829 | <trans-unit id="3208627574396957172" datatype="html"> | 8913 | <trans-unit id="3208627574396957172" datatype="html"> |
8830 | <source>Search index is unavailable. Retrying with instance results instead.</source> | 8914 | <source>Search index is unavailable. Retrying with instance results instead.</source> |
8831 | <target state="new">Search index is unavailable. Retrying with instance results instead.</target> | 8915 | <target state="new">Search index is unavailable. Retrying with instance results instead.</target> |
8832 | 8916 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">163</context></context-group> | |
8833 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 8917 | </trans-unit> |
8834 | <trans-unit id="307702206382241469" datatype="html"> | 8918 | <trans-unit id="307702206382241469" datatype="html"> |
8835 | <source>Search error</source> | 8919 | <source>Search error</source> |
8836 | <target state="translated">検索エラー</target> | 8920 | <target state="translated">検索エラー</target> |
8837 | 8921 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">164</context></context-group> | |
8838 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">164</context></context-group></trans-unit> | 8922 | </trans-unit> |
8839 | <trans-unit id="8491751845906232809" datatype="html"> | 8923 | <trans-unit id="8491751845906232809" datatype="html"> |
8840 | <source>PeerTube instance host filter is invalid</source> | 8924 | <source>PeerTube instance host filter is invalid</source> |
8841 | <target state="new">PeerTube instance host filter is invalid</target> | 8925 | <target state="new">PeerTube instance host filter is invalid</target> |
8842 | 8926 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">332</context></context-group> | |
8843 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">332</context></context-group></trans-unit> | 8927 | </trans-unit> |
8844 | <trans-unit id="4580988005648117665" datatype="html"> | 8928 | <trans-unit id="4580988005648117665" datatype="html"> |
8845 | <source>Search</source> | 8929 | <source>Search</source> |
8846 | <target state="translated">検索</target> | 8930 | <target state="translated">検索</target> |
@@ -9294,17 +9378,17 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9294 | <trans-unit id="2761226139624435788"> | 9378 | <trans-unit id="2761226139624435788"> |
9295 | <source>Description must be at least 3 characters long.</source> | 9379 | <source>Description must be at least 3 characters long.</source> |
9296 | <target>説明は 3 文字以上にする必要があります。</target> | 9380 | <target>説明は 3 文字以上にする必要があります。</target> |
9297 | 9381 | <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> | |
9298 | 9382 | <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> | |
9299 | 9383 | <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> | |
9300 | <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> | 9384 | </trans-unit> |
9301 | <trans-unit id="4717982586356605243"> | 9385 | <trans-unit id="4717982586356605243"> |
9302 | <source>Description cannot be more than 1000 characters long.</source> | 9386 | <source>Description cannot be more than 1000 characters long.</source> |
9303 | <target>説明は 1,000 文字以内でなければなりません。</target> | 9387 | <target>説明は 1,000 文字以内でなければなりません。</target> |
9304 | 9388 | <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> | |
9305 | 9389 | <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> | |
9306 | 9390 | <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> | |
9307 | <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> | 9391 | </trans-unit> |
9308 | <trans-unit id="1814372869868173571" datatype="html"> | 9392 | <trans-unit id="1814372869868173571" datatype="html"> |
9309 | <source>You must agree with the instance terms in order to register on it.</source> | 9393 | <source>You must agree with the instance terms in order to register on it.</source> |
9310 | <target state="translated">インスタンスにアカウントを作成するには、必ずインスタンスの利用規約に同意しなければなりません。</target> | 9394 | <target state="translated">インスタンスにアカウントを作成するには、必ずインスタンスの利用規約に同意しなければなりません。</target> |
@@ -9323,23 +9407,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9323 | <trans-unit id="6632896893630378443"> | 9407 | <trans-unit id="6632896893630378443"> |
9324 | <source>Display name is required.</source> | 9408 | <source>Display name is required.</source> |
9325 | <target>表示名は必須です。</target> | 9409 | <target>表示名は必須です。</target> |
9326 | 9410 | <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> | |
9327 | 9411 | <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> | |
9328 | 9412 | <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> | |
9329 | <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> | 9413 | </trans-unit> |
9330 | <trans-unit id="1303578752658966736"> | 9414 | <trans-unit id="1303578752658966736"> |
9331 | <source>Display name must be at least 1 character long.</source> | 9415 | <source>Display name must be at least 1 character long.</source> |
9332 | <target>表示名は 1 文字以上にする必要があります。</target> | 9416 | <target>表示名は 1 文字以上にする必要があります。</target> |
9333 | 9417 | <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> | |
9334 | 9418 | <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> | |
9335 | 9419 | <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> | |
9336 | <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> | 9420 | </trans-unit> |
9337 | <trans-unit id="4613240543124934954"> | 9421 | <trans-unit id="4613240543124934954"> |
9338 | <source>Display name cannot be more than 50 characters long.</source> | 9422 | <source>Display name cannot be more than 50 characters long.</source> |
9339 | <target>表示名は 50 文字以内でなければなりません。</target> | 9423 | <target>表示名は 50 文字以内でなければなりません。</target> |
9340 | 9424 | <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> | |
9341 | 9425 | <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> | |
9342 | <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> | 9426 | </trans-unit> |
9343 | <trans-unit id="1000468652492651683"> | 9427 | <trans-unit id="1000468652492651683"> |
9344 | <source>Report reason is required.</source> | 9428 | <source>Report reason is required.</source> |
9345 | <target>通報理由が必要です。</target> | 9429 | <target>通報理由が必要です。</target> |
@@ -9423,33 +9507,33 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9423 | <trans-unit id="4444753420973870540"> | 9507 | <trans-unit id="4444753420973870540"> |
9424 | <source>Name is required.</source> | 9508 | <source>Name is required.</source> |
9425 | <target>名前は必須です。</target> | 9509 | <target>名前は必須です。</target> |
9426 | 9510 | <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> | |
9427 | <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> | 9511 | </trans-unit> |
9428 | <trans-unit id="4006797705713167676"> | 9512 | <trans-unit id="4006797705713167676"> |
9429 | <source>Name must be at least 1 character long.</source> | 9513 | <source>Name must be at least 1 character long.</source> |
9430 | <target>名前は 1 文字以上にする必要があります。</target> | 9514 | <target>名前は 1 文字以上にする必要があります。</target> |
9431 | 9515 | <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> | |
9432 | <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> | 9516 | </trans-unit> |
9433 | <trans-unit id="2233809696503670883"> | 9517 | <trans-unit id="2233809696503670883"> |
9434 | <source>Name cannot be more than 50 characters long.</source> | 9518 | <source>Name cannot be more than 50 characters long.</source> |
9435 | <target>名前は 50 文字以内でなければなりません。</target> | 9519 | <target>名前は 50 文字以内でなければなりません。</target> |
9436 | 9520 | <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> | |
9437 | <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> | 9521 | </trans-unit> |
9438 | <trans-unit id="7915656854942800659"> | 9522 | <trans-unit id="7915656854942800659"> |
9439 | <source>Name should be lowercase alphanumeric; dots and underscores are allowed.</source> | 9523 | <source>Name should be lowercase alphanumeric; dots and underscores are allowed.</source> |
9440 | <target>名前には小文字の英数字とドット(.)、アンダースコア(_)が利用できます。</target> | 9524 | <target>名前には小文字の英数字とドット(.)、アンダースコア(_)が利用できます。</target> |
9441 | 9525 | <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> | |
9442 | <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> | 9526 | </trans-unit> |
9443 | <trans-unit id="6880459830525364741"> | 9527 | <trans-unit id="6880459830525364741"> |
9444 | <source>Support text must be at least 3 characters long.</source> | 9528 | <source>Support text must be at least 3 characters long.</source> |
9445 | <target>支持テキストは 3 文字以上にする必要があります。</target> | 9529 | <target>支持テキストは 3 文字以上にする必要があります。</target> |
9446 | 9530 | <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> | |
9447 | <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> | 9531 | </trans-unit> |
9448 | <trans-unit id="6461548560008228165" datatype="html"> | 9532 | <trans-unit id="6461548560008228165" datatype="html"> |
9449 | <source>Support text cannot be more than 1000 characters long</source> | 9533 | <source>Support text cannot be more than 1000 characters long</source> |
9450 | <target state="new">Support text cannot be more than 1000 characters long</target> | 9534 | <target state="new">Support text cannot be more than 1000 characters long</target> |
9451 | 9535 | <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> | |
9452 | <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> | 9536 | </trans-unit> |
9453 | <trans-unit id="5637879201055173642" datatype="html"> | 9537 | <trans-unit id="5637879201055173642" datatype="html"> |
9454 | <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> | 9538 | <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> |
9455 | <target state="translated"><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">"/>ドキュメント<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/>を読んで、PeerTubeのライブ配信の特徴を知ろう。 </target> | 9539 | <target state="translated"><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">"/>ドキュメント<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/>を読んで、PeerTubeのライブ配信の特徴を知ろう。 </target> |
@@ -9614,14 +9698,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9614 | <source>PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</source> | 9698 | <source>PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</source> |
9615 | <target state="new">PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</target> | 9699 | <target state="new">PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</target> |
9616 | <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> | 9700 | <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> |
9617 | </trans-unit><trans-unit id="3393133458004181121" datatype="html"> | 9701 | </trans-unit> |
9618 | <source>All categories</source><target state="new">All categories</target> | 9702 | <trans-unit id="3393133458004181121" datatype="html"> |
9703 | <source>All categories</source> | ||
9704 | <target state="new">All categories</target> | ||
9619 | <context-group purpose="location"> | 9705 | <context-group purpose="location"> |
9620 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.ts</context> | 9706 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.ts</context> |
9621 | <context context-type="linenumber">24</context> | 9707 | <context context-type="linenumber">24</context> |
9622 | </context-group> | 9708 | </context-group> |
9623 | </trans-unit><trans-unit id="3999967345340145904" datatype="html"> | 9709 | </trans-unit> |
9624 | <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> | 9710 | <trans-unit id="3999967345340145904" datatype="html"> |
9711 | <source>You can't select more than <x id="PH" equiv-text="this.maxItems"/> items</source> | ||
9712 | <target state="new">You can't select more than <x id="PH" equiv-text="this.maxItems"/> items</target> | ||
9625 | <context-group purpose="location"> | 9713 | <context-group purpose="location"> |
9626 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox-all.component.ts</context> | 9714 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox-all.component.ts</context> |
9627 | <context context-type="linenumber">81</context> | 9715 | <context context-type="linenumber">81</context> |
@@ -9630,8 +9718,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9630 | <trans-unit id="6708273825233539746" datatype="html"> | 9718 | <trans-unit id="6708273825233539746" datatype="html"> |
9631 | <source>Add a new option</source> | 9719 | <source>Add a new option</source> |
9632 | <target state="new">Add a new option</target> | 9720 | <target state="new">Add a new option</target> |
9633 | 9721 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.ts</context><context context-type="linenumber">27</context></context-group> | |
9634 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.ts</context><context context-type="linenumber">27</context></context-group></trans-unit> | 9722 | </trans-unit> |
9635 | <trans-unit id="4076995379551303829" datatype="html"> | 9723 | <trans-unit id="4076995379551303829" datatype="html"> |
9636 | <source>Custom value...</source> | 9724 | <source>Custom value...</source> |
9637 | <target state="new">Custom value...</target> | 9725 | <target state="new">Custom value...</target> |
@@ -9910,9 +9998,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9910 | <trans-unit id="40119547597591062" datatype="html"> | 9998 | <trans-unit id="40119547597591062" datatype="html"> |
9911 | <source>All languages</source> | 9999 | <source>All languages</source> |
9912 | <target state="translated">全ての言語</target> | 10000 | <target state="translated">全ての言語</target> |
9913 | 10001 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">180</context></context-group> | |
9914 | 10002 | <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> | |
9915 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">180</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> | 10003 | </trans-unit> |
9916 | <trans-unit id="996392855508119363"> | 10004 | <trans-unit id="996392855508119363"> |
9917 | <source>Hidden</source> | 10005 | <source>Hidden</source> |
9918 | <target>表示しない</target> | 10006 | <target>表示しない</target> |
@@ -9926,8 +10014,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9926 | <trans-unit id="8929218224642530466"> | 10014 | <trans-unit id="8929218224642530466"> |
9927 | <source>Displayed</source> | 10015 | <source>Displayed</source> |
9928 | <target>表示する</target> | 10016 | <target>表示する</target> |
9929 | 10017 | <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> | |
9930 | <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">227</context></context-group></trans-unit> | 10018 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">227</context></context-group> |
10019 | </trans-unit> | ||
9931 | <trans-unit id="6291055174438137560" datatype="html"> | 10020 | <trans-unit id="6291055174438137560" datatype="html"> |
9932 | <source>~ 1 minute</source> | 10021 | <source>~ 1 minute</source> |
9933 | <target state="translated">~ 1分</target> | 10022 | <target state="translated">~ 1分</target> |
@@ -9962,16 +10051,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9962 | <trans-unit id="6952960992592445535" datatype="html"> | 10051 | <trans-unit id="6952960992592445535" datatype="html"> |
9963 | <source><x id="PH"/> (channel page) </source> | 10052 | <source><x id="PH"/> (channel page) </source> |
9964 | <target state="translated"><x id="PH"/> (チャンネルページへ) </target> | 10053 | <target state="translated"><x id="PH"/> (チャンネルページへ) </target> |
9965 | 10054 | <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">19</context></context-group> | |
9966 | 10055 | <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> | |
9967 | 10056 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">113</context></context-group> | |
9968 | <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">19</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">113</context></context-group></trans-unit> | 10057 | </trans-unit> |
9969 | <trans-unit id="1209500590333005801" datatype="html"> | 10058 | <trans-unit id="1209500590333005801" datatype="html"> |
9970 | <source><x id="PH"/> (account page) </source> | 10059 | <source><x id="PH"/> (account page) </source> |
9971 | <target state="translated"><x id="PH"/> (アカウントページへ) </target> | 10060 | <target state="translated"><x id="PH"/> (アカウントページへ) </target> |
9972 | 10061 | <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> | |
9973 | 10062 | <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> | |
9974 | <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">39</context></context-group></trans-unit> | 10063 | </trans-unit> |
9975 | <trans-unit id="2516633974298697807"> | 10064 | <trans-unit id="2516633974298697807"> |
9976 | <source>Emphasis</source> | 10065 | <source>Emphasis</source> |
9977 | <target>強調</target> | 10066 | <target>強調</target> |
@@ -10000,8 +10089,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10000 | <trans-unit id="6853170548960328665" datatype="html"> | 10089 | <trans-unit id="6853170548960328665" datatype="html"> |
10001 | <source>Close search</source> | 10090 | <source>Close search</source> |
10002 | <target state="new">Close search</target> | 10091 | <target state="new">Close search</target> |
10003 | 10092 | <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> | |
10004 | <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> | 10093 | </trans-unit> |
10005 | <trans-unit id="5708680277917691451"> | 10094 | <trans-unit id="5708680277917691451"> |
10006 | <source><x id="PH"/> users banned. </source> | 10095 | <source><x id="PH"/> users banned. </source> |
10007 | <target>ユーザー<x id="PH"/>人をBANしました。 </target> | 10096 | <target>ユーザー<x id="PH"/>人をBANしました。 </target> |
@@ -10030,19 +10119,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10030 | <trans-unit id="6301381219225831298"> | 10119 | <trans-unit id="6301381219225831298"> |
10031 | <source>User <x id="PH"/> deleted.</source> | 10120 | <source>User <x id="PH"/> deleted.</source> |
10032 | <target>ユーザー <x id="PH"/> を削除しました。</target> | 10121 | <target>ユーザー <x id="PH"/> を削除しました。</target> |
10033 | 10122 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">93</context></context-group> | |
10034 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">93</context></context-group></trans-unit> | 10123 | </trans-unit> |
10035 | <trans-unit id="3896582359861826661"> | 10124 | <trans-unit id="3896582359861826661"> |
10036 | <source>User <x id="PH"/> email set as verified</source> | 10125 | <source>User <x id="PH"/> email set as verified</source> |
10037 | <target>ユーザー <x id="PH"/> のメールアドレスが確認されました</target> | 10126 | <target>ユーザー <x id="PH"/> のメールアドレスが確認されました</target> |
10038 | 10127 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">105</context></context-group> | |
10039 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">105</context></context-group></trans-unit> | 10128 | </trans-unit> |
10040 | <trans-unit id="8150022485860412528"> | 10129 | <trans-unit id="8150022485860412528"> |
10041 | <source>Account <x id="PH"/> muted.</source> | 10130 | <source>Account <x id="PH"/> muted.</source> |
10042 | <target>アカウント <x id="PH"/> をミュートしました。</target> | 10131 | <target>アカウント <x id="PH"/> をミュートしました。</target> |
10043 | 10132 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">117</context></context-group> | |
10044 | 10133 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">240</context></context-group> | |
10045 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">117</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">240</context></context-group></trans-unit> | 10134 | </trans-unit> |
10046 | <trans-unit id="1598375456114200087"> | 10135 | <trans-unit id="1598375456114200087"> |
10047 | <source>Instance <x id="PH"/> muted. </source> | 10136 | <source>Instance <x id="PH"/> muted. </source> |
10048 | <target>インスタンス <x id="PH"/> をミュートしました。 </target> | 10137 | <target>インスタンス <x id="PH"/> をミュートしました。 </target> |
@@ -10054,19 +10143,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10054 | <trans-unit id="2558977494773636050"> | 10143 | <trans-unit id="2558977494773636050"> |
10055 | <source>Account <x id="PH"/> muted by the instance.</source> | 10144 | <source>Account <x id="PH"/> muted by the instance.</source> |
10056 | <target>アカウント <x id="PH"/> をあなたのインスタンスからミュートしました。</target> | 10145 | <target>アカウント <x id="PH"/> をあなたのインスタンスからミュートしました。</target> |
10057 | 10146 | <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> | |
10058 | 10147 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">173</context></context-group> | |
10059 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 10148 | </trans-unit> |
10060 | <trans-unit id="1595779426198793580" datatype="html"> | 10149 | <trans-unit id="1595779426198793580" datatype="html"> |
10061 | <source>Mute server</source> | 10150 | <source>Mute server</source> |
10062 | <target state="translated">ミュートしたサーバー</target> | 10151 | <target state="translated">ミュートしたサーバー</target> |
10063 | 10152 | <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> | |
10064 | <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> | 10153 | </trans-unit> |
10065 | <trans-unit id="8014491157078444256" datatype="html"> | 10154 | <trans-unit id="8014491157078444256" datatype="html"> |
10066 | <source>Server <x id="PH"/> muted by the instance.</source> | 10155 | <source>Server <x id="PH"/> muted by the instance.</source> |
10067 | <target state="translated">サーバー<x id="PH"/>をあなたのインスタンスからミュートしました。</target> | 10156 | <target state="translated">サーバー<x id="PH"/>をあなたのインスタンスからミュートしました。</target> |
10068 | 10157 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">458</context></context-group> | |
10069 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">458</context></context-group></trans-unit> | 10158 | </trans-unit> |
10070 | <trans-unit id="2044813052587776285" datatype="html"> | 10159 | <trans-unit id="2044813052587776285" datatype="html"> |
10071 | <source>Add a message to communicate with the reporter</source> | 10160 | <source>Add a message to communicate with the reporter</source> |
10072 | <target state="new">Add a message to communicate with the reporter</target> | 10161 | <target state="new">Add a message to communicate with the reporter</target> |
@@ -10080,158 +10169,158 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10080 | <trans-unit id="3085641638748358969"> | 10169 | <trans-unit id="3085641638748358969"> |
10081 | <source>Account <x id="PH"/> unmuted by the instance.</source> | 10170 | <source>Account <x id="PH"/> unmuted by the instance.</source> |
10082 | <target>アカウント <x id="PH"/>をあなたのインスタンスからミュート解除しました。</target> | 10171 | <target>アカウント <x id="PH"/>をあなたのインスタンスからミュート解除しました。</target> |
10083 | 10172 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">187</context></context-group> | |
10084 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">187</context></context-group></trans-unit> | 10173 | </trans-unit> |
10085 | <trans-unit id="4991892477258601737"> | 10174 | <trans-unit id="4991892477258601737"> |
10086 | <source>Instance <x id="PH"/> muted by the instance.</source> | 10175 | <source>Instance <x id="PH"/> muted by the instance.</source> |
10087 | <target>インスタンス <x id="PH"/> をあなたのインスタンスがミュートしました。</target> | 10176 | <target>インスタンス <x id="PH"/> をあなたのインスタンスがミュートしました。</target> |
10088 | 10177 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">201</context></context-group> | |
10089 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">201</context></context-group></trans-unit> | 10178 | </trans-unit> |
10090 | <trans-unit id="4379430340167561220"> | 10179 | <trans-unit id="4379430340167561220"> |
10091 | <source>Instance <x id="PH"/> unmuted by the instance.</source> | 10180 | <source>Instance <x id="PH"/> unmuted by the instance.</source> |
10092 | <target>インスタンス <x id="PH"/> をあなたのインスタンスからミュート解除しました。</target> | 10181 | <target>インスタンス <x id="PH"/> をあなたのインスタンスからミュート解除しました。</target> |
10093 | 10182 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">215</context></context-group> | |
10094 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">215</context></context-group></trans-unit> | 10183 | </trans-unit> |
10095 | <trans-unit id="8173437618471379044" datatype="html"> | 10184 | <trans-unit id="8173437618471379044" datatype="html"> |
10096 | <source>Are you sure you want to remove all the comments of this account?</source> | 10185 | <source>Are you sure you want to remove all the comments of this account?</source> |
10097 | <target state="translated">本当にこのアカウントの全てのコメントを削除しますか?</target> | 10186 | <target state="translated">本当にこのアカウントの全てのコメントを削除しますか?</target> |
10098 | 10187 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">226</context></context-group> | |
10099 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">226</context></context-group></trans-unit> | 10188 | </trans-unit> |
10100 | <trans-unit id="6315346579373254461" datatype="html"> | 10189 | <trans-unit id="6315346579373254461" datatype="html"> |
10101 | <source>Delete account comments</source> | 10190 | <source>Delete account comments</source> |
10102 | <target state="translated">アカウントのコメントを削除する</target> | 10191 | <target state="translated">アカウントのコメントを削除する</target> |
10103 | 10192 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">227</context></context-group> | |
10104 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">227</context></context-group></trans-unit> | 10193 | </trans-unit> |
10105 | <trans-unit id="8559170154828316298" datatype="html"> | 10194 | <trans-unit id="8559170154828316298" datatype="html"> |
10106 | <source>Will remove comments of this account (may take several minutes).</source> | 10195 | <source>Will remove comments of this account (may take several minutes).</source> |
10107 | <target state="translated">このアカウントからのコメントは削除されます(処理に数分かかる場合があります)。</target> | 10196 | <target state="translated">このアカウントからのコメントは削除されます(処理に数分かかる場合があります)。</target> |
10108 | 10197 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">233</context></context-group> | |
10109 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">233</context></context-group></trans-unit> | 10198 | </trans-unit> |
10110 | <trans-unit id="7187838764371214919" datatype="html"> | 10199 | <trans-unit id="7187838764371214919" datatype="html"> |
10111 | <source>Edit user</source> | 10200 | <source>Edit user</source> |
10112 | <target state="translated">ユーザーの編集</target> | 10201 | <target state="translated">ユーザーの編集</target> |
10113 | 10202 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">261</context></context-group> | |
10114 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">261</context></context-group></trans-unit> | 10203 | </trans-unit> |
10115 | <trans-unit id="4728427543536046034" datatype="html"> | 10204 | <trans-unit id="4728427543536046034" datatype="html"> |
10116 | <source>Change quota, role, and more.</source> | 10205 | <source>Change quota, role, and more.</source> |
10117 | <target state="new">Change quota, role, and more.</target> | 10206 | <target state="new">Change quota, role, and more.</target> |
10118 | 10207 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">262</context></context-group> | |
10119 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">262</context></context-group></trans-unit> | 10208 | </trans-unit> |
10120 | <trans-unit id="7913022656086109932" datatype="html"> | 10209 | <trans-unit id="7913022656086109932" datatype="html"> |
10121 | <source>Delete user</source> | 10210 | <source>Delete user</source> |
10122 | <target state="translated">ユーザーの削除</target> | 10211 | <target state="translated">ユーザーの削除</target> |
10123 | 10212 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">266</context></context-group> | |
10124 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">266</context></context-group></trans-unit> | 10213 | </trans-unit> |
10125 | <trans-unit id="7577876364431026966" datatype="html"> | 10214 | <trans-unit id="7577876364431026966" datatype="html"> |
10126 | <source>Unban user</source> | 10215 | <source>Unban user</source> |
10127 | <target state="translated">ユーザーのBanの解除</target> | 10216 | <target state="translated">ユーザーのBanの解除</target> |
10128 | 10217 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">277</context></context-group> | |
10129 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">277</context></context-group></trans-unit> | 10218 | </trans-unit> |
10130 | <trans-unit id="3508163549683020253" datatype="html"> | 10219 | <trans-unit id="3508163549683020253" datatype="html"> |
10131 | <source>Allow the user to login and create videos/comments again</source> | 10220 | <source>Allow the user to login and create videos/comments again</source> |
10132 | <target state="needs-translation">Allow the user to login and create videos/comments again</target> | 10221 | <target state="needs-translation">Allow the user to login and create videos/comments again</target> |
10133 | 10222 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">278</context></context-group> | |
10134 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">278</context></context-group></trans-unit> | 10223 | </trans-unit> |
10135 | <trans-unit id="1888272455383898478"> | 10224 | <trans-unit id="1888272455383898478"> |
10136 | <source>Mute this account</source> | 10225 | <source>Mute this account</source> |
10137 | <target>このアカウントをミュート</target> | 10226 | <target>このアカウントをミュート</target> |
10138 | 10227 | <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> | |
10139 | <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></trans-unit> | 10228 | </trans-unit> |
10140 | <trans-unit id="2365286519320230773" datatype="html"> | 10229 | <trans-unit id="2365286519320230773" datatype="html"> |
10141 | <source>Hide any content from that user from you.</source> | 10230 | <source>Hide any content from that user from you.</source> |
10142 | <target state="translated">ユーザーからの全てのコンテンツを隠す。</target> | 10231 | <target state="translated">ユーザーからの全てのコンテンツを隠す。</target> |
10143 | 10232 | <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> | |
10144 | <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> | 10233 | </trans-unit> |
10145 | <trans-unit id="4043508901590508211"> | 10234 | <trans-unit id="4043508901590508211"> |
10146 | <source>Unmute this account</source> | 10235 | <source>Unmute this account</source> |
10147 | <target>このアカウントのミュートを解除</target> | 10236 | <target>このアカウントのミュートを解除</target> |
10148 | 10237 | <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> | |
10149 | <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></trans-unit> | 10238 | </trans-unit> |
10150 | <trans-unit id="2843593344827160627" datatype="html"> | 10239 | <trans-unit id="2843593344827160627" datatype="html"> |
10151 | <source>Show back content from that user for you.</source> | 10240 | <source>Show back content from that user for you.</source> |
10152 | <target state="translated">ユーザーからの全てのコンテンツを再度表示する。</target> | 10241 | <target state="translated">ユーザーからの全てのコンテンツを再度表示する。</target> |
10153 | 10242 | <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> | |
10154 | <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> | 10243 | </trans-unit> |
10155 | <trans-unit id="6198109035280957164"> | 10244 | <trans-unit id="6198109035280957164"> |
10156 | <source>Mute the instance</source> | 10245 | <source>Mute the instance</source> |
10157 | <target>インスタンスをミュート</target> | 10246 | <target>インスタンスをミュート</target> |
10158 | 10247 | <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> | |
10159 | <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></trans-unit> | 10248 | </trans-unit> |
10160 | <trans-unit id="4537735378779630558" datatype="html"> | 10249 | <trans-unit id="4537735378779630558" datatype="html"> |
10161 | <source>Hide any content from that instance for you.</source> | 10250 | <source>Hide any content from that instance for you.</source> |
10162 | <target state="translated">インスタンスからの全てのコンテンツを隠す。</target> | 10251 | <target state="translated">インスタンスからの全てのコンテンツを隠す。</target> |
10163 | 10252 | <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> | |
10164 | <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> | 10253 | </trans-unit> |
10165 | <trans-unit id="6247487021683085858"> | 10254 | <trans-unit id="6247487021683085858"> |
10166 | <source>Unmute the instance</source> | 10255 | <source>Unmute the instance</source> |
10167 | <target>インスタンスのミュートを解除</target> | 10256 | <target>インスタンスのミュートを解除</target> |
10168 | 10257 | <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> | |
10169 | <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> | 10258 | </trans-unit> |
10170 | <trans-unit id="4024846984475742259" datatype="html"> | 10259 | <trans-unit id="4024846984475742259" datatype="html"> |
10171 | <source>Show back content from that instance for you.</source> | 10260 | <source>Show back content from that instance for you.</source> |
10172 | <target state="translated">インスタンスからの全てのコンテンツを再度表示する。</target> | 10261 | <target state="translated">インスタンスからの全てのコンテンツを再度表示する。</target> |
10173 | 10262 | <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> | |
10174 | <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> | 10263 | </trans-unit> |
10175 | <trans-unit id="3108200185023875257" datatype="html"> | 10264 | <trans-unit id="3108200185023875257" datatype="html"> |
10176 | <source>Remove comments from your videos</source> | 10265 | <source>Remove comments from your videos</source> |
10177 | <target state="translated">動画からコメントを削除する</target> | 10266 | <target state="translated">動画からコメントを削除する</target> |
10178 | 10267 | <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> | |
10179 | <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> | 10268 | </trans-unit> |
10180 | <trans-unit id="4810478487244286994" datatype="html"> | 10269 | <trans-unit id="4810478487244286994" datatype="html"> |
10181 | <source>Remove comments made by this account on your videos.</source> | 10270 | <source>Remove comments made by this account on your videos.</source> |
10182 | <target state="translated">このアカウントによって作成された、動画へのコメントを削除する。</target> | 10271 | <target state="translated">このアカウントによって作成された、動画へのコメントを削除する。</target> |
10183 | 10272 | <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> | |
10184 | <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> | 10273 | </trans-unit> |
10185 | <trans-unit id="81452583525574033"> | 10274 | <trans-unit id="81452583525574033"> |
10186 | <source>Mute this account by your instance</source> | 10275 | <source>Mute this account by your instance</source> |
10187 | <target>あなたのインスタンスからこのアカウントをミュート</target> | 10276 | <target>あなたのインスタンスからこのアカウントをミュート</target> |
10188 | 10277 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">331</context></context-group> | |
10189 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">331</context></context-group></trans-unit> | 10278 | </trans-unit> |
10190 | <trans-unit id="2077144178298031252" datatype="html"> | 10279 | <trans-unit id="2077144178298031252" datatype="html"> |
10191 | <source>Hide any content from that user from you, your instance and its users.</source> | 10280 | <source>Hide any content from that user from you, your instance and its users.</source> |
10192 | <target state="new">Hide any content from that user from you, your instance and its users.</target> | 10281 | <target state="new">Hide any content from that user from you, your instance and its users.</target> |
10193 | 10282 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">332</context></context-group> | |
10194 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">332</context></context-group></trans-unit> | 10283 | </trans-unit> |
10195 | <trans-unit id="884942914962310163"> | 10284 | <trans-unit id="884942914962310163"> |
10196 | <source>Unmute this account by your instance</source> | 10285 | <source>Unmute this account by your instance</source> |
10197 | <target>あなたのインスタンスからこのアカウントのミュートを解除</target> | 10286 | <target>あなたのインスタンスからこのアカウントのミュートを解除</target> |
10198 | 10287 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">337</context></context-group> | |
10199 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">337</context></context-group></trans-unit> | 10288 | </trans-unit> |
10200 | <trans-unit id="7675070596643104983" datatype="html"> | 10289 | <trans-unit id="7675070596643104983" datatype="html"> |
10201 | <source>Show this user's content to the users of this instance again.</source> | 10290 | <source>Show this user's content to the users of this instance again.</source> |
10202 | <target state="new">Show this user's content to the users of this instance again.</target> | 10291 | <target state="new">Show this user's content to the users of this instance again.</target> |
10203 | 10292 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">338</context></context-group> | |
10204 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">338</context></context-group></trans-unit> | 10293 | </trans-unit> |
10205 | <trans-unit id="3191211873505538654"> | 10294 | <trans-unit id="3191211873505538654"> |
10206 | <source>Mute the instance by your instance</source> | 10295 | <source>Mute the instance by your instance</source> |
10207 | <target>あなたのインスタンスからインスタンスをミュート</target> | 10296 | <target>あなたのインスタンスからインスタンスをミュート</target> |
10208 | 10297 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">349</context></context-group> | |
10209 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> | 10298 | </trans-unit> |
10210 | <trans-unit id="525915681688649453" datatype="html"> | 10299 | <trans-unit id="525915681688649453" datatype="html"> |
10211 | <source>Hide any content from that instance from you, your instance and its users.</source> | 10300 | <source>Hide any content from that instance from you, your instance and its users.</source> |
10212 | <target state="new">Hide any content from that instance from you, your instance and its users.</target> | 10301 | <target state="new">Hide any content from that instance from you, your instance and its users.</target> |
10213 | 10302 | <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> | |
10214 | <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> | 10303 | </trans-unit> |
10215 | <trans-unit id="5325628963747139770"> | 10304 | <trans-unit id="5325628963747139770"> |
10216 | <source>Unmute the instance by your instance</source> | 10305 | <source>Unmute the instance by your instance</source> |
10217 | <target>あなたのインスタンスからインスタンスのミュートを解除</target> | 10306 | <target>あなたのインスタンスからインスタンスのミュートを解除</target> |
10218 | 10307 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">355</context></context-group> | |
10219 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">355</context></context-group></trans-unit> | 10308 | </trans-unit> |
10220 | <trans-unit id="758471033841077314" datatype="html"> | 10309 | <trans-unit id="758471033841077314" datatype="html"> |
10221 | <source>Show back content from that instance for you, your instance and its users.</source> | 10310 | <source>Show back content from that instance for you, your instance and its users.</source> |
10222 | <target state="new">Show back content from that instance for you, your instance and its users.</target> | 10311 | <target state="new">Show back content from that instance for you, your instance and its users.</target> |
10223 | 10312 | <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> | |
10224 | <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> | 10313 | </trans-unit> |
10225 | <trans-unit id="3785095284194008197" datatype="html"> | 10314 | <trans-unit id="3785095284194008197" datatype="html"> |
10226 | <source>Remove comments from your instance</source> | 10315 | <source>Remove comments from your instance</source> |
10227 | <target state="translated">インスタンスからコメントを削除する</target> | 10316 | <target state="translated">インスタンスからコメントを削除する</target> |
10228 | 10317 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">366</context></context-group> | |
10229 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">366</context></context-group></trans-unit> | 10318 | </trans-unit> |
10230 | <trans-unit id="4809327075591089709" datatype="html"> | 10319 | <trans-unit id="4809327075591089709" datatype="html"> |
10231 | <source>Remove comments made by this account from your instance.</source> | 10320 | <source>Remove comments made by this account from your instance.</source> |
10232 | <target state="new">Remove comments made by this account from your instance.</target> | 10321 | <target state="new">Remove comments made by this account from your instance.</target> |
10233 | 10322 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">367</context></context-group> | |
10234 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">367</context></context-group></trans-unit> | 10323 | </trans-unit> |
10235 | <trans-unit id="6746743143272021955" datatype="html"> | 10324 | <trans-unit id="6746743143272021955" datatype="html"> |
10236 | <source>Violent or repulsive</source> | 10325 | <source>Violent or repulsive</source> |
10237 | <target state="translated">暴力的または非常に不快</target> | 10326 | <target state="translated">暴力的または非常に不快</target> |
@@ -10260,38 +10349,38 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10260 | <trans-unit id="6374940465448453212" datatype="html"> | 10349 | <trans-unit id="6374940465448453212" datatype="html"> |
10261 | <source>Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</source> | 10350 | <source>Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</source> |
10262 | <target state="new">Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</target> | 10351 | <target state="new">Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</target> |
10263 | 10352 | <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> | |
10264 | <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> | 10353 | </trans-unit> |
10265 | <trans-unit id="7401289443263903223" datatype="html"> | 10354 | <trans-unit id="7401289443263903223" datatype="html"> |
10266 | <source>Privacy breach or doxxing</source> | 10355 | <source>Privacy breach or doxxing</source> |
10267 | <target state="new">Privacy breach or doxxing</target> | 10356 | <target state="new">Privacy breach or doxxing</target> |
10268 | 10357 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">155</context></context-group> | |
10269 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">155</context></context-group></trans-unit> | 10358 | </trans-unit> |
10270 | <trans-unit id="8363008638081993167" datatype="html"> | 10359 | <trans-unit id="8363008638081993167" datatype="html"> |
10271 | <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> | 10360 | <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> |
10272 | <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> | 10361 | <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> |
10273 | 10362 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">157</context></context-group> | |
10274 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">157</context></context-group></trans-unit> | 10363 | </trans-unit> |
10275 | <trans-unit id="380450014369168564" datatype="html"> | 10364 | <trans-unit id="380450014369168564" datatype="html"> |
10276 | <source>Infringes your copyright wrt. the regional laws with which the server must comply.</source> | 10365 | <source>Infringes your copyright wrt. the regional laws with which the server must comply.</source> |
10277 | <target state="new">Infringes your copyright wrt. the regional laws with which the server must comply.</target> | 10366 | <target state="new">Infringes your copyright wrt. the regional laws with which the server must comply.</target> |
10278 | 10367 | <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> | |
10279 | <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> | 10368 | </trans-unit> |
10280 | <trans-unit id="1378933246324202613" datatype="html"> | 10369 | <trans-unit id="1378933246324202613" datatype="html"> |
10281 | <source>Breaks server rules</source> | 10370 | <source>Breaks server rules</source> |
10282 | <target state="new">Breaks server rules</target> | 10371 | <target state="new">Breaks server rules</target> |
10283 | 10372 | <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> | |
10284 | <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> | 10373 | </trans-unit> |
10285 | <trans-unit id="7930601470861156366" datatype="html"> | 10374 | <trans-unit id="7930601470861156366" datatype="html"> |
10286 | <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> | 10375 | <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> |
10287 | <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> | 10376 | <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> |
10288 | 10377 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">168</context></context-group> | |
10289 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">168</context></context-group></trans-unit> | 10378 | </trans-unit> |
10290 | <trans-unit id="8700771664729810984" datatype="html"> | 10379 | <trans-unit id="8700771664729810984" datatype="html"> |
10291 | <source>The above can only be seen in thumbnails.</source> | 10380 | <source>The above can only be seen in thumbnails.</source> |
10292 | <target state="new">The above can only be seen in thumbnails.</target> | 10381 | <target state="new">The above can only be seen in thumbnails.</target> |
10293 | 10382 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">177</context></context-group> | |
10294 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">177</context></context-group></trans-unit> | 10383 | </trans-unit> |
10295 | <trans-unit id="2602773901491715295" datatype="html"> | 10384 | <trans-unit id="2602773901491715295" datatype="html"> |
10296 | <source>Captions</source> | 10385 | <source>Captions</source> |
10297 | <target state="translated">字幕</target> | 10386 | <target state="translated">字幕</target> |
@@ -10301,23 +10390,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10301 | <trans-unit id="5779804235244672536" datatype="html"> | 10390 | <trans-unit id="5779804235244672536" datatype="html"> |
10302 | <source>The above can only be seen in captions (please describe which).</source> | 10391 | <source>The above can only be seen in captions (please describe which).</source> |
10303 | <target state="new">The above can only be seen in captions (please describe which).</target> | 10392 | <target state="new">The above can only be seen in captions (please describe which).</target> |
10304 | 10393 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">182</context></context-group> | |
10305 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> | 10394 | </trans-unit> |
10306 | <trans-unit id="968295009933361070"> | 10395 | <trans-unit id="968295009933361070"> |
10307 | <source>Too many attempts, please try again after <x id="PH"/> minutes.</source> | 10396 | <source>Too many attempts, please try again after <x id="PH"/> minutes.</source> |
10308 | <target>試行回数が多すぎます。 <x id="PH"/> 分後にもう一度お試しください。</target> | 10397 | <target>試行回数が多すぎます。 <x id="PH"/> 分後にもう一度お試しください。</target> |
10309 | 10398 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">70</context></context-group> | |
10310 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">70</context></context-group></trans-unit> | 10399 | </trans-unit> |
10311 | <trans-unit id="4965472196059235310"> | 10400 | <trans-unit id="4965472196059235310"> |
10312 | <source>Too many attempts, please try again later.</source> | 10401 | <source>Too many attempts, please try again later.</source> |
10313 | <target>試行回数が多すぎます。しばらくしてからもう一度お試しください。</target> | 10402 | <target>試行回数が多すぎます。しばらくしてからもう一度お試しください。</target> |
10314 | 10403 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">72</context></context-group> | |
10315 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 10404 | </trans-unit> |
10316 | <trans-unit id="1693549688987384699"> | 10405 | <trans-unit id="1693549688987384699"> |
10317 | <source>Server error. Please retry later.</source> | 10406 | <source>Server error. Please retry later.</source> |
10318 | <target>サーバーエラーです。 後でもう一度やり直してください。</target> | 10407 | <target>サーバーエラーです。 後でもう一度やり直してください。</target> |
10319 | 10408 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">75</context></context-group> | |
10320 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">75</context></context-group></trans-unit> | 10409 | </trans-unit> |
10321 | <trans-unit id="5927402622550505067" datatype="html"> | 10410 | <trans-unit id="5927402622550505067" datatype="html"> |
10322 | <source>Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</source> | 10411 | <source>Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</source> |
10323 | <target state="translated">Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</target> | 10412 | <target state="translated">Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</target> |
@@ -10369,8 +10458,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10369 | <trans-unit id="4968151111061046122"> | 10458 | <trans-unit id="4968151111061046122"> |
10370 | <source>Moderator</source> | 10459 | <source>Moderator</source> |
10371 | <target>モデレーター</target> | 10460 | <target>モデレーター</target> |
10372 | 10461 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group> | |
10373 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group></trans-unit> | 10462 | </trans-unit> |
10374 | <trans-unit id="2279527393438260622" datatype="html"> | 10463 | <trans-unit id="2279527393438260622" datatype="html"> |
10375 | <source>Search videos, playlists, channels…</source> | 10464 | <source>Search videos, playlists, channels…</source> |
10376 | <target state="translated">動画、プレイリスト、チャンネルを検索する…</target> | 10465 | <target state="translated">動画、プレイリスト、チャンネルを検索する…</target> |
@@ -10384,30 +10473,30 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10384 | <target>動画は | 10473 | <target>動画は |
10385 | <x id="PH"/> によって削除されました。 | 10474 | <x id="PH"/> によって削除されました。 |
10386 | </target> | 10475 | </target> |
10387 | 10476 | <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">306</context></context-group> | |
10388 | 10477 | <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">93</context></context-group> | |
10389 | <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">306</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">93</context></context-group></trans-unit> | 10478 | </trans-unit> |
10390 | <trans-unit id="1056145626640340519"> | 10479 | <trans-unit id="1056145626640340519"> |
10391 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> | 10480 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> |
10392 | <target>Video added in | 10481 | <target>Video added in |
10393 | <x id="PH"/> at timestamps | 10482 | <x id="PH"/> at timestamps |
10394 | <x id="PH_1"/> | 10483 | <x id="PH_1"/> |
10395 | </target> | 10484 | </target> |
10396 | 10485 | <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">374</context></context-group> | |
10397 | <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">374</context></context-group></trans-unit> | 10486 | </trans-unit> |
10398 | <trans-unit id="7754186870520534716"> | 10487 | <trans-unit id="7754186870520534716"> |
10399 | <source>Video added in <x id="PH"/> </source> | 10488 | <source>Video added in <x id="PH"/> </source> |
10400 | <target>動画 | 10489 | <target>動画 |
10401 | <x id="PH"/> は追加されました。 | 10490 | <x id="PH"/> は追加されました。 |
10402 | </target> | 10491 | </target> |
10403 | 10492 | <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">375</context></context-group> | |
10404 | <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">375</context></context-group></trans-unit> | 10493 | </trans-unit> |
10405 | <trans-unit id="985751964589921228"> | 10494 | <trans-unit id="985751964589921228"> |
10406 | <source>Timestamps updated</source> | 10495 | <source>Timestamps updated</source> |
10407 | <target>タイムスタンプが更新されました</target> | 10496 | <target>タイムスタンプが更新されました</target> |
10408 | 10497 | <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">274</context></context-group> | |
10409 | 10498 | <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">112</context></context-group> | |
10410 | <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">274</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">112</context></context-group></trans-unit> | 10499 | </trans-unit> |
10411 | <trans-unit id="6421445850411984665" datatype="html"> | 10500 | <trans-unit id="6421445850411984665" datatype="html"> |
10412 | <source>Starts at</source> | 10501 | <source>Starts at</source> |
10413 | <target state="new">Starts at </target> | 10502 | <target state="new">Starts at </target> |
@@ -10427,61 +10516,61 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10427 | <trans-unit id="2909684945706361544" datatype="html"> | 10516 | <trans-unit id="2909684945706361544" datatype="html"> |
10428 | <source>Delete video</source> | 10517 | <source>Delete video</source> |
10429 | <target state="translated">動画の削除</target> | 10518 | <target state="translated">動画の削除</target> |
10430 | 10519 | <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> | |
10431 | <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> | 10520 | </trans-unit> |
10432 | <trans-unit id="2210418817778733727" datatype="html"> | 10521 | <trans-unit id="2210418817778733727" datatype="html"> |
10433 | <source>Actions for the comment</source> | 10522 | <source>Actions for the comment</source> |
10434 | <target state="new">Actions for the comment</target> | 10523 | <target state="new">Actions for the comment</target> |
10435 | 10524 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">412</context></context-group> | |
10436 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">412</context></context-group></trans-unit> | 10525 | </trans-unit> |
10437 | <trans-unit id="7978668497183230348" datatype="html"> | 10526 | <trans-unit id="7978668497183230348" datatype="html"> |
10438 | <source>Delete comment</source> | 10527 | <source>Delete comment</source> |
10439 | <target state="translated">コメントの削除</target> | 10528 | <target state="translated">コメントの削除</target> |
10440 | 10529 | <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> | |
10441 | <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> | 10530 | </trans-unit> |
10442 | <trans-unit id="6747218355168080191" datatype="html"> | 10531 | <trans-unit id="6747218355168080191" datatype="html"> |
10443 | <source>Do you really want to delete this comment?</source> | 10532 | <source>Do you really want to delete this comment?</source> |
10444 | <target state="translated">本当にこのコメントを削除しますか?</target> | 10533 | <target state="translated">本当にこのコメントを削除しますか?</target> |
10445 | 10534 | <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> | |
10446 | 10535 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">422</context></context-group> | |
10447 | <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">422</context></context-group></trans-unit> | 10536 | </trans-unit> |
10448 | <trans-unit id="7837272126865175984" datatype="html"> | 10537 | <trans-unit id="7837272126865175984" datatype="html"> |
10449 | <source>Comment deleted.</source> | 10538 | <source>Comment deleted.</source> |
10450 | <target state="translated">コメントが削除されました。</target> | 10539 | <target state="translated">コメントが削除されました。</target> |
10451 | 10540 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">430</context></context-group> | |
10452 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">430</context></context-group></trans-unit> | 10541 | </trans-unit> |
10453 | <trans-unit id="346270517625845962" datatype="html"> | 10542 | <trans-unit id="346270517625845962" datatype="html"> |
10454 | <source>Encoder</source> | 10543 | <source>Encoder</source> |
10455 | <target state="translated">エンコーダー</target> | 10544 | <target state="translated">エンコーダー</target> |
10456 | 10545 | <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> | |
10457 | <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> | 10546 | </trans-unit> |
10458 | <trans-unit id="2331557444464201331" datatype="html"> | 10547 | <trans-unit id="2331557444464201331" datatype="html"> |
10459 | <source>Format name</source> | 10548 | <source>Format name</source> |
10460 | <target state="translated">ファイルフォーマット</target> | 10549 | <target state="translated">ファイルフォーマット</target> |
10461 | 10550 | <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> | |
10462 | <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> | 10551 | </trans-unit> |
10463 | <trans-unit id="45739481977493163" datatype="html"> | 10552 | <trans-unit id="45739481977493163" datatype="html"> |
10464 | <source>Size</source> | 10553 | <source>Size</source> |
10465 | <target state="translated">動画サイズ</target> | 10554 | <target state="translated">動画サイズ</target> |
10466 | 10555 | <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> | |
10467 | <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> | 10556 | </trans-unit> |
10468 | <trans-unit id="7742520815129539114" datatype="html"> | 10557 | <trans-unit id="7742520815129539114" datatype="html"> |
10469 | <source>Bitrate</source> | 10558 | <source>Bitrate</source> |
10470 | <target state="translated">ビットレート</target> | 10559 | <target state="translated">ビットレート</target> |
10471 | 10560 | <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> | |
10472 | 10561 | <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> | |
10473 | <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> | 10562 | </trans-unit> |
10474 | <trans-unit id="4094960161662677662" datatype="html"> | 10563 | <trans-unit id="4094960161662677662" datatype="html"> |
10475 | <source>Codec</source> | 10564 | <source>Codec</source> |
10476 | <target state="translated">コーデック</target> | 10565 | <target state="translated">コーデック</target> |
10477 | 10566 | <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> | |
10478 | <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> | 10567 | </trans-unit> |
10479 | <trans-unit id="2115592966120408375"> | 10568 | <trans-unit id="2115592966120408375"> |
10480 | <source>Copied</source> | 10569 | <source>Copied</source> |
10481 | <target>コピーしました</target> | 10570 | <target>コピーしました</target> |
10482 | 10571 | <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> | |
10483 | 10572 | <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> | |
10484 | <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> | 10573 | </trans-unit> |
10485 | <trans-unit id="4323470180912194028" datatype="html"> | 10574 | <trans-unit id="4323470180912194028" datatype="html"> |
10486 | <source>Copy</source> | 10575 | <source>Copy</source> |
10487 | <target state="translated">コピー</target> | 10576 | <target state="translated">コピー</target> |
@@ -10496,26 +10585,26 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10496 | <trans-unit id="3622946684246476652"> | 10585 | <trans-unit id="3622946684246476652"> |
10497 | <source>Do you really want to delete this video?</source> | 10586 | <source>Do you really want to delete this video?</source> |
10498 | <target>本当にこの動画を削除しますか?</target> | 10587 | <target>本当にこの動画を削除しますか?</target> |
10499 | 10588 | <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> | |
10500 | 10589 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">387</context></context-group> | |
10501 | 10590 | <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> | |
10502 | <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/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">387</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">203</context></context-group></trans-unit> | 10591 | </trans-unit> |
10503 | <trans-unit id="3941342949736653028" datatype="html"> | 10592 | <trans-unit id="3941342949736653028" datatype="html"> |
10504 | <source>Video deleted.</source> | 10593 | <source>Video deleted.</source> |
10505 | <target state="translated">動画が削除されました。</target> | 10594 | <target state="translated">動画が削除されました。</target> |
10506 | 10595 | <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">98</context></context-group> | |
10507 | 10596 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">395</context></context-group> | |
10508 | <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">98</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">395</context></context-group></trans-unit> | 10597 | </trans-unit> |
10509 | <trans-unit id="5072091387445907742" datatype="html"> | 10598 | <trans-unit id="5072091387445907742" datatype="html"> |
10510 | <source>Actions for the reporter</source> | 10599 | <source>Actions for the reporter</source> |
10511 | <target state="new">Actions for the reporter</target> | 10600 | <target state="new">Actions for the reporter</target> |
10512 | 10601 | <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> | |
10513 | <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> | 10602 | </trans-unit> |
10514 | <trans-unit id="6599069899275412095" datatype="html"> | 10603 | <trans-unit id="6599069899275412095" datatype="html"> |
10515 | <source>Mute reporter</source> | 10604 | <source>Mute reporter</source> |
10516 | <target state="translated">通報者をミュートする</target> | 10605 | <target state="translated">通報者をミュートする</target> |
10517 | 10606 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">328</context></context-group> | |
10518 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">328</context></context-group></trans-unit> | 10607 | </trans-unit> |
10519 | <trans-unit id="2990849907502572301" datatype="html"> | 10608 | <trans-unit id="2990849907502572301" datatype="html"> |
10520 | <source>This video will be duplicated by your instance.</source> | 10609 | <source>This video will be duplicated by your instance.</source> |
10521 | <target state="translated">この動画はインスタンス内で重複しています。</target> | 10610 | <target state="translated">この動画はインスタンス内で重複しています。</target> |
@@ -10529,9 +10618,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10529 | <trans-unit id="7672331870004528654" datatype="html"> | 10618 | <trans-unit id="7672331870004528654" datatype="html"> |
10530 | <source>Display live information</source> | 10619 | <source>Display live information</source> |
10531 | <target state="translated">ライブ配信の情報を表示</target> | 10620 | <target state="translated">ライブ配信の情報を表示</target> |
10532 | 10621 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">174</context></context-group> | |
10533 | 10622 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">278</context></context-group> | |
10534 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">174</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">278</context></context-group></trans-unit> | 10623 | </trans-unit> |
10535 | <trans-unit id="4021752662928002901" datatype="html"> | 10624 | <trans-unit id="4021752662928002901" datatype="html"> |
10536 | <source>Update</source> | 10625 | <source>Update</source> |
10537 | <target state="translated">編集</target> | 10626 | <target state="translated">編集</target> |
@@ -10594,9 +10683,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10594 | <trans-unit id="4903651219400691248" datatype="html"> | 10683 | <trans-unit id="4903651219400691248" datatype="html"> |
10595 | <source>Mute account</source> | 10684 | <source>Mute account</source> |
10596 | <target state="translated">アカウントをミュートする</target> | 10685 | <target state="translated">アカウントをミュートする</target> |
10597 | 10686 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">304</context></context-group> | |
10598 | 10687 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">322</context></context-group> | |
10599 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">304</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">322</context></context-group></trans-unit> | 10688 | </trans-unit> |
10600 | <trans-unit id="4021487547497211597" datatype="html"> | 10689 | <trans-unit id="4021487547497211597" datatype="html"> |
10601 | <source>Open video actions</source> | 10690 | <source>Open video actions</source> |
10602 | <target state="new">Open video actions</target> | 10691 | <target state="new">Open video actions</target> |
@@ -10612,8 +10701,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10612 | <trans-unit id="3719503424625455635" datatype="html"> | 10701 | <trans-unit id="3719503424625455635" datatype="html"> |
10613 | <source>Mute server account</source> | 10702 | <source>Mute server account</source> |
10614 | <target state="translated">サーバーのアカウントをミュートする</target> | 10703 | <target state="translated">サーバーのアカウントをミュートする</target> |
10615 | 10704 | <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> | |
10616 | <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> | 10705 | </trans-unit> |
10617 | <trans-unit id="7008439939460403347"> | 10706 | <trans-unit id="7008439939460403347"> |
10618 | <source>Report</source> | 10707 | <source>Report</source> |
10619 | <target>通報</target> | 10708 | <target>通報</target> |
@@ -10683,8 +10772,10 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10683 | <source>To import</source> | 10772 | <source>To import</source> |
10684 | <target>インポートする</target> | 10773 | <target>インポートする</target> |
10685 | <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> | 10774 | <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> |
10686 | </trans-unit><trans-unit id="8492933894084361602" datatype="html"> | 10775 | </trans-unit> |
10687 | <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> | 10776 | <trans-unit id="8492933894084361602" datatype="html"> |
10777 | <source>Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</source> | ||
10778 | <target state="new">Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</target> | ||
10688 | <context-group purpose="location"> | 10779 | <context-group purpose="location"> |
10689 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context> | 10780 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context> |
10690 | <context context-type="linenumber">8</context> | 10781 | <context context-type="linenumber">8</context> |
@@ -10716,23 +10807,23 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10716 | <trans-unit id="2439066254855913806"> | 10807 | <trans-unit id="2439066254855913806"> |
10717 | <source>Only I can see this video</source> | 10808 | <source>Only I can see this video</source> |
10718 | <target>自分だけがこの動画を視聴することができます</target> | 10809 | <target>自分だけがこの動画を視聴することができます</target> |
10719 | 10810 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">325</context></context-group> | |
10720 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">325</context></context-group></trans-unit> | 10811 | </trans-unit> |
10721 | <trans-unit id="6767380569816110388" datatype="html"> | 10812 | <trans-unit id="6767380569816110388" datatype="html"> |
10722 | <source>Only shareable via a private link</source> | 10813 | <source>Only shareable via a private link</source> |
10723 | <target state="translated">プライベートURLのみで共有できます</target> | 10814 | <target state="translated">プライベートURLのみで共有できます</target> |
10724 | 10815 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">326</context></context-group> | |
10725 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">326</context></context-group></trans-unit> | 10816 | </trans-unit> |
10726 | <trans-unit id="6828965264297239528"> | 10817 | <trans-unit id="6828965264297239528"> |
10727 | <source>Anyone can see this video</source> | 10818 | <source>Anyone can see this video</source> |
10728 | <target>誰でもこの動画を視聴することができます</target> | 10819 | <target>誰でもこの動画を視聴することができます</target> |
10729 | 10820 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">327</context></context-group> | |
10730 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">327</context></context-group></trans-unit> | 10821 | </trans-unit> |
10731 | <trans-unit id="1425933035739773115" datatype="html"> | 10822 | <trans-unit id="1425933035739773115" datatype="html"> |
10732 | <source>Only users of this instance can see this video</source> | 10823 | <source>Only users of this instance can see this video</source> |
10733 | <target state="translated">このインスタンスのユーザーのみが視聴することができる</target> | 10824 | <target state="translated">このインスタンスのユーザーのみが視聴することができる</target> |
10734 | 10825 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">328</context></context-group> | |
10735 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">328</context></context-group></trans-unit> | 10826 | </trans-unit> |
10736 | <trans-unit id="8312101634344200207" datatype="html"> | 10827 | <trans-unit id="8312101634344200207" datatype="html"> |
10737 | <source><x id="PH" equiv-text="this.views"/> viewers</source> | 10828 | <source><x id="PH" equiv-text="this.views"/> viewers</source> |
10738 | <target state="translated"><x id="PH" equiv-text="this.views"/> 視聴者数</target> | 10829 | <target state="translated"><x id="PH" equiv-text="this.views"/> 視聴者数</target> |
@@ -10746,209 +10837,209 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10746 | <trans-unit id="ngb.alert.close" datatype="html"> | 10837 | <trans-unit id="ngb.alert.close" datatype="html"> |
10747 | <source>Close</source> | 10838 | <source>Close</source> |
10748 | <target state="translated">閉じる</target> | 10839 | <target state="translated">閉じる</target> |
10749 | 10840 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">58</context></context-group> | |
10750 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 10841 | </trans-unit> |
10751 | <trans-unit id="ngb.carousel.slide-number" datatype="html"> | 10842 | <trans-unit id="ngb.carousel.slide-number" datatype="html"> |
10752 | <source>Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </source> | 10843 | <source>Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </source> |
10753 | <target state="new"> Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </target> | 10844 | <target state="new"> Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </target> |
10754 | <note priority="1" from="description">Currently selected slide number read by screen reader</note> | 10845 | <note priority="1" from="description">Currently selected slide number read by screen reader</note> |
10755 | 10846 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">114</context></context-group> | |
10756 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">114</context></context-group></trans-unit> | 10847 | </trans-unit> |
10757 | <trans-unit id="ngb.carousel.previous" datatype="html"> | 10848 | <trans-unit id="ngb.carousel.previous" datatype="html"> |
10758 | <source>Previous</source> | 10849 | <source>Previous</source> |
10759 | <target state="translated">前</target> | 10850 | <target state="translated">前</target> |
10760 | 10851 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">132</context></context-group> | |
10761 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">132</context></context-group></trans-unit> | 10852 | </trans-unit> |
10762 | <trans-unit id="ngb.carousel.next" datatype="html"> | 10853 | <trans-unit id="ngb.carousel.next" datatype="html"> |
10763 | <source>Next</source> | 10854 | <source>Next</source> |
10764 | <target state="translated">次</target> | 10855 | <target state="translated">次</target> |
10765 | 10856 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">147</context></context-group> | |
10766 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">147</context></context-group></trans-unit> | 10857 | </trans-unit> |
10767 | <trans-unit id="ngb.datepicker.previous-month" datatype="html"> | 10858 | <trans-unit id="ngb.datepicker.previous-month" datatype="html"> |
10768 | <source>Previous month</source> | 10859 | <source>Previous month</source> |
10769 | <target state="translated">先月</target> | 10860 | <target state="translated">先月</target> |
10770 | 10861 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">24</context></context-group> | |
10771 | 10862 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">35</context></context-group> | |
10772 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">35</context></context-group></trans-unit> | 10863 | </trans-unit> |
10773 | <trans-unit id="ngb.datepicker.next-month" datatype="html"> | 10864 | <trans-unit id="ngb.datepicker.next-month" datatype="html"> |
10774 | <source>Next month</source> | 10865 | <source>Next month</source> |
10775 | <target state="translated">来月</target> | 10866 | <target state="translated">来月</target> |
10776 | 10867 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">47</context></context-group> | |
10777 | 10868 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">60</context></context-group> | |
10778 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> | 10869 | </trans-unit> |
10779 | <trans-unit id="ngb.datepicker.select-month" datatype="html"> | 10870 | <trans-unit id="ngb.datepicker.select-month" datatype="html"> |
10780 | <source>Select month</source> | 10871 | <source>Select month</source> |
10781 | <target state="translated">月を選択</target> | 10872 | <target state="translated">月を選択</target> |
10782 | 10873 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">44</context></context-group> | |
10783 | 10874 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">49</context></context-group> | |
10784 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">49</context></context-group></trans-unit> | 10875 | </trans-unit> |
10785 | <trans-unit id="ngb.datepicker.select-year" datatype="html"> | 10876 | <trans-unit id="ngb.datepicker.select-year" datatype="html"> |
10786 | <source>Select year</source> | 10877 | <source>Select year</source> |
10787 | <target state="translated">年を選択</target> | 10878 | <target state="translated">年を選択</target> |
10788 | 10879 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">59</context></context-group> | |
10789 | 10880 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">74</context></context-group> | |
10790 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">59</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">74</context></context-group></trans-unit> | 10881 | </trans-unit> |
10791 | <trans-unit id="ngb.pagination.first" datatype="html"> | 10882 | <trans-unit id="ngb.pagination.first" datatype="html"> |
10792 | <source>««</source> | 10883 | <source>««</source> |
10793 | <target state="translated">««</target> | 10884 | <target state="translated">««</target> |
10794 | 10885 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">182</context></context-group> | |
10795 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> | 10886 | </trans-unit> |
10796 | <trans-unit id="ngb.pagination.previous" datatype="html"> | 10887 | <trans-unit id="ngb.pagination.previous" datatype="html"> |
10797 | <source>«</source> | 10888 | <source>«</source> |
10798 | <target state="translated">«</target> | 10889 | <target state="translated">«</target> |
10799 | 10890 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">186</context></context-group> | |
10800 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 10891 | </trans-unit> |
10801 | <trans-unit id="ngb.pagination.next" datatype="html"> | 10892 | <trans-unit id="ngb.pagination.next" datatype="html"> |
10802 | <source>»</source> | 10893 | <source>»</source> |
10803 | <target state="translated">»</target> | 10894 | <target state="translated">»</target> |
10804 | 10895 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">194</context></context-group> | |
10805 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">194</context></context-group></trans-unit> | 10896 | </trans-unit> |
10806 | <trans-unit id="ngb.pagination.last" datatype="html"> | 10897 | <trans-unit id="ngb.pagination.last" datatype="html"> |
10807 | <source>»»</source> | 10898 | <source>»»</source> |
10808 | <target state="translated">»»</target> | 10899 | <target state="translated">»»</target> |
10809 | 10900 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">201</context></context-group> | |
10810 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">201</context></context-group></trans-unit> | 10901 | </trans-unit> |
10811 | <trans-unit id="ngb.pagination.first-aria" datatype="html"> | 10902 | <trans-unit id="ngb.pagination.first-aria" datatype="html"> |
10812 | <source>First</source> | 10903 | <source>First</source> |
10813 | <target state="new">First</target> | 10904 | <target state="new">First</target> |
10814 | 10905 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">208</context></context-group> | |
10815 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">208</context></context-group></trans-unit> | 10906 | </trans-unit> |
10816 | <trans-unit id="ngb.pagination.previous-aria" datatype="html"> | 10907 | <trans-unit id="ngb.pagination.previous-aria" datatype="html"> |
10817 | <source>Previous</source> | 10908 | <source>Previous</source> |
10818 | <target state="new">Previous</target> | 10909 | <target state="new">Previous</target> |
10819 | 10910 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">215</context></context-group> | |
10820 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">215</context></context-group></trans-unit> | 10911 | </trans-unit> |
10821 | <trans-unit id="ngb.pagination.next-aria" datatype="html"> | 10912 | <trans-unit id="ngb.pagination.next-aria" datatype="html"> |
10822 | <source>Next</source> | 10913 | <source>Next</source> |
10823 | <target state="translated">次</target> | 10914 | <target state="translated">次</target> |
10824 | 10915 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">226</context></context-group> | |
10825 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">226</context></context-group></trans-unit> | 10916 | </trans-unit> |
10826 | <trans-unit id="ngb.pagination.last-aria" datatype="html"> | 10917 | <trans-unit id="ngb.pagination.last-aria" datatype="html"> |
10827 | <source>Last</source> | 10918 | <source>Last</source> |
10828 | <target state="new">Last</target> | 10919 | <target state="new">Last</target> |
10829 | 10920 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">232</context></context-group> | |
10830 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">232</context></context-group></trans-unit> | 10921 | </trans-unit> |
10831 | <trans-unit id="ngb.progressbar.value" datatype="html"> | 10922 | <trans-unit id="ngb.progressbar.value" datatype="html"> |
10832 | <source><x id="INTERPOLATION"/></source> | 10923 | <source><x id="INTERPOLATION"/></source> |
10833 | <target state="translated"><x id="INTERPOLATION"/></target> | 10924 | <target state="translated"><x id="INTERPOLATION"/></target> |
10834 | 10925 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/progressbar/progressbar.ts</context><context context-type="linenumber">32</context></context-group> | |
10835 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/progressbar/progressbar.ts</context><context context-type="linenumber">32</context></context-group></trans-unit> | 10926 | </trans-unit> |
10836 | <trans-unit id="ngb.timepicker.HH" datatype="html"> | 10927 | <trans-unit id="ngb.timepicker.HH" datatype="html"> |
10837 | <source>HH</source> | 10928 | <source>HH</source> |
10838 | <target state="new">HH</target> | 10929 | <target state="new">HH</target> |
10839 | 10930 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">40</context></context-group> | |
10840 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">40</context></context-group></trans-unit> | 10931 | </trans-unit> |
10841 | <trans-unit id="ngb.timepicker.hours" datatype="html"> | 10932 | <trans-unit id="ngb.timepicker.hours" datatype="html"> |
10842 | <source>Hours</source> | 10933 | <source>Hours</source> |
10843 | <target state="translated">時間</target> | 10934 | <target state="translated">時間</target> |
10844 | 10935 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">46</context></context-group> | |
10845 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 10936 | </trans-unit> |
10846 | <trans-unit id="ngb.timepicker.MM" datatype="html"> | 10937 | <trans-unit id="ngb.timepicker.MM" datatype="html"> |
10847 | <source>MM</source> | 10938 | <source>MM</source> |
10848 | <target state="new">MM</target> | 10939 | <target state="new">MM</target> |
10849 | 10940 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">51</context></context-group> | |
10850 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> | 10941 | </trans-unit> |
10851 | <trans-unit id="ngb.timepicker.minutes" datatype="html"> | 10942 | <trans-unit id="ngb.timepicker.minutes" datatype="html"> |
10852 | <source>Minutes</source> | 10943 | <source>Minutes</source> |
10853 | <target state="translated">分</target> | 10944 | <target state="translated">分</target> |
10854 | 10945 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">58</context></context-group> | |
10855 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 10946 | </trans-unit> |
10856 | <trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | 10947 | <trans-unit id="ngb.timepicker.increment-hours" datatype="html"> |
10857 | <source>Increment hours</source> | 10948 | <source>Increment hours</source> |
10858 | <target state="translated">時間の値を増やす</target> | 10949 | <target state="translated">時間の値を増やす</target> |
10859 | 10950 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">63</context></context-group> | |
10860 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">63</context></context-group></trans-unit> | 10951 | </trans-unit> |
10861 | <trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | 10952 | <trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> |
10862 | <source>Decrement hours</source> | 10953 | <source>Decrement hours</source> |
10863 | <target state="translated">時間の値を減らす</target> | 10954 | <target state="translated">時間の値を減らす</target> |
10864 | 10955 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">69</context></context-group> | |
10865 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">69</context></context-group></trans-unit> | 10956 | </trans-unit> |
10866 | <trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | 10957 | <trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> |
10867 | <source>Increment minutes</source> | 10958 | <source>Increment minutes</source> |
10868 | <target state="translated">分の値を増やす</target> | 10959 | <target state="translated">分の値を増やす</target> |
10869 | 10960 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">76</context></context-group> | |
10870 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 10961 | </trans-unit> |
10871 | <trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | 10962 | <trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> |
10872 | <source>Decrement minutes</source> | 10963 | <source>Decrement minutes</source> |
10873 | <target state="translated">分の値を減らす</target> | 10964 | <target state="translated">分の値を減らす</target> |
10874 | 10965 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">82</context></context-group> | |
10875 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 10966 | </trans-unit> |
10876 | <trans-unit id="ngb.timepicker.SS" datatype="html"> | 10967 | <trans-unit id="ngb.timepicker.SS" datatype="html"> |
10877 | <source>SS</source> | 10968 | <source>SS</source> |
10878 | <target state="new">SS</target> | 10969 | <target state="new">SS</target> |
10879 | 10970 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">87</context></context-group> | |
10880 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">87</context></context-group></trans-unit> | 10971 | </trans-unit> |
10881 | <trans-unit id="ngb.timepicker.seconds" datatype="html"> | 10972 | <trans-unit id="ngb.timepicker.seconds" datatype="html"> |
10882 | <source>Seconds</source> | 10973 | <source>Seconds</source> |
10883 | <target state="translated">秒</target> | 10974 | <target state="translated">秒</target> |
10884 | 10975 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">92</context></context-group> | |
10885 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">92</context></context-group></trans-unit> | 10976 | </trans-unit> |
10886 | <trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | 10977 | <trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> |
10887 | <source>Increment seconds</source> | 10978 | <source>Increment seconds</source> |
10888 | <target state="translated">秒の値を増やす</target> | 10979 | <target state="translated">秒の値を増やす</target> |
10889 | 10980 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">100</context></context-group> | |
10890 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">100</context></context-group></trans-unit> | 10981 | </trans-unit> |
10891 | <trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | 10982 | <trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> |
10892 | <source>Decrement seconds</source> | 10983 | <source>Decrement seconds</source> |
10893 | <target state="translated">秒の値を減らす</target> | 10984 | <target state="translated">秒の値を減らす</target> |
10894 | 10985 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">106</context></context-group> | |
10895 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">106</context></context-group></trans-unit> | 10986 | </trans-unit> |
10896 | <trans-unit id="ngb.timepicker.PM" datatype="html"> | 10987 | <trans-unit id="ngb.timepicker.PM" datatype="html"> |
10897 | <source><x id="INTERPOLATION"/></source> | 10988 | <source><x id="INTERPOLATION"/></source> |
10898 | <target state="translated"><x id="INTERPOLATION"/></target> | 10989 | <target state="translated"><x id="INTERPOLATION"/></target> |
10899 | 10990 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">123</context></context-group> | |
10900 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">123</context></context-group></trans-unit> | 10991 | </trans-unit> |
10901 | <trans-unit id="ngb.timepicker.AM" datatype="html"> | 10992 | <trans-unit id="ngb.timepicker.AM" datatype="html"> |
10902 | <source><x id="INTERPOLATION"/></source> | 10993 | <source><x id="INTERPOLATION"/></source> |
10903 | <target state="translated"><x id="INTERPOLATION"/></target> | 10994 | <target state="translated"><x id="INTERPOLATION"/></target> |
10904 | 10995 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">115</context></context-group> | |
10905 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">115</context></context-group></trans-unit> | 10996 | </trans-unit> |
10906 | <trans-unit id="ngb.toast.close-aria" datatype="html"> | 10997 | <trans-unit id="ngb.toast.close-aria" datatype="html"> |
10907 | <source>Close</source> | 10998 | <source>Close</source> |
10908 | <target state="translated">閉じる</target> | 10999 | <target state="translated">閉じる</target> |
10909 | 11000 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/toast/toast.ts</context><context context-type="linenumber">78</context></context-group> | |
10910 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/toast/toast.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 11001 | </trans-unit> |
10911 | <trans-unit id="5210096066382592800"> | 11002 | <trans-unit id="5210096066382592800"> |
10912 | <source>Video to import updated.</source> | 11003 | <source>Video to import updated.</source> |
10913 | <target>動画のインポートが完了しました。</target> | 11004 | <target>動画のインポートが完了しました。</target> |
10914 | 11005 | <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">142</context></context-group> | |
10915 | 11006 | <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">143</context></context-group> | |
10916 | <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">142</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">143</context></context-group></trans-unit> | 11007 | </trans-unit> |
10917 | <trans-unit id="3284171506518522275"> | 11008 | <trans-unit id="3284171506518522275"> |
10918 | <source>Your video was uploaded to your account and is private.</source> | 11009 | <source>Your video was uploaded to your account and is private.</source> |
10919 | <target>動画はこのアカウントに非公開でアップロードされています。</target> | 11010 | <target>動画はこのアカウントに非公開でアップロードされています。</target> |
10920 | 11011 | ||
10921 | <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">118</context></context-group></trans-unit> | 11012 | <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">125</context></context-group></trans-unit> |
10922 | <trans-unit id="5699822024600815733"> | 11013 | <trans-unit id="5699822024600815733"> |
10923 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 11014 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10924 | <target>関連するデータ (タグ、説明など) は失われます。このページから移動してもよろしいですか?</target> | 11015 | <target>関連するデータ (タグ、説明など) は失われます。このページから移動してもよろしいですか?</target> |
10925 | 11016 | ||
10926 | <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">119</context></context-group></trans-unit> | 11017 | <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> |
10927 | <trans-unit id="1219739004043110649"> | 11018 | <trans-unit id="1219739004043110649"> |
10928 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 11019 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10929 | <target>動画はまだアップロードされていません。このページから移動してもよろしいですか?</target> | 11020 | <target>動画はまだアップロードされていません。このページから移動してもよろしいですか?</target> |
10930 | 11021 | ||
10931 | <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">121</context></context-group></trans-unit> | 11022 | <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">128</context></context-group></trans-unit> |
10932 | <trans-unit id="6932865105766151309" datatype="html"> | 11023 | <trans-unit id="6932865105766151309" datatype="html"> |
10933 | <source>Upload</source> | 11024 | <source>Upload</source> |
10934 | <target state="translated">アップロード</target> | 11025 | <target state="translated">アップロード</target> |
10935 | 11026 | ||
10936 | <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">227</context></context-group></trans-unit> | 11027 | <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">234</context></context-group></trans-unit> |
10937 | <trans-unit id="8278735427925094503" datatype="html"> | 11028 | <trans-unit id="8278735427925094503" datatype="html"> |
10938 | <source>Upload <x id="PH"/> </source> | 11029 | <source>Upload <x id="PH"/> </source> |
10939 | <target state="translated">アップロード <x id="PH"/> </target> | 11030 | <target state="translated">アップロード <x id="PH"/> </target> |
10940 | 11031 | ||
10941 | <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">229</context></context-group></trans-unit> | 11032 | <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">236</context></context-group></trans-unit> |
10942 | <trans-unit id="5981816353437801748"> | 11033 | <trans-unit id="5981816353437801748"> |
10943 | <source>Video published.</source> | 11034 | <source>Video published.</source> |
10944 | <target>動画が投稿されました。</target> | 11035 | <target>動画が投稿されました。</target> |
10945 | 11036 | ||
10946 | <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">251</context></context-group></trans-unit> | 11037 | <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">258</context></context-group></trans-unit> |
10947 | <trans-unit id="764164089183618119"> | 11038 | <trans-unit id="764164089183618119"> |
10948 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 11039 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
10949 | <target>保存していない変更があります。 ページを移動すると、変更した内容は失われます。</target> | 11040 | <target>保存していない変更があります。 ページを移動すると、変更した内容は失われます。</target> |
10950 | 11041 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">94</context></context-group> | |
10951 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit> | 11042 | </trans-unit> |
10952 | <trans-unit id="8306050839443016954"> | 11043 | <trans-unit id="8306050839443016954"> |
10953 | <source>Video updated.</source> | 11044 | <source>Video updated.</source> |
10954 | <target>動画が更新されました。</target> | 11045 | <target>動画が更新されました。</target> |
@@ -10972,33 +11063,33 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10972 | <trans-unit id="5964038603724691720" datatype="html"> | 11063 | <trans-unit id="5964038603724691720" datatype="html"> |
10973 | <source>Delete and re-draft</source> | 11064 | <source>Delete and re-draft</source> |
10974 | <target state="new">Delete and re-draft</target> | 11065 | <target state="new">Delete and re-draft</target> |
10975 | 11066 | <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> | |
10976 | <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> | 11067 | </trans-unit> |
10977 | <trans-unit id="7163633882758007711" datatype="html"> | 11068 | <trans-unit id="7163633882758007711" datatype="html"> |
10978 | <source>Do you really want to delete and re-draft this comment?</source> | 11069 | <source>Do you really want to delete and re-draft this comment?</source> |
10979 | <target state="new">Do you really want to delete and re-draft this comment?</target> | 11070 | <target state="new">Do you really want to delete and re-draft this comment?</target> |
10980 | 11071 | <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> | |
10981 | <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> | 11072 | </trans-unit> |
10982 | <trans-unit id="6775540171466219199" datatype="html"> | 11073 | <trans-unit id="6775540171466219199" datatype="html"> |
10983 | <source>Stop autoplaying next video</source> | 11074 | <source>Stop autoplaying next video</source> |
10984 | <target state="translated">次の動画への自動再生を止める</target> | 11075 | <target state="translated">次の動画への自動再生を止める</target> |
10985 | 11076 | <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">221</context></context-group> | |
10986 | <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">221</context></context-group></trans-unit> | 11077 | </trans-unit> |
10987 | <trans-unit id="5149234672404299151" datatype="html"> | 11078 | <trans-unit id="5149234672404299151" datatype="html"> |
10988 | <source>Autoplay next video</source> | 11079 | <source>Autoplay next video</source> |
10989 | <target state="translated">自動再生</target> | 11080 | <target state="translated">自動再生</target> |
10990 | 11081 | <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">222</context></context-group> | |
10991 | <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">222</context></context-group></trans-unit> | 11082 | </trans-unit> |
10992 | <trans-unit id="5870421136141540382" datatype="html"> | 11083 | <trans-unit id="5870421136141540382" datatype="html"> |
10993 | <source>Stop looping playlist videos</source> | 11084 | <source>Stop looping playlist videos</source> |
10994 | <target state="translated">プレイリストのループを止める</target> | 11085 | <target state="translated">プレイリストのループを止める</target> |
10995 | 11086 | <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">227</context></context-group> | |
10996 | <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">227</context></context-group></trans-unit> | 11087 | </trans-unit> |
10997 | <trans-unit id="1599585307037758139" datatype="html"> | 11088 | <trans-unit id="1599585307037758139" datatype="html"> |
10998 | <source>Loop playlist videos</source> | 11089 | <source>Loop playlist videos</source> |
10999 | <target state="translated">プレイリストをループ再生する</target> | 11090 | <target state="translated">プレイリストをループ再生する</target> |
11000 | 11091 | <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">228</context></context-group> | |
11001 | <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">228</context></context-group></trans-unit> | 11092 | </trans-unit> |
11002 | <trans-unit id="3704292036525161260" datatype="html"> | 11093 | <trans-unit id="3704292036525161260" datatype="html"> |
11003 | <source>Placeholder image</source> | 11094 | <source>Placeholder image</source> |
11004 | <target state="new">Placeholder image</target> | 11095 | <target state="new">Placeholder image</target> |
@@ -11010,28 +11101,28 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11010 | <trans-unit id="961774488937452220" datatype="html"> | 11101 | <trans-unit id="961774488937452220" datatype="html"> |
11011 | <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> | 11102 | <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> |
11012 | <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> | 11103 | <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> |
11013 | 11104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">296</context></context-group> | |
11014 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">296</context></context-group></trans-unit> | 11105 | </trans-unit> |
11015 | <trans-unit id="5761611056224181752" datatype="html"> | 11106 | <trans-unit id="5761611056224181752" datatype="html"> |
11016 | <source>Redirection</source> | 11107 | <source>Redirection</source> |
11017 | <target state="translated">リダイレクト</target> | 11108 | <target state="translated">リダイレクト</target> |
11018 | 11109 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">297</context></context-group> | |
11019 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">297</context></context-group></trans-unit> | 11110 | </trans-unit> |
11020 | <trans-unit id="8858527736400081688"> | 11111 | <trans-unit id="8858527736400081688"> |
11021 | <source>This video contains mature or explicit content. Are you sure you want to watch it?</source> | 11112 | <source>This video contains mature or explicit content. Are you sure you want to watch it?</source> |
11022 | <target>この動画には成人向けまたは過激なコンテンツが含まれています。本当に再生しますか?</target> | 11113 | <target>この動画には成人向けまたは過激なコンテンツが含まれています。本当に再生しますか?</target> |
11023 | 11114 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">343</context></context-group> | |
11024 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">343</context></context-group></trans-unit> | 11115 | </trans-unit> |
11025 | <trans-unit id="3937119019020041049"> | 11116 | <trans-unit id="3937119019020041049"> |
11026 | <source>Mature or explicit content</source> | 11117 | <source>Mature or explicit content</source> |
11027 | <target>成人向けまたは過激なコンテンツ</target> | 11118 | <target>成人向けまたは過激なコンテンツ</target> |
11028 | 11119 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">344</context></context-group> | |
11029 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 11120 | </trans-unit> |
11030 | <trans-unit id="1755474755114288376" datatype="html"> | 11121 | <trans-unit id="1755474755114288376" datatype="html"> |
11031 | <source>Up Next</source> | 11122 | <source>Up Next</source> |
11032 | <target state="new">Up Next</target> | 11123 | <target state="new">Up Next</target> |
11033 | 11124 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">415</context></context-group> | |
11034 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">415</context></context-group></trans-unit> | 11125 | </trans-unit> |
11035 | <trans-unit id="2159130950882492111" datatype="html"> | 11126 | <trans-unit id="2159130950882492111" datatype="html"> |
11036 | <source>Cancel</source> | 11127 | <source>Cancel</source> |
11037 | <target state="translated">キャンセル</target> | 11128 | <target state="translated">キャンセル</target> |
@@ -11040,63 +11131,63 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11040 | <trans-unit id="3354816756665089864" datatype="html"> | 11131 | <trans-unit id="3354816756665089864" datatype="html"> |
11041 | <source>Autoplay is suspended</source> | 11132 | <source>Autoplay is suspended</source> |
11042 | <target state="translated">自動再生は停止中です</target> | 11133 | <target state="translated">自動再生は停止中です</target> |
11043 | 11134 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">417</context></context-group> | |
11044 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">417</context></context-group></trans-unit> | 11135 | </trans-unit> |
11045 | <trans-unit id="7895294730547405228" datatype="html"> | 11136 | <trans-unit id="7895294730547405228" datatype="html"> |
11046 | <source>Enter/exit fullscreen (requires player focus)</source> | 11137 | <source>Enter/exit fullscreen (requires player focus)</source> |
11047 | <target state="new">Enter/exit fullscreen (requires player focus)</target> | 11138 | <target state="new">Enter/exit fullscreen (requires player focus)</target> |
11048 | 11139 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">688</context></context-group> | |
11049 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">688</context></context-group></trans-unit> | 11140 | </trans-unit> |
11050 | <trans-unit id="7618388257165864759" datatype="html"> | 11141 | <trans-unit id="7618388257165864759" datatype="html"> |
11051 | <source>Play/Pause the video (requires player focus)</source> | 11142 | <source>Play/Pause the video (requires player focus)</source> |
11052 | <target state="new">Play/Pause the video (requires player focus)</target> | 11143 | <target state="new">Play/Pause the video (requires player focus)</target> |
11053 | 11144 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">689</context></context-group> | |
11054 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">689</context></context-group></trans-unit> | 11145 | </trans-unit> |
11055 | <trans-unit id="7761890399634216630" datatype="html"> | 11146 | <trans-unit id="7761890399634216630" datatype="html"> |
11056 | <source>Mute/unmute the video (requires player focus)</source> | 11147 | <source>Mute/unmute the video (requires player focus)</source> |
11057 | <target state="new">Mute/unmute the video (requires player focus)</target> | 11148 | <target state="new">Mute/unmute the video (requires player focus)</target> |
11058 | 11149 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">690</context></context-group> | |
11059 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">690</context></context-group></trans-unit> | 11150 | </trans-unit> |
11060 | <trans-unit id="5996585232248234904" datatype="html"> | 11151 | <trans-unit id="5996585232248234904" datatype="html"> |
11061 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</source> | 11152 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</source> |
11062 | <target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</target> | 11153 | <target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</target> |
11063 | 11154 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">692</context></context-group> | |
11064 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">692</context></context-group></trans-unit> | 11155 | </trans-unit> |
11065 | <trans-unit id="3748765405903319998" datatype="html"> | 11156 | <trans-unit id="3748765405903319998" datatype="html"> |
11066 | <source>Increase the volume (requires player focus)</source> | 11157 | <source>Increase the volume (requires player focus)</source> |
11067 | <target state="new">Increase the volume (requires player focus)</target> | 11158 | <target state="new">Increase the volume (requires player focus)</target> |
11068 | 11159 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">694</context></context-group> | |
11069 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">694</context></context-group></trans-unit> | 11160 | </trans-unit> |
11070 | <trans-unit id="5810704036407159982" datatype="html"> | 11161 | <trans-unit id="5810704036407159982" datatype="html"> |
11071 | <source>Decrease the volume (requires player focus)</source> | 11162 | <source>Decrease the volume (requires player focus)</source> |
11072 | <target state="new">Decrease the volume (requires player focus)</target> | 11163 | <target state="new">Decrease the volume (requires player focus)</target> |
11073 | 11164 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">695</context></context-group> | |
11074 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">695</context></context-group></trans-unit> | 11165 | </trans-unit> |
11075 | <trans-unit id="2622048822548065691" datatype="html"> | 11166 | <trans-unit id="2622048822548065691" datatype="html"> |
11076 | <source>Seek the video forward (requires player focus)</source> | 11167 | <source>Seek the video forward (requires player focus)</source> |
11077 | <target state="new">Seek the video forward (requires player focus)</target> | 11168 | <target state="new">Seek the video forward (requires player focus)</target> |
11078 | 11169 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">697</context></context-group> | |
11079 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">697</context></context-group></trans-unit> | 11170 | </trans-unit> |
11080 | <trans-unit id="6540078205109221153" datatype="html"> | 11171 | <trans-unit id="6540078205109221153" datatype="html"> |
11081 | <source>Seek the video backward (requires player focus)</source> | 11172 | <source>Seek the video backward (requires player focus)</source> |
11082 | <target state="new">Seek the video backward (requires player focus)</target> | 11173 | <target state="new">Seek the video backward (requires player focus)</target> |
11083 | 11174 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">698</context></context-group> | |
11084 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">698</context></context-group></trans-unit> | 11175 | </trans-unit> |
11085 | <trans-unit id="1956491957766210808" datatype="html"> | 11176 | <trans-unit id="1956491957766210808" datatype="html"> |
11086 | <source>Increase playback rate (requires player focus)</source> | 11177 | <source>Increase playback rate (requires player focus)</source> |
11087 | <target state="translated">再生速度を早くする (アクティブのプレーヤーが必要)</target> | 11178 | <target state="translated">再生速度を早くする (アクティブのプレーヤーが必要)</target> |
11088 | 11179 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">700</context></context-group> | |
11089 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">700</context></context-group></trans-unit> | 11180 | </trans-unit> |
11090 | <trans-unit id="5495529997674803186" datatype="html"> | 11181 | <trans-unit id="5495529997674803186" datatype="html"> |
11091 | <source>Decrease playback rate (requires player focus)</source> | 11182 | <source>Decrease playback rate (requires player focus)</source> |
11092 | <target state="translated">再生速度を遅くする (アクティブのプレーヤーが必要)</target> | 11183 | <target state="translated">再生速度を遅くする (アクティブのプレーヤーが必要)</target> |
11093 | 11184 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">701</context></context-group> | |
11094 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">701</context></context-group></trans-unit> | 11185 | </trans-unit> |
11095 | <trans-unit id="3178343147230721210" datatype="html"> | 11186 | <trans-unit id="3178343147230721210" datatype="html"> |
11096 | <source>Navigate in the video frame by frame (requires player focus)</source> | 11187 | <source>Navigate in the video frame by frame (requires player focus)</source> |
11097 | <target state="new">Navigate in the video frame by frame (requires player focus)</target> | 11188 | <target state="new">Navigate in the video frame by frame (requires player focus)</target> |
11098 | 11189 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">703</context></context-group> | |
11099 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">703</context></context-group></trans-unit> | 11190 | </trans-unit> |
11100 | <trans-unit id="8025996572234182184"> | 11191 | <trans-unit id="8025996572234182184"> |
11101 | <source>Like the video</source> | 11192 | <source>Like the video</source> |
11102 | <target>高く評価</target> | 11193 | <target>高く評価</target> |
@@ -11115,16 +11206,14 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11115 | <trans-unit id="2431286785954354122" datatype="html"> | 11206 | <trans-unit id="2431286785954354122" datatype="html"> |
11116 | <source>Recently added</source> | 11207 | <source>Recently added</source> |
11117 | <target state="translated">最近投稿された動画</target> | 11208 | <target state="translated">最近投稿された動画</target> |
11118 | 11209 | <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> | |
11119 | 11210 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">137</context></context-group> | |
11120 | <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> | 11211 | </trans-unit> |
11121 | <trans-unit id="12646164819555880"> | 11212 | <trans-unit id="12646164819555880"> |
11122 | <source>Videos from your subscriptions</source> | 11213 | <source>Videos from your subscriptions</source> |
11123 | <target>登録チャンネルからの動画</target> | 11214 | <target>登録チャンネルからの動画</target> |
11124 | 11215 | <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> | |
11125 | <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> | 11216 | </trans-unit> |
11126 | |||
11127 | |||
11128 | <trans-unit id="1812379335568847528" datatype="html"> | 11217 | <trans-unit id="1812379335568847528" datatype="html"> |
11129 | <source>Subscriptions</source> | 11218 | <source>Subscriptions</source> |
11130 | <target state="translated">登録チャンネル</target> | 11219 | <target state="translated">登録チャンネル</target> |
@@ -11148,12 +11237,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11148 | <trans-unit id="8681933925782924101" datatype="html"> | 11237 | <trans-unit id="8681933925782924101" datatype="html"> |
11149 | <source>Local videos</source> | 11238 | <source>Local videos</source> |
11150 | <target state="translated">ローカル動画</target> | 11239 | <target state="translated">ローカル動画</target> |
11151 | 11240 | <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> | |
11152 | 11241 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">142</context></context-group> | |
11153 | 11242 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">143</context></context-group> | |
11154 | 11243 | </trans-unit> | |
11155 | <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="3037358578603095196" datatype="html"> | 11244 | <trans-unit id="3037358578603095196" datatype="html"> |
11156 | <source>Only videos uploaded on this instance are displayed</source><target state="new">Only videos uploaded on this instance are displayed</target> | 11245 | <source>Only videos uploaded on this instance are displayed</source> |
11246 | <target state="new">Only videos uploaded on this instance are displayed</target> | ||
11157 | <context-group purpose="location"> | 11247 | <context-group purpose="location"> |
11158 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> | 11248 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> |
11159 | <context context-type="linenumber">190</context> | 11249 | <context context-type="linenumber">190</context> |
@@ -11162,21 +11252,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11162 | <trans-unit id="4668975178372693951" datatype="html"> | 11252 | <trans-unit id="4668975178372693951" datatype="html"> |
11163 | <source>Discover videos</source> | 11253 | <source>Discover videos</source> |
11164 | <target state="translated">ディスカバー</target> | 11254 | <target state="translated">ディスカバー</target> |
11165 | 11255 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">19</context></context-group> | |
11166 | 11256 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">124</context></context-group> | |
11167 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">19</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> | 11257 | </trans-unit> |
11168 | <trans-unit id="8067135025051844577" datatype="html"> | 11258 | <trans-unit id="8067135025051844577" datatype="html"> |
11169 | <source>Trending videos</source> | 11259 | <source>Trending videos</source> |
11170 | <target state="translated">トレンド</target> | 11260 | <target state="translated">トレンド</target> |
11171 | 11261 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">130</context></context-group> | |
11172 | 11262 | </trans-unit> | |
11173 | <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> | ||
11174 | <trans-unit id="664221386829541948" datatype="html"> | 11263 | <trans-unit id="664221386829541948" datatype="html"> |
11175 | <source>Recently added videos</source> | 11264 | <source>Recently added videos</source> |
11176 | <target state="translated">最近投稿された動画</target> | 11265 | <target state="translated">最近投稿された動画</target> |
11177 | 11266 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">136</context></context-group> | |
11178 | 11267 | </trans-unit> | |
11179 | <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> | ||
11180 | <trans-unit id="8212906256415538361" datatype="html"> | 11268 | <trans-unit id="8212906256415538361" datatype="html"> |
11181 | <source>Upload a video</source> | 11269 | <source>Upload a video</source> |
11182 | <target state="translated">動画をアップロード</target> | 11270 | <target state="translated">動画をアップロード</target> |
diff --git a/client/src/locale/angular.jbo.xlf b/client/src/locale/angular.jbo.xlf index 159f120e3..ce1e053f9 100644 --- a/client/src/locale/angular.jbo.xlf +++ b/client/src/locale/angular.jbo.xlf | |||
@@ -393,7 +393,7 @@ | |||
393 | <source>video</source> | 393 | <source>video</source> |
394 | <target state="new">video</target> | 394 | <target state="new">video</target> |
395 | 395 | ||
396 | <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">294</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="6438815964972582865" datatype="html"> | 396 | <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">301</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="6438815964972582865" datatype="html"> |
397 | <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> | 397 | <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> |
398 | 398 | ||
399 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> | 399 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> |
@@ -455,10 +455,10 @@ | |||
455 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> | 455 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> |
456 | <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> | 456 | <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> |
457 | 457 | ||
458 | <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">330</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> | 458 | <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">337</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> |
459 | <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> | 459 | <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> |
460 | 460 | ||
461 | <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">349</context></context-group></trans-unit><trans-unit id="5235042777215655908" datatype="html"> | 461 | <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">356</context></context-group></trans-unit><trans-unit id="5235042777215655908" datatype="html"> |
462 | <source>subtitles</source><target state="new">subtitles</target> | 462 | <source>subtitles</source><target state="new">subtitles</target> |
463 | 463 | ||
464 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> | 464 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> |
@@ -470,7 +470,7 @@ | |||
470 | nu sisti | 470 | nu sisti |
471 | </target> | 471 | </target> |
472 | 472 | ||
473 | <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">48</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> | 473 | <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">48</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">23</context></context-group></trans-unit> |
474 | <trans-unit id="3099741642167775297"> | 474 | <trans-unit id="3099741642167775297"> |
475 | <source>Download</source> | 475 | <source>Download</source> |
476 | <target>nu kibycpa</target> | 476 | <target>nu kibycpa</target> |
@@ -2481,7 +2481,7 @@ galfi le mi japyvla</target> | |||
2481 | <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"> | 2481 | <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"> |
2482 | <source>Upload on hold</source><target state="new">Upload on hold</target> | 2482 | <source>Upload on hold</source><target state="new">Upload on hold</target> |
2483 | 2483 | ||
2484 | <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">167</context></context-group></trans-unit> | 2484 | <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">174</context></context-group></trans-unit> |
2485 | <trans-unit id="285180972645018518" datatype="html"> | 2485 | <trans-unit id="285180972645018518" datatype="html"> |
2486 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2486 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2487 | <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> | 2487 | <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> |
@@ -10357,20 +10357,20 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10357 | <source>Your video was uploaded to your account and is private.</source> | 10357 | <source>Your video was uploaded to your account and is private.</source> |
10358 | <target state="new">Your video was uploaded to your account and is private.</target> | 10358 | <target state="new">Your video was uploaded to your account and is private.</target> |
10359 | 10359 | ||
10360 | <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">118</context></context-group></trans-unit> | 10360 | <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">125</context></context-group></trans-unit> |
10361 | <trans-unit id="5699822024600815733" datatype="html"> | 10361 | <trans-unit id="5699822024600815733" datatype="html"> |
10362 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10362 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10363 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> | 10363 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> |
10364 | 10364 | ||
10365 | <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">119</context></context-group></trans-unit> | 10365 | <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> |
10366 | <trans-unit id="1219739004043110649" datatype="html"> | 10366 | <trans-unit id="1219739004043110649" datatype="html"> |
10367 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10367 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10368 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> | 10368 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> |
10369 | 10369 | ||
10370 | <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">121</context></context-group></trans-unit><trans-unit id="6932865105766151309" datatype="html"> | 10370 | <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">128</context></context-group></trans-unit><trans-unit id="6932865105766151309" datatype="html"> |
10371 | <source>Upload</source><target state="new">Upload</target> | 10371 | <source>Upload</source><target state="new">Upload</target> |
10372 | 10372 | ||
10373 | <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">227</context></context-group></trans-unit> | 10373 | <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">234</context></context-group></trans-unit> |
10374 | <trans-unit id="8278735427925094503" datatype="html"> | 10374 | <trans-unit id="8278735427925094503" datatype="html"> |
10375 | <source>Upload | 10375 | <source>Upload |
10376 | <x id="PH"/> | 10376 | <x id="PH"/> |
@@ -10379,13 +10379,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10379 | <x id="PH"/> | 10379 | <x id="PH"/> |
10380 | </target> | 10380 | </target> |
10381 | 10381 | ||
10382 | <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">229</context></context-group></trans-unit> | 10382 | <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">236</context></context-group></trans-unit> |
10383 | 10383 | ||
10384 | <trans-unit id="5981816353437801748"> | 10384 | <trans-unit id="5981816353437801748"> |
10385 | <source>Video published.</source> | 10385 | <source>Video published.</source> |
10386 | <target>.i lo se vidvi mo'u co'a gubni</target> | 10386 | <target>.i lo se vidvi mo'u co'a gubni</target> |
10387 | 10387 | ||
10388 | <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">251</context></context-group></trans-unit> | 10388 | <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">258</context></context-group></trans-unit> |
10389 | 10389 | ||
10390 | 10390 | ||
10391 | <trans-unit id="764164089183618119" datatype="html"> | 10391 | <trans-unit id="764164089183618119" datatype="html"> |
diff --git a/client/src/locale/angular.kab.xlf b/client/src/locale/angular.kab.xlf index b879301df..6d0ac4283 100644 --- a/client/src/locale/angular.kab.xlf +++ b/client/src/locale/angular.kab.xlf | |||
@@ -269,7 +269,7 @@ | |||
269 | <target>tavidyut</target> | 269 | <target>tavidyut</target> |
270 | 270 | ||
271 | 271 | ||
272 | <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">294</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> | 272 | <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">301</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> |
273 | <trans-unit id="6438815964972582865" datatype="html"> | 273 | <trans-unit id="6438815964972582865" datatype="html"> |
274 | <source>The following link contains a private token and should not be shared with anyone.</source> | 274 | <source>The following link contains a private token and should not be shared with anyone.</source> |
275 | <target state="translated">Aseɣwen-a deg-s ajuṭun sli, ur ilaq ara ad yettwabḍu ula d yiwen.</target> | 275 | <target state="translated">Aseɣwen-a deg-s ajuṭun sli, ur ilaq ara ad yettwabḍu ula d yiwen.</target> |
@@ -337,12 +337,12 @@ | |||
337 | <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> | 337 | <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> |
338 | <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> | 338 | <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> |
339 | 339 | ||
340 | <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">330</context></context-group></trans-unit> | 340 | <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">337</context></context-group></trans-unit> |
341 | <trans-unit id="7873395933409147217" datatype="html"> | 341 | <trans-unit id="7873395933409147217" datatype="html"> |
342 | <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> | 342 | <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> |
343 | <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> | 343 | <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> |
344 | 344 | ||
345 | <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">349</context></context-group></trans-unit> | 345 | <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">356</context></context-group></trans-unit> |
346 | <trans-unit id="5235042777215655908" datatype="html"> | 346 | <trans-unit id="5235042777215655908" datatype="html"> |
347 | <source>subtitles</source> | 347 | <source>subtitles</source> |
348 | <target state="translated">iduzwilen</target> | 348 | <target state="translated">iduzwilen</target> |
@@ -560,7 +560,7 @@ | |||
560 | <target>Sefsex</target> | 560 | <target>Sefsex</target> |
561 | 561 | ||
562 | 562 | ||
563 | <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">48</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> | 563 | <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">48</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">23</context></context-group></trans-unit> |
564 | <trans-unit id="834805431202576194" datatype="html"> | 564 | <trans-unit id="834805431202576194" datatype="html"> |
565 | <source>No results.</source> | 565 | <source>No results.</source> |
566 | <target state="translated">Ulac agemmuḍ.</target> | 566 | <target state="translated">Ulac agemmuḍ.</target> |
@@ -2609,7 +2609,7 @@ The link will expire within 1 hour.</source> | |||
2609 | <source>Upload on hold</source> | 2609 | <source>Upload on hold</source> |
2610 | <target state="new">Upload on hold</target> | 2610 | <target state="new">Upload on hold</target> |
2611 | 2611 | ||
2612 | <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">167</context></context-group></trans-unit> | 2612 | <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">174</context></context-group></trans-unit> |
2613 | <trans-unit id="285180972645018518" datatype="html"> | 2613 | <trans-unit id="285180972645018518" datatype="html"> |
2614 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2614 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2615 | <target state="translated">Nesḥassef, tamahilt n usali tensa i umiḍan-ik·im. Ma yella tebɣiḍ ad ternuḍ tividyutin, anedbal yezmer ad yekkes asekker afmiḍi-inek·inem.</target> | 2615 | <target state="translated">Nesḥassef, tamahilt n usali tensa i umiḍan-ik·im. Ma yella tebɣiḍ ad ternuḍ tividyutin, anedbal yezmer ad yekkes asekker afmiḍi-inek·inem.</target> |
@@ -10576,32 +10576,32 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10576 | <source>Your video was uploaded to your account and is private.</source> | 10576 | <source>Your video was uploaded to your account and is private.</source> |
10577 | <target state="translated">Tavidyut-ik·im tettwasuli ɣer umiḍan-ik·im yerna d tusligt.</target> | 10577 | <target state="translated">Tavidyut-ik·im tettwasuli ɣer umiḍan-ik·im yerna d tusligt.</target> |
10578 | 10578 | ||
10579 | <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">118</context></context-group></trans-unit> | 10579 | <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">125</context></context-group></trans-unit> |
10580 | <trans-unit id="5699822024600815733" datatype="html"> | 10580 | <trans-unit id="5699822024600815733" datatype="html"> |
10581 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10581 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10582 | <target state="translated">Maca ad tesruḥeḍ isefka yemcudden (tibzimin, aglam...), d tidet tebɣiḍ ad teffɣeḍ seg usebter-a?</target> | 10582 | <target state="translated">Maca ad tesruḥeḍ isefka yemcudden (tibzimin, aglam...), d tidet tebɣiḍ ad teffɣeḍ seg usebter-a?</target> |
10583 | 10583 | ||
10584 | <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">119</context></context-group></trans-unit> | 10584 | <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> |
10585 | <trans-unit id="1219739004043110649" datatype="html"> | 10585 | <trans-unit id="1219739004043110649" datatype="html"> |
10586 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10586 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10587 | <target state="translated">Tavidyut-a mazal ur d-tettwasuli ara, d tidet tebɣiḍ ad teffɣeḍ seg usebter-a?</target> | 10587 | <target state="translated">Tavidyut-a mazal ur d-tettwasuli ara, d tidet tebɣiḍ ad teffɣeḍ seg usebter-a?</target> |
10588 | 10588 | ||
10589 | <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">121</context></context-group></trans-unit> | 10589 | <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">128</context></context-group></trans-unit> |
10590 | <trans-unit id="6932865105766151309" datatype="html"> | 10590 | <trans-unit id="6932865105766151309" datatype="html"> |
10591 | <source>Upload</source> | 10591 | <source>Upload</source> |
10592 | <target state="translated">Sali</target> | 10592 | <target state="translated">Sali</target> |
10593 | 10593 | ||
10594 | <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">227</context></context-group></trans-unit> | 10594 | <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">234</context></context-group></trans-unit> |
10595 | <trans-unit id="8278735427925094503" datatype="html"> | 10595 | <trans-unit id="8278735427925094503" datatype="html"> |
10596 | <source>Upload <x id="PH"/> </source> | 10596 | <source>Upload <x id="PH"/> </source> |
10597 | <target state="translated">Sali-d <x id="PH"/> </target> | 10597 | <target state="translated">Sali-d <x id="PH"/> </target> |
10598 | 10598 | ||
10599 | <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">229</context></context-group></trans-unit> | 10599 | <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">236</context></context-group></trans-unit> |
10600 | <trans-unit id="5981816353437801748" datatype="html"> | 10600 | <trans-unit id="5981816353437801748" datatype="html"> |
10601 | <source>Video published.</source> | 10601 | <source>Video published.</source> |
10602 | <target state="translated">Tavidyut yettwasuffɣen.</target> | 10602 | <target state="translated">Tavidyut yettwasuffɣen.</target> |
10603 | 10603 | ||
10604 | <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">251</context></context-group></trans-unit> | 10604 | <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">258</context></context-group></trans-unit> |
10605 | <trans-unit id="764164089183618119" datatype="html"> | 10605 | <trans-unit id="764164089183618119" datatype="html"> |
10606 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 10606 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
10607 | <target state="translated">You have unsaved changes! If you leave, your changes will be lost.</target> | 10607 | <target state="translated">You have unsaved changes! If you leave, your changes will be lost.</target> |
diff --git a/client/src/locale/angular.ko-KR.xlf b/client/src/locale/angular.ko-KR.xlf index 07295d0f0..18a1c1be1 100644 --- a/client/src/locale/angular.ko-KR.xlf +++ b/client/src/locale/angular.ko-KR.xlf | |||
@@ -343,7 +343,7 @@ | |||
343 | <source>video</source> | 343 | <source>video</source> |
344 | <target state="translated">동영상</target> | 344 | <target state="translated">동영상</target> |
345 | 345 | ||
346 | <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">294</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="6438815964972582865" datatype="html"> | 346 | <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">301</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="6438815964972582865" datatype="html"> |
347 | <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> | 347 | <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> |
348 | 348 | ||
349 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> | 349 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> |
@@ -407,10 +407,10 @@ | |||
407 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> | 407 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> |
408 | <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> | 408 | <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> |
409 | 409 | ||
410 | <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">330</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> | 410 | <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">337</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> |
411 | <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> | 411 | <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> |
412 | 412 | ||
413 | <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">349</context></context-group></trans-unit> | 413 | <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">356</context></context-group></trans-unit> |
414 | 414 | ||
415 | <trans-unit id="5235042777215655908" datatype="html"> | 415 | <trans-unit id="5235042777215655908" datatype="html"> |
416 | <source>subtitles</source> | 416 | <source>subtitles</source> |
@@ -423,7 +423,7 @@ | |||
423 | 취소 | 423 | 취소 |
424 | </target> | 424 | </target> |
425 | 425 | ||
426 | <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">48</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> | 426 | <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">48</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">23</context></context-group></trans-unit> |
427 | <trans-unit id="3099741642167775297"> | 427 | <trans-unit id="3099741642167775297"> |
428 | <source>Download</source> | 428 | <source>Download</source> |
429 | <target>다운로드</target> | 429 | <target>다운로드</target> |
@@ -2538,7 +2538,7 @@ The link will expire within 1 hour.</target> | |||
2538 | <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"> | 2538 | <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"> |
2539 | <source>Upload on hold</source><target state="new">Upload on hold</target> | 2539 | <source>Upload on hold</source><target state="new">Upload on hold</target> |
2540 | 2540 | ||
2541 | <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">167</context></context-group></trans-unit> | 2541 | <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">174</context></context-group></trans-unit> |
2542 | <trans-unit id="285180972645018518" datatype="html"> | 2542 | <trans-unit id="285180972645018518" datatype="html"> |
2543 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2543 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2544 | <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> | 2544 | <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> |
@@ -10939,35 +10939,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10939 | <source>Your video was uploaded to your account and is private.</source> | 10939 | <source>Your video was uploaded to your account and is private.</source> |
10940 | <target state="new">Your video was uploaded to your account and is private.</target> | 10940 | <target state="new">Your video was uploaded to your account and is private.</target> |
10941 | 10941 | ||
10942 | <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">118</context></context-group></trans-unit> | 10942 | <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">125</context></context-group></trans-unit> |
10943 | <trans-unit id="5699822024600815733" datatype="html"> | 10943 | <trans-unit id="5699822024600815733" datatype="html"> |
10944 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10944 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10945 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> | 10945 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> |
10946 | 10946 | ||
10947 | <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">119</context></context-group></trans-unit> | 10947 | <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> |
10948 | <trans-unit id="1219739004043110649" datatype="html"> | 10948 | <trans-unit id="1219739004043110649" datatype="html"> |
10949 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10949 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10950 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> | 10950 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> |
10951 | 10951 | ||
10952 | <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">121</context></context-group></trans-unit> | 10952 | <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">128</context></context-group></trans-unit> |
10953 | <trans-unit id="6932865105766151309" datatype="html"> | 10953 | <trans-unit id="6932865105766151309" datatype="html"> |
10954 | <source>Upload</source> | 10954 | <source>Upload</source> |
10955 | <target state="new">Upload</target> | 10955 | <target state="new">Upload</target> |
10956 | 10956 | ||
10957 | <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">227</context></context-group></trans-unit> | 10957 | <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">234</context></context-group></trans-unit> |
10958 | <trans-unit id="8278735427925094503" datatype="html"> | 10958 | <trans-unit id="8278735427925094503" datatype="html"> |
10959 | <source>Upload <x id="PH"/> </source> | 10959 | <source>Upload <x id="PH"/> </source> |
10960 | <target state="new">Upload | 10960 | <target state="new">Upload |
10961 | <x id="PH"/> | 10961 | <x id="PH"/> |
10962 | </target> | 10962 | </target> |
10963 | 10963 | ||
10964 | <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">229</context></context-group></trans-unit> | 10964 | <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">236</context></context-group></trans-unit> |
10965 | 10965 | ||
10966 | <trans-unit id="5981816353437801748" datatype="html"> | 10966 | <trans-unit id="5981816353437801748" datatype="html"> |
10967 | <source>Video published.</source> | 10967 | <source>Video published.</source> |
10968 | <target state="new">Video published.</target> | 10968 | <target state="new">Video published.</target> |
10969 | 10969 | ||
10970 | <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">251</context></context-group></trans-unit> | 10970 | <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">258</context></context-group></trans-unit> |
10971 | 10971 | ||
10972 | 10972 | ||
10973 | <trans-unit id="764164089183618119" datatype="html"> | 10973 | <trans-unit id="764164089183618119" datatype="html"> |
diff --git a/client/src/locale/angular.lt-LT.xlf b/client/src/locale/angular.lt-LT.xlf index fd9256d7a..90056bb81 100644 --- a/client/src/locale/angular.lt-LT.xlf +++ b/client/src/locale/angular.lt-LT.xlf | |||
@@ -379,7 +379,7 @@ | |||
379 | <source>video</source> | 379 | <source>video</source> |
380 | <target state="new">video</target> | 380 | <target state="new">video</target> |
381 | 381 | ||
382 | <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">294</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="6438815964972582865" datatype="html"> | 382 | <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">301</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="6438815964972582865" datatype="html"> |
383 | <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> | 383 | <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> |
384 | 384 | ||
385 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> | 385 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> |
@@ -441,10 +441,10 @@ | |||
441 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> | 441 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> |
442 | <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> | 442 | <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> |
443 | 443 | ||
444 | <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">330</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> | 444 | <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">337</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> |
445 | <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> | 445 | <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> |
446 | 446 | ||
447 | <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">349</context></context-group></trans-unit><trans-unit id="5235042777215655908" datatype="html"> | 447 | <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">356</context></context-group></trans-unit><trans-unit id="5235042777215655908" datatype="html"> |
448 | <source>subtitles</source><target state="new">subtitles</target> | 448 | <source>subtitles</source><target state="new">subtitles</target> |
449 | 449 | ||
450 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> | 450 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> |
@@ -454,7 +454,7 @@ | |||
454 | Cancel | 454 | Cancel |
455 | </target> | 455 | </target> |
456 | 456 | ||
457 | <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">48</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> | 457 | <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">48</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">23</context></context-group></trans-unit> |
458 | <trans-unit id="3099741642167775297" datatype="html"> | 458 | <trans-unit id="3099741642167775297" datatype="html"> |
459 | <source>Download</source> | 459 | <source>Download</source> |
460 | <target state="new">Download</target> | 460 | <target state="new">Download</target> |
@@ -2436,7 +2436,7 @@ The link will expire within 1 hour.</target> | |||
2436 | <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"> | 2436 | <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"> |
2437 | <source>Upload on hold</source><target state="new">Upload on hold</target> | 2437 | <source>Upload on hold</source><target state="new">Upload on hold</target> |
2438 | 2438 | ||
2439 | <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">167</context></context-group></trans-unit> | 2439 | <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">174</context></context-group></trans-unit> |
2440 | <trans-unit id="285180972645018518" datatype="html"> | 2440 | <trans-unit id="285180972645018518" datatype="html"> |
2441 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2441 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2442 | <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> | 2442 | <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> |
@@ -10255,20 +10255,20 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10255 | <source>Your video was uploaded to your account and is private.</source> | 10255 | <source>Your video was uploaded to your account and is private.</source> |
10256 | <target state="new">Your video was uploaded to your account and is private.</target> | 10256 | <target state="new">Your video was uploaded to your account and is private.</target> |
10257 | 10257 | ||
10258 | <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">118</context></context-group></trans-unit> | 10258 | <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">125</context></context-group></trans-unit> |
10259 | <trans-unit id="5699822024600815733" datatype="html"> | 10259 | <trans-unit id="5699822024600815733" datatype="html"> |
10260 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10260 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10261 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> | 10261 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> |
10262 | 10262 | ||
10263 | <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">119</context></context-group></trans-unit> | 10263 | <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> |
10264 | <trans-unit id="1219739004043110649" datatype="html"> | 10264 | <trans-unit id="1219739004043110649" datatype="html"> |
10265 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10265 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10266 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> | 10266 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> |
10267 | 10267 | ||
10268 | <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">121</context></context-group></trans-unit><trans-unit id="6932865105766151309" datatype="html"> | 10268 | <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">128</context></context-group></trans-unit><trans-unit id="6932865105766151309" datatype="html"> |
10269 | <source>Upload</source><target state="new">Upload</target> | 10269 | <source>Upload</source><target state="new">Upload</target> |
10270 | 10270 | ||
10271 | <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">227</context></context-group></trans-unit> | 10271 | <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">234</context></context-group></trans-unit> |
10272 | <trans-unit id="8278735427925094503" datatype="html"> | 10272 | <trans-unit id="8278735427925094503" datatype="html"> |
10273 | <source>Upload | 10273 | <source>Upload |
10274 | <x id="PH"/> | 10274 | <x id="PH"/> |
@@ -10277,13 +10277,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10277 | <x id="PH"/> | 10277 | <x id="PH"/> |
10278 | </target> | 10278 | </target> |
10279 | 10279 | ||
10280 | <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">229</context></context-group></trans-unit> | 10280 | <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">236</context></context-group></trans-unit> |
10281 | 10281 | ||
10282 | <trans-unit id="5981816353437801748" datatype="html"> | 10282 | <trans-unit id="5981816353437801748" datatype="html"> |
10283 | <source>Video published.</source> | 10283 | <source>Video published.</source> |
10284 | <target state="new">Video published.</target> | 10284 | <target state="new">Video published.</target> |
10285 | 10285 | ||
10286 | <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">251</context></context-group></trans-unit> | 10286 | <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">258</context></context-group></trans-unit> |
10287 | 10287 | ||
10288 | 10288 | ||
10289 | <trans-unit id="764164089183618119" datatype="html"> | 10289 | <trans-unit id="764164089183618119" datatype="html"> |
diff --git a/client/src/locale/angular.ml.xlf b/client/src/locale/angular.ml.xlf index 91a3f5808..e4bec543c 100644 --- a/client/src/locale/angular.ml.xlf +++ b/client/src/locale/angular.ml.xlf | |||
@@ -437,7 +437,7 @@ | |||
437 | </trans-unit> | 437 | </trans-unit> |
438 | <trans-unit id="8685905644837116382" datatype="html"> | 438 | <trans-unit id="8685905644837116382" datatype="html"> |
439 | <source>MODERATION</source> | 439 | <source>MODERATION</source> |
440 | <target/> | 440 | <target>മോഡറേഷൻ</target> |
441 | <context-group purpose="location"> | 441 | <context-group purpose="location"> |
442 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> | 442 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> |
443 | <context context-type="linenumber">128,129</context> | 443 | <context context-type="linenumber">128,129</context> |
@@ -537,6 +537,7 @@ | |||
537 | </trans-unit> | 537 | </trans-unit> |
538 | <trans-unit id="6613567056718289931" datatype="html"> | 538 | <trans-unit id="6613567056718289931" datatype="html"> |
539 | <source>Contact <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/> administrator</source> | 539 | <source>Contact <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/> administrator</source> |
540 | <target><x id="INTERPOLATION" equiv-text="{{ instanceName }}"/> അഡ്മിനുമായി ബന്ധപ്പെടുക</target> | ||
540 | <context-group purpose="location"> | 541 | <context-group purpose="location"> |
541 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> | 542 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> |
542 | <context context-type="linenumber">3</context> | 543 | <context context-type="linenumber">3</context> |
@@ -688,7 +689,7 @@ | |||
688 | </trans-unit> | 689 | </trans-unit> |
689 | <trans-unit id="2072135752262464360" datatype="html"> | 690 | <trans-unit id="2072135752262464360" datatype="html"> |
690 | <source>You already sent this form recently</source> | 691 | <source>You already sent this form recently</source> |
691 | <target/> | 692 | <target>നിങ്ങൾ കുറച്ച് നേരം മുമ്പ് ഈ ഫോം അയയ്ച്ചായിരുന്നു</target> |
692 | <context-group purpose="location"> | 693 | <context-group purpose="location"> |
693 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.ts</context> | 694 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.ts</context> |
694 | <context context-type="linenumber">83</context> | 695 | <context context-type="linenumber">83</context> |
@@ -976,7 +977,7 @@ | |||
976 | </trans-unit> | 977 | </trans-unit> |
977 | <trans-unit id="1812900507515561988" datatype="html"> | 978 | <trans-unit id="1812900507515561988" datatype="html"> |
978 | <source>About this instance's network</source> | 979 | <source>About this instance's network</source> |
979 | <target/> | 980 | <target>ഈ ഇൻസ്റ്റൻസിന്റെ നെറ്റ്വർക്കിനെ കുറിച്ച്</target> |
980 | <context-group purpose="location"> | 981 | <context-group purpose="location"> |
981 | <context context-type="sourcefile">src/app/+about/about-routing.module.ts</context> | 982 | <context context-type="sourcefile">src/app/+about/about-routing.module.ts</context> |
982 | <context context-type="linenumber">45</context> | 983 | <context context-type="linenumber">45</context> |
diff --git a/client/src/locale/angular.nb-NO.xlf b/client/src/locale/angular.nb-NO.xlf index 8b89ef6be..4f82cfb5d 100644 --- a/client/src/locale/angular.nb-NO.xlf +++ b/client/src/locale/angular.nb-NO.xlf | |||
@@ -240,7 +240,7 @@ | |||
240 | <source>video</source> | 240 | <source>video</source> |
241 | <target state="translated">video</target> | 241 | <target state="translated">video</target> |
242 | 242 | ||
243 | <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">294</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="6438815964972582865" datatype="html"> | 243 | <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">301</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="6438815964972582865" datatype="html"> |
244 | <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> | 244 | <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> |
245 | 245 | ||
246 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> | 246 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> |
@@ -301,10 +301,10 @@ | |||
301 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> | 301 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> |
302 | <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> | 302 | <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> |
303 | 303 | ||
304 | <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">330</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> | 304 | <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">337</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> |
305 | <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> | 305 | <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> |
306 | 306 | ||
307 | <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">349</context></context-group></trans-unit> | 307 | <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">356</context></context-group></trans-unit> |
308 | <trans-unit id="5235042777215655908" datatype="html"> | 308 | <trans-unit id="5235042777215655908" datatype="html"> |
309 | <source>subtitles</source> | 309 | <source>subtitles</source> |
310 | <target state="translated">undertekster</target> | 310 | <target state="translated">undertekster</target> |
@@ -314,7 +314,7 @@ | |||
314 | <source>Cancel</source> | 314 | <source>Cancel</source> |
315 | <target state="translated">Avbryt</target> | 315 | <target state="translated">Avbryt</target> |
316 | 316 | ||
317 | <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">48</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> | 317 | <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">48</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">23</context></context-group></trans-unit> |
318 | <trans-unit id="3099741642167775297" datatype="html"> | 318 | <trans-unit id="3099741642167775297" datatype="html"> |
319 | <source>Download</source> | 319 | <source>Download</source> |
320 | <target state="translated">Last ned</target> | 320 | <target state="translated">Last ned</target> |
@@ -2399,7 +2399,7 @@ The link will expire within 1 hour.</target> | |||
2399 | <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"> | 2399 | <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"> |
2400 | <source>Upload on hold</source><target state="new">Upload on hold</target> | 2400 | <source>Upload on hold</source><target state="new">Upload on hold</target> |
2401 | 2401 | ||
2402 | <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">167</context></context-group></trans-unit> | 2402 | <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">174</context></context-group></trans-unit> |
2403 | <trans-unit id="285180972645018518" datatype="html"> | 2403 | <trans-unit id="285180972645018518" datatype="html"> |
2404 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2404 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2405 | <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> | 2405 | <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> |
@@ -10682,35 +10682,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10682 | <source>Your video was uploaded to your account and is private.</source> | 10682 | <source>Your video was uploaded to your account and is private.</source> |
10683 | <target state="new">Your video was uploaded to your account and is private.</target> | 10683 | <target state="new">Your video was uploaded to your account and is private.</target> |
10684 | 10684 | ||
10685 | <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">118</context></context-group></trans-unit> | 10685 | <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">125</context></context-group></trans-unit> |
10686 | <trans-unit id="5699822024600815733" datatype="html"> | 10686 | <trans-unit id="5699822024600815733" datatype="html"> |
10687 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10687 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10688 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> | 10688 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> |
10689 | 10689 | ||
10690 | <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">119</context></context-group></trans-unit> | 10690 | <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> |
10691 | <trans-unit id="1219739004043110649" datatype="html"> | 10691 | <trans-unit id="1219739004043110649" datatype="html"> |
10692 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10692 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10693 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> | 10693 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> |
10694 | 10694 | ||
10695 | <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">121</context></context-group></trans-unit> | 10695 | <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">128</context></context-group></trans-unit> |
10696 | <trans-unit id="6932865105766151309" datatype="html"> | 10696 | <trans-unit id="6932865105766151309" datatype="html"> |
10697 | <source>Upload</source> | 10697 | <source>Upload</source> |
10698 | <target state="new">Upload</target> | 10698 | <target state="new">Upload</target> |
10699 | 10699 | ||
10700 | <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">227</context></context-group></trans-unit> | 10700 | <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">234</context></context-group></trans-unit> |
10701 | <trans-unit id="8278735427925094503" datatype="html"> | 10701 | <trans-unit id="8278735427925094503" datatype="html"> |
10702 | <source>Upload <x id="PH"/> </source> | 10702 | <source>Upload <x id="PH"/> </source> |
10703 | <target state="new">Upload | 10703 | <target state="new">Upload |
10704 | <x id="PH"/> | 10704 | <x id="PH"/> |
10705 | </target> | 10705 | </target> |
10706 | 10706 | ||
10707 | <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">229</context></context-group></trans-unit> | 10707 | <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">236</context></context-group></trans-unit> |
10708 | 10708 | ||
10709 | <trans-unit id="5981816353437801748" datatype="html"> | 10709 | <trans-unit id="5981816353437801748" datatype="html"> |
10710 | <source>Video published.</source> | 10710 | <source>Video published.</source> |
10711 | <target state="new">Video published.</target> | 10711 | <target state="new">Video published.</target> |
10712 | 10712 | ||
10713 | <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">251</context></context-group></trans-unit> | 10713 | <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">258</context></context-group></trans-unit> |
10714 | 10714 | ||
10715 | 10715 | ||
10716 | <trans-unit id="764164089183618119" datatype="html"> | 10716 | <trans-unit id="764164089183618119" datatype="html"> |
diff --git a/client/src/locale/angular.nl-NL.xlf b/client/src/locale/angular.nl-NL.xlf index abbd4df9c..877fa5823 100644 --- a/client/src/locale/angular.nl-NL.xlf +++ b/client/src/locale/angular.nl-NL.xlf | |||
@@ -1,16 +1,17 @@ | |||
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="nl-NL"> | 3 | <file source-language="en-US" datatype="plaintext" original="" target-language="nl-NL"> |
5 | <body> | 4 | <body> |
6 | <trans-unit id="219462505467671767" datatype="html"> | 5 | <trans-unit id="219462505467671767" datatype="html"> |
7 | <source>Close the left menu</source><target state="new">Close the left menu</target> | 6 | <source>Close the left menu</source> |
8 | 7 | <target state="translated">Sluit linkermenu</target> | |
9 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit><trans-unit id="3455550526898419928" datatype="html"> | 8 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">133</context></context-group> |
10 | <source>Open the left menu</source><target state="new">Open the left menu</target> | 9 | </trans-unit> |
11 | 10 | <trans-unit id="3455550526898419928" datatype="html"> | |
12 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit> | 11 | <source>Open the left menu</source> |
13 | 12 | <target state="translated">Open linkermenu</target> | |
13 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">135</context></context-group> | ||
14 | </trans-unit> | ||
14 | <trans-unit id="9075761896562520962"> | 15 | <trans-unit id="9075761896562520962"> |
15 | <source>You don't have notifications.</source> | 16 | <source>You don't have notifications.</source> |
16 | <target>Je hebt geen meldingen.</target> | 17 | <target>Je hebt geen meldingen.</target> |
@@ -74,13 +75,14 @@ | |||
74 | <trans-unit id="2740435661398285769" datatype="html"> | 75 | <trans-unit id="2740435661398285769" datatype="html"> |
75 | <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> | 76 | <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> |
76 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/> <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> heeft op je video gereageerd <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/> <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> | 77 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.comment.account.displayName }}"/> <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> heeft op je video gereageerd <x id="START_LINK_1" ctype="x-a" equiv-text="<a>"/> <x id="INTERPOLATION_1" equiv-text="{{ notification.comment.video.name }}"/> <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> |
77 | 78 | <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> | |
78 | <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> | 79 | </trans-unit> |
79 | <trans-unit id="2020563642195933477" datatype="html"> | 80 | <trans-unit id="2020563642195933477" datatype="html"> |
80 | <source>The notification concerns a comment now unavailable</source> | 81 | <source>The notification concerns a comment now unavailable</source> |
81 | <target state="translated">De melding betreft een niet (meer) beschikbare video</target> | 82 | <target state="translated">De melding betreft een niet (meer) beschikbare video</target> |
82 | 83 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">107</context></context-group> | |
83 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">107</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">172</context></context-group></trans-unit> | 84 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">172</context></context-group> |
85 | </trans-unit> | ||
84 | <trans-unit id="2436106664506839309" datatype="html"> | 86 | <trans-unit id="2436106664506839309" datatype="html"> |
85 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been published </source> | 87 | <source>Your video <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> has been published </source> |
86 | <target state="translated">Jouw video | 88 | <target state="translated">Jouw video |
@@ -88,8 +90,8 @@ | |||
88 | <x id="INTERPOLATION" equiv-text="{{ notification.video.name }}"/> | 90 | <x id="INTERPOLATION" equiv-text="{{ notification.video.name }}"/> |
89 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is gepubliceerd | 91 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is gepubliceerd |
90 | </target> | 92 | </target> |
91 | 93 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">116</context></context-group> | |
92 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 94 | </trans-unit> |
93 | <trans-unit id="7130219900907848048" datatype="html"> | 95 | <trans-unit id="7130219900907848048" datatype="html"> |
94 | <source><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> succeeded </source> | 96 | <source><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> succeeded </source> |
95 | <target state="translated"> | 97 | <target state="translated"> |
@@ -97,47 +99,52 @@ | |||
97 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> | 99 | <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> |
98 | <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> is voltooid | 100 | <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> is voltooid |
99 | </target> | 101 | </target> |
100 | 102 | <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> | |
101 | <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> | 103 | </trans-unit> |
102 | <trans-unit id="2099623308096969132" datatype="html"> | 104 | <trans-unit id="2099623308096969132" datatype="html"> |
103 | <source><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> failed </source> | 105 | <source><x id="START_LINK"/>Your video import<x id="CLOSE_LINK"/> <x id="INTERPOLATION"/> failed </source> |
104 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Je video-import <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> is mislukt </target> | 106 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Je video-import <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.videoImportIdentifier }}"/> is mislukt </target> |
105 | 107 | <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> | |
106 | <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> | 108 | </trans-unit> |
107 | <trans-unit id="3371351937331192777" datatype="html"> | 109 | <trans-unit id="3371351937331192777" datatype="html"> |
108 | <source>User <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> registered on your instance </source> | 110 | <source>User <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/> registered on your instance </source> |
109 | <target state="translated">Gebruiker <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.account.name }}"/> <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is geregistreerd op je exemplaar van PeerTube </target> | 111 | <target state="translated">Gebruiker <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.account.name }}"/> <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is geregistreerd op je exemplaar van PeerTube </target> |
110 | 112 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">140</context></context-group> | |
111 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 113 | </trans-unit> |
112 | <trans-unit id="4404295482394146814" datatype="html"> | 114 | <trans-unit id="4404295482394146814" datatype="html"> |
113 | <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> | 115 | <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> |
114 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow.follower.displayName }}"/> <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> volgt nu <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>je kanaal <x id="INTERPOLATION_1" equiv-text="{{ notification.actorFollow.following.displayName }}"/> <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> <x id="START_TAG_NG-CONTAINER_1" ctype="x-ng-container" equiv-text="<ng-container>"/>je account <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/></target> | 116 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow.follower.displayName }}"/> <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> volgt nu <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>je kanaal <x id="INTERPOLATION_1" equiv-text="{{ notification.actorFollow.following.displayName }}"/> <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> <x id="START_TAG_NG-CONTAINER_1" ctype="x-ng-container" equiv-text="<ng-container>"/>je account <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/></target> |
115 | 117 | <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> | |
116 | <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"> | 118 | </trans-unit> |
117 | <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> | 119 | <trans-unit id="5504059606863599420" datatype="html"> |
120 | <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> | ||
121 | <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>"/> heeft je genoemd <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> | ||
118 | <context-group purpose="location"> | 122 | <context-group purpose="location"> |
119 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 123 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
120 | <context context-type="linenumber">164</context> | 124 | <context context-type="linenumber">164</context> |
121 | </context-group> | 125 | </context-group> |
122 | </trans-unit> | 126 | </trans-unit> |
123 | |||
124 | <trans-unit id="5354239156470982824" datatype="html"> | 127 | <trans-unit id="5354239156470982824" datatype="html"> |
125 | <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> | 128 | <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> |
126 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Een nieuwe volger van je exemplaar van PeerTube <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> ( <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow?.follower.host }}"/>) <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> wacht op je goedkeuring<x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/></target> | 129 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a>"/>Een nieuwe volger van je exemplaar van PeerTube <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> ( <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow?.follower.host }}"/>) <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/> wacht op je goedkeuring<x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/></target> |
127 | 130 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">181</context></context-group> | |
128 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">181</context></context-group></trans-unit> | 131 | </trans-unit> |
129 | <trans-unit id="325842756252267394" datatype="html"> | 132 | <trans-unit id="325842756252267394" datatype="html"> |
130 | <source>Your instance automatically followed <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> | 133 | <source>Your instance automatically followed <x id="START_LINK"/><x id="INTERPOLATION"/><x id="CLOSE_LINK"/></source> |
131 | <target state="translated">Je exemplaar van PeerTube heeft automatisch <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow.following.host }}"/> <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> gevolgd</target> | 134 | <target state="translated">Je exemplaar van PeerTube heeft automatisch <x id="START_LINK" ctype="x-a" equiv-text="<a>"/> <x id="INTERPOLATION" equiv-text="{{ notification.actorFollow.following.host }}"/> <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> gevolgd</target> |
132 | 135 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">190</context></context-group> | |
133 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">190</context></context-group></trans-unit><trans-unit id="363592786729553688" datatype="html"> | 136 | </trans-unit> |
134 | <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> | 137 | <trans-unit id="363592786729553688" datatype="html"> |
138 | <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> | ||
139 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [routerLink]="notification.pluginUrl" [queryParams]="notification.pluginQueryParams">"/> Een nieuwe versie van de plugin/thema <x id="INTERPOLATION" equiv-text="{{ notification.plugin.name }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is beschikbaar: <x id="INTERPOLATION_1" equiv-text="{{ notification.plugin.latestVersion }}"/> </target> | ||
135 | <context-group purpose="location"> | 140 | <context-group purpose="location"> |
136 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 141 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
137 | <context context-type="linenumber">198,199</context> | 142 | <context context-type="linenumber">198,199</context> |
138 | </context-group> | 143 | </context-group> |
139 | </trans-unit><trans-unit id="5055099158245592648" datatype="html"> | 144 | </trans-unit> |
140 | <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> | 145 | <trans-unit id="5055099158245592648" datatype="html"> |
146 | <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> | ||
147 | <target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a (click)="markAsRead(notification)" [href]="notification.peertubeVersionLink" target="_blank" rel="noopener noreferer">"/>Een nieuww versie van PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> is beschikbaar: <x id="INTERPOLATION" equiv-text="{{ notification.peertube.latestVersion }}"/> </target> | ||
141 | <context-group purpose="location"> | 148 | <context-group purpose="location"> |
142 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> | 149 | <context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context> |
143 | <context context-type="linenumber">206,207</context> | 150 | <context context-type="linenumber">206,207</context> |
@@ -146,24 +153,39 @@ | |||
146 | <trans-unit id="5421414445136873229" datatype="html"> | 153 | <trans-unit id="5421414445136873229" datatype="html"> |
147 | <source>The notification points to content now unavailable</source> | 154 | <source>The notification points to content now unavailable</source> |
148 | <target state="translated">De melding verwijst naar niet beschikbare inhoud</target> | 155 | <target state="translated">De melding verwijst naar niet beschikbare inhoud</target> |
149 | 156 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">214</context></context-group> | |
150 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/users/user-notifications.component.html</context><context context-type="linenumber">214</context></context-group></trans-unit> | 157 | </trans-unit> |
151 | <trans-unit id="3321250177023376249" datatype="html"> | 158 | <trans-unit id="3321250177023376249" datatype="html"> |
152 | <source>Change your avatar</source> | 159 | <source>Change your avatar</source> |
153 | <target state="translated">Je avatar wijzigen</target> | 160 | <target state="translated">Wijzig jouw avatar</target> |
154 | 161 | <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> | |
155 | <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><trans-unit id="8411430224810427392" datatype="html"> | 162 | </trans-unit> |
156 | <source>Remove avatar</source><target state="new">Remove avatar</target> | 163 | <trans-unit id="8411430224810427392" datatype="html"> |
157 | 164 | <source>Remove avatar</source> | |
158 | <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> | 165 | <target state="translated">Verwijder avatar</target> |
166 | <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> | ||
167 | </trans-unit> | ||
159 | <trans-unit id="187187500641108332" datatype="html"> | 168 | <trans-unit id="187187500641108332" datatype="html"> |
160 | <source><x id="INTERPOLATION" equiv-text="{{ action.label }}"/> </source> | 169 | <source><x id="INTERPOLATION" equiv-text="{{ action.label }}"/> </source> |
161 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ action.label }}"/> </target> | 170 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ action.label }}"/> </target> |
162 | 171 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">77</context></context-group> | |
163 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">77</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><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-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><trans-unit id="1486537403020619891" datatype="html"> | 172 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">105</context></context-group> |
164 | <source>My watch history</source><target state="new">My watch history</target> | 173 | <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> |
165 | 174 | <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> | |
166 | <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">68</context></context-group></trans-unit> | 175 | <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> |
176 | <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> | ||
177 | <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> | ||
178 | <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> | ||
179 | <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> | ||
180 | <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> | ||
181 | <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> | ||
182 | </trans-unit> | ||
183 | <trans-unit id="1486537403020619891" datatype="html"> | ||
184 | <source>My watch history</source> | ||
185 | <target state="new">My watch history</target> | ||
186 | <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> | ||
187 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">68</context></context-group> | ||
188 | </trans-unit> | ||
167 | <trans-unit id="5924559757556526785"> | 189 | <trans-unit id="5924559757556526785"> |
168 | <source>Save to</source> | 190 | <source>Save to</source> |
169 | <target>Opslaan in</target> | 191 | <target>Opslaan in</target> |
@@ -172,8 +194,8 @@ | |||
172 | <trans-unit id="8432562579042371182"> | 194 | <trans-unit id="8432562579042371182"> |
173 | <source>Options</source> | 195 | <source>Options</source> |
174 | <target>Opties</target> | 196 | <target>Opties</target> |
175 | 197 | <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> | |
176 | <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> | 198 | </trans-unit> |
177 | <trans-unit id="1394835141143590910"> | 199 | <trans-unit id="1394835141143590910"> |
178 | <source>Start at</source> | 200 | <source>Start at</source> |
179 | <target>Beginnen bij</target> | 201 | <target>Beginnen bij</target> |
@@ -215,34 +237,41 @@ | |||
215 | <trans-unit id="2409672154570643758"> | 237 | <trans-unit id="2409672154570643758"> |
216 | <source>Display name</source> | 238 | <source>Display name</source> |
217 | <target>Weergavenaam</target> | 239 | <target>Weergavenaam</target> |
218 | 240 | <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> | |
219 | 241 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">60</context></context-group> | |
220 | 242 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">60</context></context-group> | |
221 | 243 | <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> | |
222 | 244 | <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> | |
223 | 245 | <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> | |
224 | 246 | <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> | |
225 | <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-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">60</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">60</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> | 247 | </trans-unit> |
226 | <trans-unit id="5674286808255988565"> | 248 | <trans-unit id="5674286808255988565"> |
227 | <source>Create</source> | 249 | <source>Create</source> |
228 | <target>Creeër</target> | 250 | <target>Creeër</target> |
229 | 251 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
230 | 252 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
231 | 253 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">102</context></context-group> | |
232 | 254 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
233 | 255 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">8</context></context-group> | |
234 | 256 | <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> | |
235 | 257 | <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> | |
236 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/+my-library/+my-video-channels/my-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-channels/my-video-channel-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-channels/my-video-channel-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-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> | 258 | <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> |
259 | <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> | ||
260 | </trans-unit> | ||
237 | <trans-unit id="1006562256968398209" datatype="html"> | 261 | <trans-unit id="1006562256968398209" datatype="html"> |
238 | <source>video</source> | 262 | <source>video</source> |
239 | <target state="translated">video</target> | 263 | <target state="translated">video</target> |
240 | 264 | ||
241 | <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">294</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="6438815964972582865" datatype="html"> | ||
242 | <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> | ||
243 | 265 | ||
244 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> | 266 | <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">301</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> |
245 | <source><x id="INTERPOLATION" equiv-text="{{ file.resolution.label }}"/></source><target state="new"><x id="INTERPOLATION" equiv-text="{{ file.resolution.label }}"/></target> | 267 | <trans-unit id="6438815964972582865" datatype="html"> |
268 | <source>The following link contains a private token and should not be shared with anyone.</source> | ||
269 | <target state="translated">De volgende link bevat een privé-token en mag met niemand worden gedeeld.</target> | ||
270 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group> | ||
271 | </trans-unit> | ||
272 | <trans-unit id="187187500641108332" datatype="html"> | ||
273 | <source><x id="INTERPOLATION" equiv-text="{{ file.resolution.label }}"/></source> | ||
274 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ file.resolution.label }}"/></target> | ||
246 | <context-group purpose="location"> | 275 | <context-group purpose="location"> |
247 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | 276 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> |
248 | <context context-type="linenumber">39</context> | 277 | <context context-type="linenumber">39</context> |
@@ -251,75 +280,85 @@ | |||
251 | <trans-unit id="5235042777215655908" datatype="html"> | 280 | <trans-unit id="5235042777215655908" datatype="html"> |
252 | <source>subtitles</source> | 281 | <source>subtitles</source> |
253 | <target state="translated">ondertitels</target> | 282 | <target state="translated">ondertitels</target> |
254 | 283 | <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> | |
255 | <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> | 284 | </trans-unit> |
256 | <trans-unit id="7513076467032912668" datatype="html"> | 285 | <trans-unit id="7513076467032912668" datatype="html"> |
257 | <source>Format</source> | 286 | <source>Format</source> |
258 | <target state="translated">Formaat</target> | 287 | <target state="translated">Formaat</target> |
259 | 288 | <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> | |
260 | <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> | 289 | </trans-unit> |
261 | <trans-unit id="187187500641108332" datatype="html"> | 290 | <trans-unit id="187187500641108332" datatype="html"> |
262 | <source><x id="INTERPOLATION" equiv-text="{{ item.value.label }}"/> </source> | 291 | <source><x id="INTERPOLATION" equiv-text="{{ item.value.label }}"/> </source> |
263 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ item.value.label }}"/> </target> | 292 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ item.value.label }}"/> </target> |
264 | 293 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">65</context></context-group> | |
265 | 294 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">76</context></context-group> | |
266 | 295 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">88</context></context-group> | |
267 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">65</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">76</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">88</context></context-group></trans-unit> | 296 | </trans-unit> |
268 | <trans-unit id="7385834259346199883" datatype="html"> | 297 | <trans-unit id="7385834259346199883" datatype="html"> |
269 | <source>Video stream</source> | 298 | <source>Video stream</source> |
270 | <target state="translated">Video-stream</target> | 299 | <target state="translated">Video-stream</target> |
271 | 300 | <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> | |
272 | <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> | 301 | </trans-unit> |
273 | <trans-unit id="5496771215105419189" datatype="html"> | 302 | <trans-unit id="5496771215105419189" datatype="html"> |
274 | <source>Audio stream</source> | 303 | <source>Audio stream</source> |
275 | <target state="translated">Audio-stream</target> | 304 | <target state="translated">Audio-stream</target> |
276 | 305 | <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> | |
277 | <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> | 306 | </trans-unit> |
278 | <trans-unit id="6316149158173629264"> | 307 | <trans-unit id="6316149158173629264"> |
279 | <source>Direct download</source> | 308 | <source>Direct download</source> |
280 | <target>Directe download</target> | 309 | <target>Directe download</target> |
281 | 310 | <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> | |
282 | <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> | 311 | </trans-unit> |
283 | <trans-unit id="5910455707959454672"> | 312 | <trans-unit id="5910455707959454672"> |
284 | <source>Torrent (.torrent file)</source> | 313 | <source>Torrent (.torrent file)</source> |
285 | <target>Torrent (.torrent bestand)</target> | 314 | <target>Torrent (.torrent bestand)</target> |
286 | 315 | <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> | |
287 | <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"> | 316 | </trans-unit> |
288 | <source> Advanced </source><target state="new"> Advanced </target> | 317 | <trans-unit id="5830517253429165613" datatype="html"> |
289 | 318 | <source>Advanced</source> | |
290 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">135</context></context-group></trans-unit><trans-unit id="4493457595110310369" datatype="html"> | 319 | <target state="translated">Geavanceerd</target> |
291 | <source> Simple </source><target state="new"> Simple </target> | 320 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">135</context></context-group> |
292 | 321 | </trans-unit> | |
293 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">143</context></context-group></trans-unit> | 322 | <trans-unit id="4493457595110310369" datatype="html"> |
323 | <source>Simple</source> | ||
324 | <target state="translated">Simpel</target> | ||
325 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">143</context></context-group> | ||
326 | </trans-unit> | ||
294 | <trans-unit id="1006562256968398209" datatype="html"> | 327 | <trans-unit id="1006562256968398209" datatype="html"> |
295 | <source>video</source> | 328 | <source>video</source> |
296 | <target state="translated">video</target> | 329 | <target state="translated">video</target> |
330 | <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">289</context></context-group> | ||
331 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">54</context></context-group> | ||
332 | </trans-unit> | ||
333 | <trans-unit id="6995024616159044376" datatype="html"> | ||
334 | <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> | ||
335 | <target state="translated">Je video quota is overschreden met deze video (video grootte: <x id="PH" equiv-text="videoSizeBytes"/>, gebruikt: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> | ||
297 | 336 | ||
337 | <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">337</context></context-group></trans-unit> | ||
338 | <trans-unit id="7873395933409147217" datatype="html"> | ||
339 | <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> | ||
340 | <target state="translated">Je dagelijkse video quota is overschreden met deze video (video grootte: <x id="PH" equiv-text="videoSizeBytes"/>, gebruikt: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, quota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> | ||
298 | 341 | ||
299 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> | 342 | <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">356</context></context-group></trans-unit> |
300 | <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> | ||
301 | |||
302 | <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">330</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> | ||
303 | <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> | ||
304 | |||
305 | <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">349</context></context-group></trans-unit> | ||
306 | <trans-unit id="5235042777215655908" datatype="html"> | 343 | <trans-unit id="5235042777215655908" datatype="html"> |
307 | <source>subtitles</source> | 344 | <source>subtitles</source> |
308 | <target state="translated">ondertitels</target> | 345 | <target state="translated">ondertitels</target> |
309 | 346 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">55</context></context-group> | |
310 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> | 347 | </trans-unit> |
311 | <trans-unit id="2330577642930707695"> | 348 | <trans-unit id="2330577642930707695"> |
312 | <source>Cancel</source> | 349 | <source>Cancel</source> |
313 | <target> | 350 | <target> |
314 | Annuleren</target> | 351 | Annuleren</target> |
315 | 352 | ||
316 | <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">48</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> | 353 | |
354 | <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">48</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">23</context></context-group></trans-unit> | ||
317 | <trans-unit id="3099741642167775297"> | 355 | <trans-unit id="3099741642167775297"> |
318 | <source>Download</source> | 356 | <source>Download</source> |
319 | <target>Downloaden</target> | 357 | <target>Downloaden</target> |
320 | 358 | <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> | |
321 | 359 | <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> | |
322 | <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><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> | 360 | <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> |
361 | </trans-unit> | ||
323 | <trans-unit id="6325096236207614377"> | 362 | <trans-unit id="6325096236207614377"> |
324 | <source>Reason...</source> | 363 | <source>Reason...</source> |
325 | <target>Reden...</target> | 364 | <target>Reden...</target> |
@@ -330,22 +369,28 @@ Annuleren</target> | |||
330 | <target> | 369 | <target> |
331 | Annuleer | 370 | Annuleer |
332 | </target> | 371 | </target> |
333 | 372 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">19</context></context-group> | |
334 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="834805431202576194" datatype="html"> | 373 | </trans-unit> |
335 | <source>No results.</source><target state="new">No results.</target> | 374 | <trans-unit id="834805431202576194" datatype="html"> |
336 | 375 | <source>No results.</source> | |
337 | <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> | 376 | <target state="new">No results.</target> |
377 | <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> | ||
378 | <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> | ||
379 | <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> | ||
380 | </trans-unit> | ||
338 | <trans-unit id="935187492052582731"> | 381 | <trans-unit id="935187492052582731"> |
339 | <source>Submit</source> | 382 | <source>Submit</source> |
340 | <target>Verstuur</target> | 383 | <target>Verstuur</target> |
341 | 384 | <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> | |
342 | 385 | <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> | |
343 | 386 | <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> | |
344 | 387 | <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> | |
345 | 388 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">96</context></context-group> | |
346 | 389 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">42</context></context-group> | |
347 | <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">96</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">42</context></context-group></trans-unit><trans-unit id="8343217707114977013" datatype="html"> | 390 | </trans-unit> |
348 | <source>The contact form is not enabled on this instance.</source><target state="new">The contact form is not enabled on this instance.</target> | 391 | <trans-unit id="8343217707114977013" datatype="html"> |
392 | <source>The contact form is not enabled on this instance.</source> | ||
393 | <target state="translated">Het contactformulier is niet ingeschakeld op deze instantie.</target> | ||
349 | <context-group purpose="location"> | 394 | <context-group purpose="location"> |
350 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> | 395 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> |
351 | <context context-type="linenumber">56</context> | 396 | <context context-type="linenumber">56</context> |
@@ -372,8 +417,10 @@ Annuleren</target> | |||
372 | <source>Blocking this live will automatically terminate the live stream.</source> | 417 | <source>Blocking this live will automatically terminate the live stream.</source> |
373 | <target state="translated">Deze live-uitzending blokkeren beëindigt automatisch de live-uitzending.</target> | 418 | <target state="translated">Deze live-uitzending blokkeren beëindigt automatisch de live-uitzending.</target> |
374 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">33</context></context-group> | 419 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">33</context></context-group> |
375 | </trans-unit><trans-unit id="2466846716878254816" datatype="html"> | 420 | </trans-unit> |
376 | <source>Element <x id="PH" equiv-text="param"/> not found</source><target state="new">Element <x id="PH" equiv-text="param"/> not found</target> | 421 | <trans-unit id="2466846716878254816" datatype="html"> |
422 | <source>Element <x id="PH" equiv-text="param"/> not found</source> | ||
423 | <target state="translated">Element <x id="PH" equiv-text="param"/> niet gevonden</target> | ||
377 | <context-group purpose="location"> | 424 | <context-group purpose="location"> |
378 | <context context-type="sourcefile">src/app/shared/shared-search/find-in-bulk.service.ts</context> | 425 | <context context-type="sourcefile">src/app/shared/shared-search/find-in-bulk.service.ts</context> |
379 | <context context-type="linenumber">80</context> | 426 | <context context-type="linenumber">80</context> |
@@ -387,26 +434,31 @@ Annuleren</target> | |||
387 | <trans-unit id="7539427273132299890"> | 434 | <trans-unit id="7539427273132299890"> |
388 | <source>Unlisted</source> | 435 | <source>Unlisted</source> |
389 | <target>Onvermeld</target> | 436 | <target>Onvermeld</target> |
390 | 437 | <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> | |
391 | 438 | <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> | |
392 | <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> | 439 | </trans-unit> |
393 | <trans-unit id="3686284950598311784"> | 440 | <trans-unit id="3686284950598311784"> |
394 | <source>Private</source> | 441 | <source>Private</source> |
395 | <target>Privé</target> | 442 | <target>Privé</target> |
396 | 443 | <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> | |
397 | 444 | <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> | |
398 | 445 | <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">33</context></context-group> | |
399 | <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">33</context></context-group></trans-unit> | 446 | </trans-unit> |
400 | <trans-unit id="7688104409544625220" datatype="html"> | 447 | <trans-unit id="7688104409544625220" datatype="html"> |
401 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> | 448 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> |
402 | <target state="translated">{VAR_PLURAL, plural, =1 {1 keer bekeken} other { <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> keer bekeken} }</target> | 449 | <target state="translated">{VAR_PLURAL, plural, =1 {1 keer bekeken} other { <x id="INTERPOLATION" equiv-text="{{ video.views | myNumberFormatter }}"/> keer bekeken} }</target> |
403 | <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> | 450 | <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> |
404 | </trans-unit> | 451 | </trans-unit> |
405 | <trans-unit id="8856905278208146821" datatype="html"> | 452 | <trans-unit id="8856905278208146821" datatype="html"> |
406 | <source> <x id="ICU" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 videos} other {{{ getTotalVideosOf(videoChannel) }} videos}}"/> </source> | 453 | <source><x id="ICU" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 videos} other {{{ getTotalVideosOf(videoChannel) }} videos}}"/> </source> |
407 | <target state="translated"><x id="ICU" equiv-text="{video.views, plural, =1 {1 weergave} other {{{ video.views | myNumberFormatter }} weergaves}} "/> </target> | 454 | <target state="translated"><x id="ICU" equiv-text="{video.views, plural, =1 {1 weergave} other {{{ video.views | myNumberFormatter }} weergaves}} "/> </target> |
408 | 455 | <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> | |
409 | <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">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">76</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><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><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">7</context></context-group></trans-unit> | 456 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">41</context></context-group> |
457 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">76</context></context-group> | ||
458 | <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> | ||
459 | <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> | ||
460 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context><context context-type="linenumber">7</context></context-group> | ||
461 | </trans-unit> | ||
410 | <trans-unit id="8562063050145802350" datatype="html"> | 462 | <trans-unit id="8562063050145802350" datatype="html"> |
411 | <source>{VAR_PLURAL, plural, =1 {1 viewer} other {<x id="INTERPOLATION"/> viewers}}</source> | 463 | <source>{VAR_PLURAL, plural, =1 {1 viewer} other {<x id="INTERPOLATION"/> viewers}}</source> |
412 | <target state="translated">{VAR_PLURAL, plural, =1 {1 kijker} other {<x id="INTERPOLATION"/> kijkers}}</target> | 464 | <target state="translated">{VAR_PLURAL, plural, =1 {1 kijker} other {<x id="INTERPOLATION"/> kijkers}}</target> |
@@ -416,45 +468,48 @@ Annuleren</target> | |||
416 | </context-group> | 468 | </context-group> |
417 | </trans-unit> | 469 | </trans-unit> |
418 | <trans-unit id="8856905278208146821" datatype="html"> | 470 | <trans-unit id="8856905278208146821" datatype="html"> |
419 | <source> <x id="ICU" equiv-text="{video.views, plural, =1 {1 viewer} other {{{ video.views | myNumberFormatter }} viewers}}"/> </source> | 471 | <source><x id="ICU" equiv-text="{video.views, plural, =1 {1 viewer} other {{{ video.views | myNumberFormatter }} viewers}}"/> </source> |
420 | <target state="translated"><x id="ICU" equiv-text="{video.views, plural, =1 {1 kijker} other {{{ video.views | myNumberFormatter }} kijkers}} "/> </target> | 472 | <target state="translated"><x id="ICU" equiv-text="{video.views, plural, =1 {1 kijker} other {{{ video.views | myNumberFormatter }} kijkers}} "/> </target> |
421 | <context-group purpose="location"> | 473 | <context-group purpose="location"> |
422 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> | 474 | <context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context> |
423 | <context context-type="linenumber">7,8</context> | 475 | <context context-type="linenumber">7,8</context> |
424 | </context-group> | 476 | </context-group> |
425 | </trans-unit><trans-unit id="3267631941074558910" datatype="html"> | 477 | </trans-unit> |
426 | <source>Cannot fetch information of this remote account</source><target state="new">Cannot fetch information of this remote account</target> | 478 | <trans-unit id="3267631941074558910" datatype="html"> |
427 | 479 | <source>Cannot fetch information of this remote account</source> | |
428 | <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> | 480 | <target state="translated">Kan geen informatie ophalen van dit externe account</target> |
481 | <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> | ||
482 | </trans-unit> | ||
429 | <trans-unit id="9081463435738465430" datatype="html"> | 483 | <trans-unit id="9081463435738465430" datatype="html"> |
430 | <source>Blocked</source> | 484 | <source>Blocked</source> |
431 | <target state="translated">Geblokkeerd</target> | 485 | <target state="translated">Geblokkeerd</target> |
432 | 486 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">57</context></context-group> | |
433 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> | 487 | </trans-unit> |
434 | <trans-unit id="3514509630940272440"> | 488 | <trans-unit id="3514509630940272440"> |
435 | <source>Sensitive</source> | 489 | <source>Sensitive</source> |
436 | <target> | 490 | <target> |
437 | Gevoelig | 491 | Gevoelig |
438 | </target> | 492 | </target> |
439 | 493 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">62</context></context-group> | |
440 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 494 | </trans-unit> |
441 | <trans-unit id="7766488542631150871"> | 495 | <trans-unit id="7766488542631150871"> |
442 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 496 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
443 | <target>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { <x id="INTERPOLATION" equiv-text="{{ playlist.videosLength }}"/> video\'s} }</target> | 497 | <target>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { <x id="INTERPOLATION" equiv-text="{{ playlist.videosLength }}"/> video\'s} }</target> |
444 | 498 | <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">32</context></context-group> | |
445 | <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">32</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> | 499 | <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> |
500 | </trans-unit> | ||
446 | <trans-unit id="7708270344948043036"> | 501 | <trans-unit id="7708270344948043036"> |
447 | <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> | 502 | <source><x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> </source> |
448 | <target> | 503 | <target> |
449 | <x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> | 504 | <x id="INTERPOLATION" equiv-text="{{ playlist.videoChannelBy }}"/> |
450 | </target> | 505 | </target> |
451 | 506 | <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> | |
452 | <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> | 507 | </trans-unit> |
453 | <trans-unit id="3044142083883783523"> | 508 | <trans-unit id="3044142083883783523"> |
454 | <source>Updated <x id="INTERPOLATION"/></source> | 509 | <source>Updated <x id="INTERPOLATION"/></source> |
455 | <target>Bijgewerkt <x id="INTERPOLATION" equiv-text="{{ playlist.updatedAt | myFromNow }}"/></target> | 510 | <target>Bijgewerkt <x id="INTERPOLATION" equiv-text="{{ playlist.updatedAt | myFromNow }}"/></target> |
456 | 511 | <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> | |
457 | <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> | 512 | </trans-unit> |
458 | <trans-unit id="5643561794785412000" datatype="html"> | 513 | <trans-unit id="5643561794785412000" datatype="html"> |
459 | <source>Unavailable</source> | 514 | <source>Unavailable</source> |
460 | <target state="translated">Niet beschikbaar</target> | 515 | <target state="translated">Niet beschikbaar</target> |
@@ -463,10 +518,10 @@ Annuleren</target> | |||
463 | <trans-unit id="6381490568322624964" datatype="html"> | 518 | <trans-unit id="6381490568322624964" datatype="html"> |
464 | <source>Deleted</source> | 519 | <source>Deleted</source> |
465 | <target state="translated">Verwijderd</target> | 520 | <target state="translated">Verwijderd</target> |
466 | 521 | <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> | |
467 | 522 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">91</context></context-group> | |
468 | 523 | <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">34</context></context-group> | |
469 | <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-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">91</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">34</context></context-group></trans-unit> | 524 | </trans-unit> |
470 | <trans-unit id="5263519165976128456"> | 525 | <trans-unit id="5263519165976128456"> |
471 | <source>Edit starts/stops at</source> | 526 | <source>Edit starts/stops at</source> |
472 | <target>Bewerk beginnen/stoppen bij</target> | 527 | <target>Bewerk beginnen/stoppen bij</target> |
@@ -475,13 +530,11 @@ Annuleren</target> | |||
475 | <trans-unit id="3768927257183755959"> | 530 | <trans-unit id="3768927257183755959"> |
476 | <source>Save</source> | 531 | <source>Save</source> |
477 | <target>Opslaan</target> | 532 | <target>Opslaan</target> |
478 | 533 | <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> | |
479 | 534 | <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> | |
480 | 535 | <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> | |
481 | 536 | <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">82</context></context-group> | |
482 | 537 | </trans-unit> | |
483 | |||
484 | <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">82</context></context-group></trans-unit> | ||
485 | <trans-unit id="8890926675057871150"> | 538 | <trans-unit id="8890926675057871150"> |
486 | <source>Delete from <x id="INTERPOLATION"/></source> | 539 | <source>Delete from <x id="INTERPOLATION"/></source> |
487 | <target>Verwijderen uit <x id="INTERPOLATION" equiv-text="{{ playlist?.displayName }}"/></target> | 540 | <target>Verwijderen uit <x id="INTERPOLATION" equiv-text="{{ playlist?.displayName }}"/></target> |
@@ -490,26 +543,51 @@ Annuleren</target> | |||
490 | <trans-unit id="834805431202576194"> | 543 | <trans-unit id="834805431202576194"> |
491 | <source>No results.</source> | 544 | <source>No results.</source> |
492 | <target>Geen resultaten.</target> | 545 | <target>Geen resultaten.</target> |
493 | 546 | <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> | |
494 | 547 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> | |
495 | 548 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> | |
496 | 549 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> | |
497 | 550 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> | |
498 | 551 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> | |
499 | 552 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> | |
500 | 553 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group> | |
501 | 554 | </trans-unit> | |
502 | <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/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/abstract-video-list.html</context><context context-type="linenumber">44</context></context-group></trans-unit><trans-unit id="3594371452042277118" datatype="html"> | 555 | <trans-unit id="3594371452042277118" datatype="html"> |
503 | <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> | 556 | <source>Videos with the most interactions for recent videos, minus user history</source> |
504 | 557 | <target state="translated">Video's met de meeste interacties voor recente video's, minus gebruikersgeschiedenis</target> | |
505 | <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> | 558 | <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> |
559 | </trans-unit> | ||
506 | <trans-unit id="7022070615528435141"> | 560 | <trans-unit id="7022070615528435141"> |
507 | <source>Delete</source> | 561 | <source>Delete</source> |
508 | <target>Verwijderen</target> | 562 | <target>Verwijderen</target> |
509 | 563 | <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> | |
510 | 564 | <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">88</context></context-group> | |
511 | <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">88</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">92</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">164</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">81</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">195</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">117</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">144</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">185</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">178</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">145</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">388</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">423</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-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">87</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">208</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">308</context></context-group></trans-unit><trans-unit id="158575725114802951" datatype="html"> | 565 | <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">92</context></context-group> |
512 | <source>Only live videos</source><target state="new">Only live videos</target> | 566 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">95</context></context-group> |
567 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">164</context></context-group> | ||
568 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">81</context></context-group> | ||
569 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">195</context></context-group> | ||
570 | <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> | ||
571 | <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> | ||
572 | <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> | ||
573 | <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> | ||
574 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">117</context></context-group> | ||
575 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">144</context></context-group> | ||
576 | <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> | ||
577 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">178</context></context-group> | ||
578 | <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> | ||
579 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">145</context></context-group> | ||
580 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">388</context></context-group> | ||
581 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">423</context></context-group> | ||
582 | <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> | ||
583 | <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> | ||
584 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">87</context></context-group> | ||
585 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">208</context></context-group> | ||
586 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">308</context></context-group> | ||
587 | </trans-unit> | ||
588 | <trans-unit id="158575725114802951" datatype="html"> | ||
589 | <source>Only live videos</source> | ||
590 | <target state="translated">Alleen live video's</target> | ||
513 | <context-group purpose="location"> | 591 | <context-group purpose="location"> |
514 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context> | 592 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context> |
515 | <context context-type="linenumber">53</context> | 593 | <context context-type="linenumber">53</context> |
@@ -518,17 +596,17 @@ Annuleren</target> | |||
518 | <trans-unit id="7585826646011739428"> | 596 | <trans-unit id="7585826646011739428"> |
519 | <source>Edit</source> | 597 | <source>Edit</source> |
520 | <target>Bewerken</target> | 598 | <target>Bewerken</target> |
521 | 599 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
522 | 600 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
523 | 601 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
524 | 602 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">11</context></context-group> | |
525 | 603 | <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> | |
526 | 604 | <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> | |
527 | 605 | <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> | |
528 | 606 | <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> | |
529 | 607 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">270</context></context-group> | |
530 | 608 | <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> | |
531 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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-channels/my-video-channel-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-channels/my-video-channel-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">270</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> | 609 | </trans-unit> |
532 | <trans-unit id="5293515551330482519"> | 610 | <trans-unit id="5293515551330482519"> |
533 | <source>Truncated preview</source> | 611 | <source>Truncated preview</source> |
534 | <target>Gedeeltelijke voorvertoning</target> | 612 | <target>Gedeeltelijke voorvertoning</target> |
@@ -537,13 +615,18 @@ Annuleren</target> | |||
537 | <trans-unit id="8461609631969932886" datatype="html"> | 615 | <trans-unit id="8461609631969932886" datatype="html"> |
538 | <source>Hide</source> | 616 | <source>Hide</source> |
539 | <target state="translated">Verbergen</target> | 617 | <target state="translated">Verbergen</target> |
540 | 618 | <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> | |
541 | <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/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> | 619 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.html</context><context context-type="linenumber">11</context></context-group> |
620 | <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> | ||
621 | <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> | ||
622 | <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> | ||
623 | </trans-unit> | ||
542 | <trans-unit id="8461842260159597706" datatype="html"> | 624 | <trans-unit id="8461842260159597706" datatype="html"> |
543 | <source>Show</source> | 625 | <source>Show</source> |
544 | <target state="translated">Weergeven</target> | 626 | <target state="translated">Weergeven</target> |
545 | 627 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.html</context><context context-type="linenumber">10</context></context-group> | |
546 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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> | 628 | <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> |
629 | </trans-unit> | ||
547 | <trans-unit id="80730865601179554"> | 630 | <trans-unit id="80730865601179554"> |
548 | <source>Complete preview</source> | 631 | <source>Complete preview</source> |
549 | <target>Volledige voorvertoning</target> | 632 | <target>Volledige voorvertoning</target> |
@@ -563,8 +646,10 @@ Annuleren</target> | |||
563 | <source>Using an ActivityPub account</source> | 646 | <source>Using an ActivityPub account</source> |
564 | <target>Een ActivityPub-account gebruiken</target> | 647 | <target>Een ActivityPub-account gebruiken</target> |
565 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">54</context></context-group> | 648 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">54</context></context-group> |
566 | </trans-unit><trans-unit id="3372646000533908418" datatype="html"> | 649 | </trans-unit> |
567 | <source>Subscribe with a remote account:</source><target state="new">Subscribe with a remote account:</target> | 650 | <trans-unit id="3372646000533908418" datatype="html"> |
651 | <source>Subscribe with a remote account:</source> | ||
652 | <target state="translated">Abonneer met een remote account:</target> | ||
568 | <context-group purpose="location"> | 653 | <context-group purpose="location"> |
569 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> | 654 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context> |
570 | <context context-type="linenumber">62</context> | 655 | <context context-type="linenumber">62</context> |
@@ -585,17 +670,16 @@ Annuleren</target> | |||
585 | <target state="translated">De live-uitzending zal automatisch afgesloten worden.</target> | 670 | <target state="translated">De live-uitzending zal automatisch afgesloten worden.</target> |
586 | <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> | 671 | <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> |
587 | </trans-unit> | 672 | </trans-unit> |
588 | |||
589 | <trans-unit id="2949829240129672512"> | 673 | <trans-unit id="2949829240129672512"> |
590 | <source>Using a syndication feed</source> | 674 | <source>Using a syndication feed</source> |
591 | <target>Abonneren zonder account</target> | 675 | <target>Abonneren zonder account</target> |
592 | 676 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">68</context></context-group> | |
593 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">68</context></context-group></trans-unit> | 677 | </trans-unit> |
594 | <trans-unit id="7695158742270602420"> | 678 | <trans-unit id="7695158742270602420"> |
595 | <source>Subscribe via RSS</source> | 679 | <source>Subscribe via RSS</source> |
596 | <target>Abonneren met RSS</target> | 680 | <target>Abonneren met RSS</target> |
597 | 681 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">69</context></context-group> | |
598 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 682 | </trans-unit> |
599 | <trans-unit id="6086125715086510222" datatype="html"> | 683 | <trans-unit id="6086125715086510222" datatype="html"> |
600 | <source>PROFILE SETTINGS</source> | 684 | <source>PROFILE SETTINGS</source> |
601 | <target state="translated">PROFIELINSTELLINGEN</target> | 685 | <target state="translated">PROFIELINSTELLINGEN</target> |
@@ -605,21 +689,23 @@ Annuleren</target> | |||
605 | <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> | 689 | <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> |
606 | <target><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/>Extern abonneren <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> <x id="START_TAG_SPAN_1" ctype="x-span" equiv-text="<span>"/>Externe interactie <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 690 | <target><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/>Extern abonneren <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> <x id="START_TAG_SPAN_1" ctype="x-span" equiv-text="<span>"/>Externe interactie <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
607 | <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> | 691 | <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> |
608 | </trans-unit><trans-unit id="6462281745850371027" datatype="html"> | 692 | </trans-unit> |
609 | <source> You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </source><target state="new"> You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | 693 | <trans-unit id="6462281745850371027" datatype="html"> |
694 | <source>You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> | ||
695 | <target state="translated">U kunt zich op het kanaal abonneren via elke fediverse-instantie die geschikt is voor ActivityPub (bijvoorbeeld PeerTube, Mastodon of Pleroma).</target> | ||
610 | <context-group purpose="location"> | 696 | <context-group purpose="location"> |
611 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> | 697 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> |
612 | <context context-type="linenumber">18,19</context> | 698 | <context context-type="linenumber">18,19</context> |
613 | </context-group> | 699 | </context-group> |
614 | </trans-unit><trans-unit id="20374890400263257" datatype="html"> | 700 | </trans-unit> |
615 | <source> You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </source><target state="new"> You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example). </target> | 701 | <trans-unit id="20374890400263257" datatype="html"> |
702 | <source>You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> | ||
703 | <target state="translated">U kunt hiermee communiceren via elke voor ActivityPub geschikte fediverse-instantie (bijvoorbeeld PeerTube, Mastodon of Pleroma).</target> | ||
616 | <context-group purpose="location"> | 704 | <context-group purpose="location"> |
617 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> | 705 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> |
618 | <context context-type="linenumber">26,27</context> | 706 | <context context-type="linenumber">26,27</context> |
619 | </context-group> | 707 | </context-group> |
620 | </trans-unit> | 708 | </trans-unit> |
621 | |||
622 | |||
623 | <trans-unit id="6751395526297887552" datatype="html"> | 709 | <trans-unit id="6751395526297887552" datatype="html"> |
624 | <source>PeerTube version</source> | 710 | <source>PeerTube version</source> |
625 | <target state="translated">PeerTube-versie</target> | 711 | <target state="translated">PeerTube-versie</target> |
@@ -679,10 +765,11 @@ Annuleren</target> | |||
679 | <trans-unit id="2602586221576511475"> | 765 | <trans-unit id="2602586221576511475"> |
680 | <source>Video quota</source> | 766 | <source>Video quota</source> |
681 | <target>Videoquotum</target> | 767 | <target>Videoquotum</target> |
682 | 768 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> | |
683 | 769 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">151</context></context-group> | |
684 | 770 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">113</context></context-group> | |
685 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/users/user-list/user-list.component.ts</context><context context-type="linenumber">113</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> | 771 | <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> |
772 | </trans-unit> | ||
686 | <trans-unit id="1502595455339510144"> | 773 | <trans-unit id="1502595455339510144"> |
687 | <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> | 774 | <source>Unlimited <x id="START_TAG_NG_CONTAINER"/>(<x id="INTERPOLATION"/> per day)<x id="CLOSE_TAG_NG_CONTAINER"/></source> |
688 | <target>Oneindig <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>( <x id="INTERPOLATION" equiv-text="{{ dailyUserVideoQuota | bytes: 0 }}"/> per dag) <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/></target> | 775 | <target>Oneindig <x id="START_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="<ng-container>"/>( <x id="INTERPOLATION" equiv-text="{{ dailyUserVideoQuota | bytes: 0 }}"/> per dag) <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/></target> |
@@ -728,8 +815,9 @@ Annuleren</target> | |||
728 | <trans-unit id="2906587845957718064"> | 815 | <trans-unit id="2906587845957718064"> |
729 | <source>Local</source> | 816 | <source>Local</source> |
730 | <target>Lokaal</target> | 817 | <target>Lokaal</target> |
731 | 818 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">4</context></context-group> | |
732 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.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-filters.model.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> | 819 | <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> |
820 | </trans-unit> | ||
733 | <trans-unit id="1670306451865226564" datatype="html"> | 821 | <trans-unit id="1670306451865226564" datatype="html"> |
734 | <source>users</source> | 822 | <source>users</source> |
735 | <target state="translated">gebruikers</target> | 823 | <target state="translated">gebruikers</target> |
@@ -760,9 +848,12 @@ Annuleren</target> | |||
760 | <trans-unit id="8564701209009684429" datatype="html"> | 848 | <trans-unit id="8564701209009684429" datatype="html"> |
761 | <source>Federation</source> | 849 | <source>Federation</source> |
762 | <target state="translated">Federatie</target> | 850 | <target state="translated">Federatie</target> |
763 | 851 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</context></context-group> | |
764 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit><trans-unit id="8726138323871139597" datatype="html"> | 852 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">58</context></context-group> |
765 | <source>Following</source><target state="new">Following</target> | 853 | </trans-unit> |
854 | <trans-unit id="8726138323871139597" datatype="html"> | ||
855 | <source>Following</source> | ||
856 | <target state="translated">Volgend</target> | ||
766 | <context-group purpose="location"> | 857 | <context-group purpose="location"> |
767 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | 858 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> |
768 | <context context-type="linenumber">29</context> | 859 | <context context-type="linenumber">29</context> |
@@ -775,8 +866,10 @@ Annuleren</target> | |||
775 | <context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context> | 866 | <context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context> |
776 | <context context-type="linenumber">28</context> | 867 | <context context-type="linenumber">28</context> |
777 | </context-group> | 868 | </context-group> |
778 | </trans-unit><trans-unit id="4914577418256256836" datatype="html"> | 869 | </trans-unit> |
779 | <source>Followers</source><target state="new">Followers</target> | 870 | <trans-unit id="4914577418256256836" datatype="html"> |
871 | <source>Followers</source> | ||
872 | <target state="translated">Volgers</target> | ||
780 | <context-group purpose="location"> | 873 | <context-group purpose="location"> |
781 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> | 874 | <context context-type="sourcefile">src/app/+admin/admin.component.ts</context> |
782 | <context context-type="linenumber">34</context> | 875 | <context context-type="linenumber">34</context> |
@@ -799,36 +892,42 @@ Annuleren</target> | |||
799 | <trans-unit id="2605931708025789621" datatype="html"> | 892 | <trans-unit id="2605931708025789621" datatype="html"> |
800 | <source>The upload failed</source> | 893 | <source>The upload failed</source> |
801 | <target state="translated">De upload is mislukt</target> | 894 | <target state="translated">De upload is mislukt</target> |
802 | 895 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">12</context></context-group> | |
803 | <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> | 896 | </trans-unit> |
804 | <trans-unit id="1447760976255144968" datatype="html"> | 897 | <trans-unit id="1447760976255144968" datatype="html"> |
805 | <source>The connection was interrupted</source> | 898 | <source>The connection was interrupted</source> |
806 | <target state="translated">De verbinding was verbroken</target> | 899 | <target state="translated">De verbinding was verbroken</target> |
807 | 900 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">16</context></context-group> | |
808 | <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"> | 901 | </trans-unit> |
809 | <source>The server encountered an error</source><target state="new">The server encountered an error</target> | 902 | <trans-unit id="4499233456830047129" datatype="html"> |
810 | 903 | <source>The server encountered an error</source> | |
811 | <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> | 904 | <target state="translated">Er is een fout opgetreden op de server</target> |
905 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">19</context></context-group> | ||
906 | </trans-unit> | ||
812 | <trans-unit id="3334825601859787496" datatype="html"> | 907 | <trans-unit id="3334825601859787496" datatype="html"> |
813 | <source>Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</source> | 908 | <source>Your <x id="PH" equiv-text="name"/> file couldn't be transferred before the set timeout (usually 10min)</source> |
814 | <target state="translated">Uw <x id="PH" equiv-text="name"/> bestand kon niet worden verstuurd voor de ingestelde time-out (normaal 10 minuten)</target> | 909 | <target state="translated">Uw <x id="PH" equiv-text="name"/> bestand kon niet worden verstuurd voor de ingestelde time-out (normaal 10 minuten)</target> |
815 | 910 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">22</context></context-group> | |
816 | <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> | 911 | </trans-unit> |
817 | <trans-unit id="8530934870279569179" datatype="html"> | 912 | <trans-unit id="8530934870279569179" datatype="html"> |
818 | <source>Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</source> | 913 | <source>Your <x id="PH" equiv-text="name"/> file was too large (max. size: <x id="PH_1" equiv-text="maxFileSize"/>)</source> |
819 | <target state="translated">Uw <x id="PH" equiv-text="name"/> bestand was te groot (max. grootte: <x id="PH_1" equiv-text="maxFileSize"/>)</target> | 914 | <target state="translated">Uw <x id="PH" equiv-text="name"/> bestand was te groot (max. grootte: <x id="PH_1" equiv-text="maxFileSize"/>)</target> |
820 | 915 | <context-group purpose="location"><context context-type="sourcefile">src/app/helpers/utils/upload.ts</context><context context-type="linenumber">26</context></context-group> | |
821 | <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> | 916 | </trans-unit> |
822 | <trans-unit id="2392488717875840729" datatype="html"> | 917 | <trans-unit id="2392488717875840729" datatype="html"> |
823 | <source>User</source> | 918 | <source>User</source> |
824 | <target state="translated">Gebruiker</target> | 919 | <target state="translated">Gebruiker</target> |
825 | 920 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group> | |
826 | <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">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group></trans-unit> | 921 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">27</context></context-group> |
922 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group> | ||
923 | </trans-unit> | ||
827 | <trans-unit id="4209525355702493436"> | 924 | <trans-unit id="4209525355702493436"> |
828 | <source>Ban</source> | 925 | <source>Ban</source> |
829 | <target>Verbannen</target> | 926 | <target>Verbannen</target> |
830 | 927 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">87</context></context-group> | |
831 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">87</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-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">271</context></context-group></trans-unit> | 928 | <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> |
929 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">271</context></context-group> | ||
930 | </trans-unit> | ||
832 | <trans-unit id="7908493851025027368"> | 931 | <trans-unit id="7908493851025027368"> |
833 | <source>A banned user will no longer be able to login.</source> | 932 | <source>A banned user will no longer be able to login.</source> |
834 | <target> | 933 | <target> |
@@ -838,30 +937,31 @@ Een verbannen gebruiker kan niet langer inloggen.</target> | |||
838 | <trans-unit id="2159130950882492111"> | 937 | <trans-unit id="2159130950882492111"> |
839 | <source>Cancel</source> | 938 | <source>Cancel</source> |
840 | <target>Annuleren</target> | 939 | <target>Annuleren</target> |
841 | 940 | <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> | |
842 | 941 | <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> | |
843 | 942 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">121</context></context-group> | |
844 | 943 | <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> | |
845 | 944 | <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> | |
846 | 945 | <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> | |
847 | 946 | <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> | |
848 | 947 | <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> | |
849 | 948 | <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> | |
850 | 949 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">416</context></context-group> | |
851 | 950 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/confirm.component.html</context><context context-type="linenumber">20</context></context-group> | |
852 | 951 | <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> | |
853 | 952 | <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> | |
854 | 953 | <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> | |
855 | 954 | <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> | |
856 | 955 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.html</context><context context-type="linenumber">92</context></context-group> | |
857 | 956 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">26</context></context-group> | |
858 | 957 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.html</context><context context-type="linenumber">38</context></context-group> | |
859 | <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">121</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-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/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">416</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">92</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">26</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">38</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> | 958 | <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> |
959 | </trans-unit> | ||
860 | <trans-unit id="3616223838716839702"> | 960 | <trans-unit id="3616223838716839702"> |
861 | <source>Ban this user</source> | 961 | <source>Ban this user</source> |
862 | <target>Verban deze gebruiker</target> | 962 | <target>Verban deze gebruiker</target> |
863 | 963 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">30</context></context-group> | |
864 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit> | 964 | </trans-unit> |
865 | <trans-unit id="4526499522377118108" datatype="html"> | 965 | <trans-unit id="4526499522377118108" datatype="html"> |
866 | <source>Block video "<x id="INTERPOLATION"/>"</source> | 966 | <source>Block video "<x id="INTERPOLATION"/>"</source> |
867 | <target state="translated">Video " <x id="INTERPOLATION" equiv-text="{{ video.name }}"/>" blokkeren</target> | 967 | <target state="translated">Video " <x id="INTERPOLATION" equiv-text="{{ video.name }}"/>" blokkeren</target> |
@@ -920,14 +1020,14 @@ Aanmelden</target> | |||
920 | </trans-unit> | 1020 | </trans-unit> |
921 | <trans-unit id="7252854992688790751" datatype="html"> | 1021 | <trans-unit id="7252854992688790751" datatype="html"> |
922 | <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> | 1022 | <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> |
923 | <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> | 1023 | <target state="translated">Deze instantie maakt registratie mogelijk. Zorg er echter voor dat u de <x id="START_LINK" ctype="x-a" equiv-text="<a class="terms-anchor" (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Voorwaarden<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">"/>Voorwaarden<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> controleert voordat u een account aanmaakt. U kunt ook zoeken naar een ander exemplaar dat precies aan uw behoeften voldoet op: <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> |
924 | 1024 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">64</context></context-group> | |
925 | <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> | 1025 | </trans-unit> |
926 | <trans-unit id="7215649348148521605" datatype="html"> | 1026 | <trans-unit id="7215649348148521605" datatype="html"> |
927 | <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> | 1027 | <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> |
928 | <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> | 1028 | <target state="translated">Momenteel staat deze instantie geen gebruikersregistratie toe, u kunt de <x id="START_LINK" ctype="x-a" equiv-text="<a (click)="onTermsClick($event, instanceInformation)" href='#'>"/>Voorwaarden<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> controleren voor meer details of zoek een instantie die je de mogelijkheid geeft om je aan te melden voor een account en je video's daar te uploaden. Vind de jouwe tussen meerdere instanties op: <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> |
929 | 1029 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">69</context></context-group> | |
930 | <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> | 1030 | </trans-unit> |
931 | <trans-unit id="2392488717875840729"> | 1031 | <trans-unit id="2392488717875840729"> |
932 | <source>User</source> | 1032 | <source>User</source> |
933 | <target>Gebruiker</target> | 1033 | <target>Gebruiker</target> |
@@ -938,8 +1038,10 @@ Aanmelden</target> | |||
938 | <source>Username or email address</source> | 1038 | <source>Username or email address</source> |
939 | <target>Gebruikersnaam of e-mailadres</target> | 1039 | <target>Gebruikersnaam of e-mailadres</target> |
940 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">23</context></context-group> | 1040 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">23</context></context-group> |
941 | </trans-unit><trans-unit id="1758058452376026925" datatype="html"> | 1041 | </trans-unit> |
942 | <source> ⚠️ Most email addresses do not include capital letters. </source><target state="new"> ⚠️ Most email addresses do not include capital letters. </target> | 1042 | <trans-unit id="1758058452376026925" datatype="html"> |
1043 | <source>⚠️ Most email addresses do not include capital letters.</source> | ||
1044 | <target state="new"> ⚠️ Most email addresses do not include capital letters. </target> | ||
943 | <context-group purpose="location"> | 1045 | <context-group purpose="location"> |
944 | <context context-type="sourcefile">src/app/+login/login.component.html</context> | 1046 | <context context-type="sourcefile">src/app/+login/login.component.html</context> |
945 | <context context-type="linenumber">33,34</context> | 1047 | <context context-type="linenumber">33,34</context> |
@@ -948,84 +1050,87 @@ Aanmelden</target> | |||
948 | <trans-unit id="1431416938026210429"> | 1050 | <trans-unit id="1431416938026210429"> |
949 | <source>Password</source> | 1051 | <source>Password</source> |
950 | <target>Wachtwoord</target> | 1052 | <target>Wachtwoord</target> |
951 | 1053 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">117</context></context-group> | |
952 | 1054 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">117</context></context-group> | |
953 | 1055 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">38</context></context-group> | |
954 | 1056 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">40</context></context-group> | |
955 | 1057 | <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> | |
956 | 1058 | <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> | |
957 | 1059 | <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> | |
958 | 1060 | <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> | |
959 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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> | 1061 | </trans-unit> |
960 | <trans-unit id="8715156686857791956" datatype="html"> | 1062 | <trans-unit id="8715156686857791956" datatype="html"> |
961 | <source>Click here to reset your password</source> | 1063 | <source>Click here to reset your password</source> |
962 | <target state="translated">Hier klikken om je wachtwoord opnieuw in te stellen</target> | 1064 | <target state="translated">Hier klikken om je wachtwoord opnieuw in te stellen</target> |
963 | 1065 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">51</context></context-group> | |
964 | <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><trans-unit id="892063502898494584" datatype="html"> | 1066 | </trans-unit> |
965 | <source>I forgot my password</source><target state="new">I forgot my password</target> | 1067 | <trans-unit id="892063502898494584" datatype="html"> |
966 | 1068 | <source>I forgot my password</source> | |
967 | <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> | 1069 | <target state="new">I forgot my password</target> |
1070 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">51</context></context-group> | ||
1071 | </trans-unit> | ||
968 | <trans-unit id="2101170466365500913" datatype="html"> | 1072 | <trans-unit id="2101170466365500913" datatype="html"> |
969 | <source>Logging into an account lets you publish content</source> | 1073 | <source>Logging into an account lets you publish content</source> |
970 | <target state="translated">Door in te loggen op een account, kunt u content publiceren</target> | 1074 | <target state="translated">Door in te loggen op een account, kunt u content publiceren</target> |
971 | 1075 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">60</context></context-group> | |
972 | <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> | 1076 | </trans-unit> |
973 | <trans-unit id="2454050363478003966"> | 1077 | <trans-unit id="2454050363478003966"> |
974 | <source>Login</source> | 1078 | <source>Login</source> |
975 | <target>Aanmelden</target> | 1079 | <target>Aanmelden</target> |
976 | 1080 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login-routing.module.ts</context><context context-type="linenumber">12</context></context-group> | |
977 | 1081 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">48</context></context-group> | |
978 | <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">99</context></context-group></trans-unit> | 1082 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">99</context></context-group> |
1083 | </trans-unit> | ||
979 | <trans-unit id="3183213940445113677" datatype="html"> | 1084 | <trans-unit id="3183213940445113677" datatype="html"> |
980 | <source>Or sign in with</source> | 1085 | <source>Or sign in with</source> |
981 | <target state="translated">Of meld je aan met</target> | 1086 | <target state="translated">Of meld je aan met</target> |
982 | 1087 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">76</context></context-group> | |
983 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> | 1088 | </trans-unit> |
984 | <trans-unit id="3238209155172574367"> | 1089 | <trans-unit id="3238209155172574367"> |
985 | <source>Forgot your password</source> | 1090 | <source>Forgot your password</source> |
986 | <target>Jouw wachtwoord vergeten</target> | 1091 | <target>Jouw wachtwoord vergeten</target> |
987 | 1092 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">95</context></context-group> | |
988 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit> | 1093 | </trans-unit> |
989 | <trans-unit id="87327320394367488" datatype="html"> | 1094 | <trans-unit id="87327320394367488" datatype="html"> |
990 | <source>We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</source> | 1095 | <source>We are sorry, you cannot recover your password because your instance administrator did not configure the PeerTube email system.</source> |
991 | <target state="translated">Het spijt ons, maar we kunnen je wachtwoord niet herstellen. De beheerder van je exemplaar van PeerTube heeft het PeerTube-emailsysteem niet ingesteld.</target> | 1096 | <target state="translated">Het spijt ons, maar we kunnen je wachtwoord niet herstellen. De beheerder van je exemplaar van PeerTube heeft het PeerTube-emailsysteem niet ingesteld.</target> |
992 | 1097 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">103</context></context-group> | |
993 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">103</context></context-group></trans-unit> | 1098 | </trans-unit> |
994 | <trans-unit id="3188014010833256853" datatype="html"> | 1099 | <trans-unit id="3188014010833256853" datatype="html"> |
995 | <source>Enter your email address and we will send you a link to reset your password.</source> | 1100 | <source>Enter your email address and we will send you a link to reset your password.</source> |
996 | <target state="translated">Je email-adres invoeren en je krijgt van ons instructies om je wachtwoord opnieuw in te stellen.</target> | 1101 | <target state="translated">Je email-adres invoeren en je krijgt van ons instructies om je wachtwoord opnieuw in te stellen.</target> |
997 | 1102 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">107</context></context-group> | |
998 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> | 1103 | </trans-unit> |
999 | <trans-unit id="1190256911880544559" datatype="html"> | 1104 | <trans-unit id="1190256911880544559" datatype="html"> |
1000 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. | 1105 | <source>An email with the reset password instructions will be sent to <x id="PH" equiv-text="this.forgotPasswordEmail"/>. |
1001 | The link will expire within 1 hour.</source> | 1106 | The link will expire within 1 hour.</source> |
1002 | <target state="translated"><x id="PH"/> zal een email met wachtwoordherstelinstructies krijgen. De link vervalt na een uur.</target> | 1107 | <target state="translated"><x id="PH"/> zal een email met wachtwoordherstelinstructies krijgen. De link vervalt na een uur.</target> |
1003 | 1108 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">121</context></context-group> | |
1004 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1109 | </trans-unit> |
1005 | <trans-unit id="4768749765465246664"> | 1110 | <trans-unit id="4768749765465246664"> |
1006 | <source>Email</source> | 1111 | <source>Email</source> |
1007 | <target>E-mail</target> | 1112 | <target>E-mail</target> |
1008 | 1113 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group> | |
1009 | 1114 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">105</context></context-group> | |
1010 | 1115 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">112</context></context-group> | |
1011 | 1116 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">111</context></context-group> | |
1012 | 1117 | <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> | |
1013 | 1118 | <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> | |
1014 | 1119 | <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> | |
1015 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/users/user-list/user-list.component.ts</context><context context-type="linenumber">112</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">111</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/+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> | 1120 | <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> |
1121 | </trans-unit> | ||
1016 | <trans-unit id="3967269098753656610"> | 1122 | <trans-unit id="3967269098753656610"> |
1017 | <source>Email address</source> | 1123 | <source>Email address</source> |
1018 | <target>E-mailadres</target> | 1124 | <target>E-mailadres</target> |
1019 | 1125 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">113</context></context-group> | |
1020 | 1126 | <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> | |
1021 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">113</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> | 1127 | </trans-unit> |
1022 | <trans-unit id="7808756054397155068" datatype="html"> | 1128 | <trans-unit id="7808756054397155068" datatype="html"> |
1023 | <source>Reset</source> | 1129 | <source>Reset</source> |
1024 | <target state="translated">Herinstellen</target> | 1130 | <target state="translated">Herinstellen</target> |
1025 | <note priority="1" from="description">Password reset button</note> | 1131 | <note priority="1" from="description">Password reset button</note> |
1026 | 1132 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">126</context></context-group> | |
1027 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1133 | </trans-unit> |
1028 | |||
1029 | <trans-unit id="4319634264526091601" datatype="html"> | 1134 | <trans-unit id="4319634264526091601" datatype="html"> |
1030 | <source>on this instance</source> | 1135 | <source>on this instance</source> |
1031 | <target state="translated">op dit exemplaar van PeerTube</target> | 1136 | <target state="translated">op dit exemplaar van PeerTube</target> |
@@ -1035,8 +1140,10 @@ The link will expire within 1 hour.</source> | |||
1035 | <source>on the vidiverse</source> | 1140 | <source>on the vidiverse</source> |
1036 | <target state="translated">in het videoversum</target> | 1141 | <target state="translated">in het videoversum</target> |
1037 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">8</context></context-group> | 1142 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">8</context></context-group> |
1038 | </trans-unit><trans-unit id="8434369348784683733" datatype="html"> | 1143 | </trans-unit> |
1039 | <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> | 1144 | <trans-unit id="8434369348784683733" datatype="html"> |
1145 | <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> | ||
1146 | <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> | ||
1040 | <context-group purpose="location"> | 1147 | <context-group purpose="location"> |
1041 | <context context-type="sourcefile">src/app/+search/search.component.html</context> | 1148 | <context context-type="sourcefile">src/app/+search/search.component.html</context> |
1042 | <context context-type="linenumber">10</context> | 1149 | <context context-type="linenumber">10</context> |
@@ -1084,106 +1191,110 @@ Wachtwoord opnieuw instellen</target> | |||
1084 | <trans-unit id="5018804994794983050" datatype="html"> | 1191 | <trans-unit id="5018804994794983050" datatype="html"> |
1085 | <source>Signup</source> | 1192 | <source>Signup</source> |
1086 | <target state="translated">Inschrijven</target> | 1193 | <target state="translated">Inschrijven</target> |
1087 | |||
1088 | <note priority="1" from="description">Button on the registration form to finalize the account and channel creation</note> | 1194 | <note priority="1" from="description">Button on the registration form to finalize the account and channel creation</note> |
1089 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 1195 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">67</context></context-group> |
1090 | 1196 | </trans-unit> | |
1091 | <trans-unit id="5340005218109333045"> | 1197 | <trans-unit id="5340005218109333045"> |
1092 | <source>Filters <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> | 1198 | <source>Filters <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/></source> |
1093 | <target>Criteria <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> <x id="INTERPOLATION" equiv-text="{{ numberOfFilters() }}"/> <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 1199 | <target>Criteria <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> <x id="INTERPOLATION" equiv-text="{{ numberOfFilters() }}"/> <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
1094 | 1200 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">19</context></context-group> | |
1095 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit> | 1201 | </trans-unit> |
1096 | <trans-unit id="2236371857137398396"> | 1202 | <trans-unit id="2236371857137398396"> |
1097 | <source>No results found</source> | 1203 | <source>No results found</source> |
1098 | <target> | 1204 | <target> |
1099 | Geen resultaten gevonden</target> | 1205 | Geen resultaten gevonden</target> |
1100 | 1206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">33</context></context-group> | |
1101 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 1207 | </trans-unit> |
1102 | <trans-unit id="5500467336262464724"> | 1208 | <trans-unit id="5500467336262464724"> |
1103 | <source><x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> subscribers </source> | 1209 | <source><x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> subscribers </source> |
1104 | <target> | 1210 | <target> |
1105 | <x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> abonnees | 1211 | <x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> abonnees |
1106 | </target> | 1212 | </target> |
1107 | 1213 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">25</context></context-group> | |
1108 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/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> | 1214 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">55</context></context-group> |
1215 | <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> | ||
1216 | </trans-unit> | ||
1109 | <trans-unit id="1516969129397662377" datatype="html"> | 1217 | <trans-unit id="1516969129397662377" datatype="html"> |
1110 | <source>Welcome to PeerTube, dear administrator!</source> | 1218 | <source>Welcome to PeerTube, dear administrator!</source> |
1111 | <target state="translated">Welkom bij PeerTube, beste beheerder!</target> | 1219 | <target state="translated">Welkom bij PeerTube, beste beheerder!</target> |
1112 | 1220 | <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> | |
1113 | <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> | 1221 | </trans-unit> |
1114 | <trans-unit id="807030720531713957" datatype="html"> | 1222 | <trans-unit id="807030720531713957" datatype="html"> |
1115 | <source>CLI documentation</source> | 1223 | <source>CLI documentation</source> |
1116 | <target state="translated">opdrachtregeldocumentatie</target> | 1224 | <target state="translated">opdrachtregeldocumentatie</target> |
1117 | 1225 | <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> | |
1118 | <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> | 1226 | </trans-unit> |
1119 | <trans-unit id="199127249622290422" datatype="html"> | 1227 | <trans-unit id="199127249622290422" datatype="html"> |
1120 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> | 1228 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> |
1121 | <target state="translated">Video's uploaden of importeren, logs ontleden, snoeien in opslagmappen, gebruikerswachtwoord herinstellen...</target> | 1229 | <target state="translated">Video's uploaden of importeren, logs ontleden, snoeien in opslagmappen, gebruikerswachtwoord herinstellen...</target> |
1122 | 1230 | <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> | |
1123 | <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> | 1231 | </trans-unit> |
1124 | <trans-unit id="249453844439446209" datatype="html"> | 1232 | <trans-unit id="249453844439446209" datatype="html"> |
1125 | <source>Administer documentation</source> | 1233 | <source>Administer documentation</source> |
1126 | <target state="translated">Documentatie beheren</target> | 1234 | <target state="translated">Documentatie beheren</target> |
1127 | 1235 | <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> | |
1128 | <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> | 1236 | </trans-unit> |
1129 | <trans-unit id="5910950876330656326" datatype="html"> | 1237 | <trans-unit id="5910950876330656326" datatype="html"> |
1130 | <source>Managing users, following other instances, dealing with spammers...</source> | 1238 | <source>Managing users, following other instances, dealing with spammers...</source> |
1131 | <target state="translated">Gebruikers beheren, andere exemplaren van PeerTube volgen, afrekenen met spammers...</target> | 1239 | <target state="translated">Gebruikers beheren, andere exemplaren van PeerTube volgen, afrekenen met spammers...</target> |
1132 | 1240 | <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> | |
1133 | <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> | 1241 | </trans-unit> |
1134 | <trans-unit id="879127294610588497" datatype="html"> | 1242 | <trans-unit id="879127294610588497" datatype="html"> |
1135 | <source>Use documentation</source> | 1243 | <source>Use documentation</source> |
1136 | <target state="translated">Documentatie gebruiken</target> | 1244 | <target state="translated">Documentatie gebruiken</target> |
1137 | 1245 | <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> | |
1138 | <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> | 1246 | </trans-unit> |
1139 | <trans-unit id="3848077896245199337" datatype="html"> | 1247 | <trans-unit id="3848077896245199337" datatype="html"> |
1140 | <source>Setup your account, managing video playlists, discover third-party applications...</source> | 1248 | <source>Setup your account, managing video playlists, discover third-party applications...</source> |
1141 | <target state="translated">Je account instellen, video-afspeellijsten beheren, toepassingen van derden ontdekken...</target> | 1249 | <target state="translated">Je account instellen, video-afspeellijsten beheren, toepassingen van derden ontdekken...</target> |
1142 | 1250 | <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> | |
1143 | <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> | 1251 | </trans-unit> |
1144 | <trans-unit id="6284442506490785579" datatype="html"> | 1252 | <trans-unit id="6284442506490785579" datatype="html"> |
1145 | <source>Useful links</source> | 1253 | <source>Useful links</source> |
1146 | <target state="translated">Nuttige links</target> | 1254 | <target state="translated">Nuttige links</target> |
1147 | 1255 | <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> | |
1148 | <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> | 1256 | </trans-unit> |
1149 | <trans-unit id="5170617864166788170" datatype="html"> | 1257 | <trans-unit id="5170617864166788170" datatype="html"> |
1150 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> | 1258 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> |
1151 | <target state="translated">Officiële PeerTube-website (nieuws, ondersteuning, bijdragen, ...): <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>https://joinpeertube.org <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> | 1259 | <target state="translated">Officiële PeerTube-website (nieuws, ondersteuning, bijdragen, ...): <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>https://joinpeertube.org <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> |
1152 | 1260 | <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> | |
1153 | <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> | 1261 | </trans-unit> |
1154 | <trans-unit id="4614992717645869756" datatype="html"> | 1262 | <trans-unit id="4614992717645869756" datatype="html"> |
1155 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> | 1263 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> |
1156 | <target state="translated">Zet je exemplaar van PeerTube op de publieke PeerTube-index: <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>https://instances.joinpeertube.org/instances <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> | 1264 | <target state="translated">Zet je exemplaar van PeerTube op de publieke PeerTube-index: <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>https://instances.joinpeertube.org/instances <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> |
1157 | 1265 | <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> | |
1158 | <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> | 1266 | </trans-unit> |
1159 | <trans-unit id="2081626998027585315" datatype="html"> | 1267 | <trans-unit id="2081626998027585315" datatype="html"> |
1160 | <source>It's time to configure your instance!</source> | 1268 | <source>It's time to configure your instance!</source> |
1161 | <target state="translated">Tijd om je exemplaar van PeerTube in te stellen!</target> | 1269 | <target state="translated">Tijd om je exemplaar van PeerTube in te stellen!</target> |
1162 | 1270 | <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> | |
1163 | <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> | 1271 | </trans-unit> |
1164 | <trans-unit id="5083058563861587027" datatype="html"> | 1272 | <trans-unit id="5083058563861587027" datatype="html"> |
1165 | <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> | 1273 | <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> |
1166 | <target state="translated">Het uitzoeken van <x id="START_TAG_STRONG"/> een naam voor je exemplaar van PeerTube<x id="CLOSE_TAG_STRONG"/>, <x id="START_TAG_STRONG"/>het toevoegen van een beschrijving<x id="CLOSE_TAG_STRONG"/>, uitleggen <x id="START_TAG_STRONG"/>wie je bent<x id="CLOSE_TAG_STRONG"/>, waarom <x id="START_TAG_STRONG"/>je dit exemplaar van peertube hebt gemaakt<x id="CLOSE_TAG_STRONG"/> en <x id="START_TAG_STRONG"/>hoe lang<x id="CLOSE_TAG_STRONG"/> je van plan bent <x id="START_TAG_STRONG"/>deze te onderhouden<x id="CLOSE_TAG_STRONG"/> is van groot belang voor bezoekers om te begrijpen op wat voor soort exemplaar van peertube ze zich bevinden. </target> | 1274 | <target state="translated">Het uitzoeken van <x id="START_TAG_STRONG"/> een naam voor je exemplaar van PeerTube<x id="CLOSE_TAG_STRONG"/>, <x id="START_TAG_STRONG"/>het toevoegen van een beschrijving<x id="CLOSE_TAG_STRONG"/>, uitleggen <x id="START_TAG_STRONG"/>wie je bent<x id="CLOSE_TAG_STRONG"/>, waarom <x id="START_TAG_STRONG"/>je dit exemplaar van peertube hebt gemaakt<x id="CLOSE_TAG_STRONG"/> en <x id="START_TAG_STRONG"/>hoe lang<x id="CLOSE_TAG_STRONG"/> je van plan bent <x id="START_TAG_STRONG"/>deze te onderhouden<x id="CLOSE_TAG_STRONG"/> is van groot belang voor bezoekers om te begrijpen op wat voor soort exemplaar van peertube ze zich bevinden. </target> |
1167 | 1275 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">58</context></context-group> | |
1168 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 1276 | </trans-unit> |
1169 | <trans-unit id="5329436244765769292" datatype="html"> | 1277 | <trans-unit id="5329436244765769292" datatype="html"> |
1170 | <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> | 1278 | <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> |
1171 | <target state="translated">Als je registratie wil inschakelen, dan graag <x id="START_TAG_STRONG"/>je moderatieregels<x id="CLOSE_TAG_STRONG"/> en de <x id="START_TAG_STRONG"/>gebruiksvoorwaarden van je exemplaar van PeerTube<x id="CLOSE_TAG_STRONG"/> instellen, en ook de categorieën en de talen die je moderatoren spreken. Zo help je gebruikers zich te registreren op het <x id="START_TAG_STRONG"/>geschikte<x id="CLOSE_TAG_STRONG"/> exemplaar van PeerTube. </target> | 1279 | <target state="translated">Als je registratie wil inschakelen, dan graag <x id="START_TAG_STRONG"/>je moderatieregels<x id="CLOSE_TAG_STRONG"/> en de <x id="START_TAG_STRONG"/>gebruiksvoorwaarden van je exemplaar van PeerTube<x id="CLOSE_TAG_STRONG"/> instellen, en ook de categorieën en de talen die je moderatoren spreken. Zo help je gebruikers zich te registreren op het <x id="START_TAG_STRONG"/>geschikte<x id="CLOSE_TAG_STRONG"/> exemplaar van PeerTube. </target> |
1172 | 1280 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">64</context></context-group> | |
1173 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 1281 | </trans-unit> |
1174 | <trans-unit id="5704345824323933019" datatype="html"> | 1282 | <trans-unit id="5704345824323933019" datatype="html"> |
1175 | <source>Remind me later</source> | 1283 | <source>Remind me later</source> |
1176 | <target state="translated">Me later aan doen denken</target> | 1284 | <target state="translated">Me later aan doen denken</target> |
1177 | 1285 | <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> | |
1178 | <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/admin-welcome-modal.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit><trans-unit id="7997432701743294657" datatype="html"> | 1286 | <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> |
1179 | <source> Set up </source><target state="new"> Set up </target> | 1287 | </trans-unit> |
1180 | 1288 | <trans-unit id="7997432701743294657" datatype="html"> | |
1181 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 1289 | <source>Set up</source> |
1290 | <target state="new"> Set up </target> | ||
1291 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">35</context></context-group> | ||
1292 | </trans-unit> | ||
1182 | <trans-unit id="9202089339019827574" datatype="html"> | 1293 | <trans-unit id="9202089339019827574" datatype="html"> |
1183 | <source>Configure my instance</source> | 1294 | <source>Configure my instance</source> |
1184 | <target state="translated">Mijn exemplaar van PeerTube instellen</target> | 1295 | <target state="translated">Mijn exemplaar van PeerTube instellen</target> |
1185 | 1296 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">81</context></context-group> | |
1186 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit> | 1297 | </trans-unit> |
1187 | <trans-unit id="9005121595859995793" datatype="html"> | 1298 | <trans-unit id="9005121595859995793" datatype="html"> |
1188 | <source>Configuration warning!</source> | 1299 | <source>Configuration warning!</source> |
1189 | <target state="translated">Instellingswaarschuwing!</target> | 1300 | <target state="translated">Instellingswaarschuwing!</target> |
@@ -1213,14 +1324,15 @@ Geen resultaten gevonden</target> | |||
1213 | <source>How long you plan to maintain your instance</source> | 1324 | <source>How long you plan to maintain your instance</source> |
1214 | <target state="translated">Hoe lang je jou exemplaar van PeerTube van plan bent te onderhouden</target> | 1325 | <target state="translated">Hoe lang je jou exemplaar van PeerTube van plan bent te onderhouden</target> |
1215 | <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> | 1326 | <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> |
1216 | </trans-unit><trans-unit id="1909672990242291785" datatype="html"> | 1327 | </trans-unit> |
1217 | <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> | 1328 | <trans-unit id="1909672990242291785" datatype="html"> |
1329 | <source>How you plan to pay for keeping your instance running</source> | ||
1330 | <target state="new">How you plan to pay for keeping your instance running</target> | ||
1218 | <context-group purpose="location"> | 1331 | <context-group purpose="location"> |
1219 | <context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context> | 1332 | <context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context> |
1220 | <context context-type="linenumber">18</context> | 1333 | <context context-type="linenumber">18</context> |
1221 | </context-group> | 1334 | </context-group> |
1222 | </trans-unit> | 1335 | </trans-unit> |
1223 | |||
1224 | <trans-unit id="869943508869906576" datatype="html"> | 1336 | <trans-unit id="869943508869906576" datatype="html"> |
1225 | <source>How you will moderate your instance</source> | 1337 | <source>How you will moderate your instance</source> |
1226 | <target state="translated">Hoe je jou exemplaar van PeerTube gaat modereren</target> | 1338 | <target state="translated">Hoe je jou exemplaar van PeerTube gaat modereren</target> |
@@ -1234,10 +1346,12 @@ Geen resultaten gevonden</target> | |||
1234 | <trans-unit id="4116024528500133384" datatype="html"> | 1346 | <trans-unit id="4116024528500133384" datatype="html"> |
1235 | <source>My settings</source> | 1347 | <source>My settings</source> |
1236 | <target state="new">My settings</target> | 1348 | <target state="new">My settings</target> |
1237 | 1349 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">119</context></context-group> | |
1238 | 1350 | <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> | |
1239 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">119</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><trans-unit id="1420294365005204590" datatype="html"> | 1351 | </trans-unit> |
1240 | <source>These settings apply only to your session on this instance.</source><target state="new">These settings apply only to your session on this instance.</target> | 1352 | <trans-unit id="1420294365005204590" datatype="html"> |
1353 | <source>These settings apply only to your session on this instance.</source> | ||
1354 | <target state="new">These settings apply only to your session on this instance.</target> | ||
1241 | <context-group purpose="location"> | 1355 | <context-group purpose="location"> |
1242 | <context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context> | 1356 | <context context-type="sourcefile">src/app/modal/quick-settings-modal.component.html</context> |
1243 | <context context-type="linenumber">8</context> | 1357 | <context context-type="linenumber">8</context> |
@@ -1256,19 +1370,19 @@ Geen resultaten gevonden</target> | |||
1256 | <trans-unit id="7819314041543176992"> | 1370 | <trans-unit id="7819314041543176992"> |
1257 | <source>Close</source> | 1371 | <source>Close</source> |
1258 | <target>Sluiten</target> | 1372 | <target>Sluiten</target> |
1259 | 1373 | <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> | |
1260 | 1374 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">33</context></context-group> | |
1261 | <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">33</context></context-group></trans-unit> | 1375 | </trans-unit> |
1262 | <trans-unit id="4853631149357965563" datatype="html"> | 1376 | <trans-unit id="4853631149357965563" datatype="html"> |
1263 | <source>Update live settings</source> | 1377 | <source>Update live settings</source> |
1264 | <target state="translated">Live-instellingen bijwerken</target> | 1378 | <target state="translated">Live-instellingen bijwerken</target> |
1265 | 1379 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">36</context></context-group> | |
1266 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-live/live-stream-information.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1380 | </trans-unit> |
1267 | <trans-unit id="6013345175862135505" datatype="html"> | 1381 | <trans-unit id="6013345175862135505" datatype="html"> |
1268 | <source>Configure</source> | 1382 | <source>Configure</source> |
1269 | <target state="translated">Instellen</target> | 1383 | <target state="translated">Instellen</target> |
1270 | 1384 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">44</context></context-group> | |
1271 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit> | 1385 | </trans-unit> |
1272 | <trans-unit id="742596572641738016"> | 1386 | <trans-unit id="742596572641738016"> |
1273 | <source>Change the language</source> | 1387 | <source>Change the language</source> |
1274 | <target>Taal veranderen</target> | 1388 | <target>Taal veranderen</target> |
@@ -1284,171 +1398,190 @@ Geen resultaten gevonden</target> | |||
1284 | <trans-unit id="5464118521750361406" datatype="html"> | 1398 | <trans-unit id="5464118521750361406" datatype="html"> |
1285 | <source>Public profile</source> | 1399 | <source>Public profile</source> |
1286 | <target state="translated">Publiek profiel</target> | 1400 | <target state="translated">Publiek profiel</target> |
1287 | 1401 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">28</context></context-group> | |
1288 | <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> | 1402 | </trans-unit> |
1289 | <trans-unit id="7773271640656013365" datatype="html"> | 1403 | <trans-unit id="7773271640656013365" datatype="html"> |
1290 | <source>Interface:</source> | 1404 | <source>Interface:</source> |
1291 | <target state="translated">Interface:</target> | 1405 | <target state="translated">Interface:</target> |
1292 | 1406 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">35</context></context-group> | |
1293 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 1407 | </trans-unit> |
1294 | <trans-unit id="1674139713929545659" datatype="html"> | 1408 | <trans-unit id="1674139713929545659" datatype="html"> |
1295 | <source>Videos:</source> | 1409 | <source>Videos:</source> |
1296 | <target state="translated">Video's:</target> | 1410 | <target state="translated">Video's:</target> |
1297 | 1411 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group> | |
1298 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1412 | </trans-unit> |
1299 | <trans-unit id="9156407045661257130" datatype="html"> | 1413 | <trans-unit id="9156407045661257130" datatype="html"> |
1300 | <source>Sensitive:</source> | 1414 | <source>Sensitive:</source> |
1301 | <target state="translated">Gevoelig:</target> | 1415 | <target state="translated">Gevoelig:</target> |
1302 | 1416 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">52</context></context-group> | |
1303 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 1417 | </trans-unit> |
1304 | <trans-unit id="3430483831942247060" datatype="html"> | 1418 | <trans-unit id="3430483831942247060" datatype="html"> |
1305 | <source>Help share videos</source> | 1419 | <source>Help share videos</source> |
1306 | <target state="translated">Video's helpen delen</target> | 1420 | <target state="translated">Video's helpen delen</target> |
1307 | 1421 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">58</context></context-group> | |
1308 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 1422 | </trans-unit> |
1309 | <trans-unit id="7005745151564974365" datatype="html"> | 1423 | <trans-unit id="7005745151564974365" datatype="html"> |
1310 | <source>Keyboard shortcuts</source> | 1424 | <source>Keyboard shortcuts</source> |
1311 | <target state="translated">Sneltoetsen</target> | 1425 | <target state="translated">Sneltoetsen</target> |
1312 | 1426 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">67</context></context-group> | |
1313 | 1427 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">141</context></context-group> | |
1314 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">67</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><trans-unit id="6307374733149824815" datatype="html"> | 1428 | </trans-unit> |
1315 | <source>powered by PeerTube - CopyLeft 2015-2021</source><target state="new">powered by PeerTube - CopyLeft 2015-2021</target> | 1429 | <trans-unit id="6307374733149824815" datatype="html"> |
1316 | 1430 | <source>powered by PeerTube - CopyLeft 2015-2021</source> | |
1317 | <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> | 1431 | <target state="new">powered by PeerTube - CopyLeft 2015-2021</target> |
1432 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group> | ||
1433 | </trans-unit> | ||
1318 | <trans-unit id="7911416166208830577" datatype="html"> | 1434 | <trans-unit id="7911416166208830577" datatype="html"> |
1319 | <source>Help</source> | 1435 | <source>Help</source> |
1320 | <target state="translated">Hulp</target> | 1436 | <target state="translated">Hulp</target> |
1321 | 1437 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">137</context></context-group> | |
1322 | <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> | 1438 | </trans-unit> |
1323 | <trans-unit id="8378304669563824772" datatype="html"> | 1439 | <trans-unit id="8378304669563824772" datatype="html"> |
1324 | <source>Get help using PeerTube</source> | 1440 | <source>Get help using PeerTube</source> |
1325 | <target state="translated">Hulp bij het gebruik van PeerTube krijgen</target> | 1441 | <target state="translated">Hulp bij het gebruik van PeerTube krijgen</target> |
1326 | 1442 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">137</context></context-group> | |
1327 | <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> | 1443 | </trans-unit> |
1328 | <trans-unit id="2497681082724639563" datatype="html"> | 1444 | <trans-unit id="2497681082724639563" datatype="html"> |
1329 | <source>powered by PeerTube</source> | 1445 | <source>powered by PeerTube</source> |
1330 | <target state="translated">mogelijk gemaakt door PeerTube</target> | 1446 | <target state="translated">mogelijk gemaakt door PeerTube</target> |
1331 | 1447 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">147</context></context-group> | |
1332 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">147</context></context-group></trans-unit> | 1448 | </trans-unit> |
1333 | |||
1334 | <trans-unit id="7507948636555938109"> | 1449 | <trans-unit id="7507948636555938109"> |
1335 | <source>Log out</source> | 1450 | <source>Log out</source> |
1336 | <target>Afmelden</target> | 1451 | <target>Afmelden</target> |
1337 | 1452 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group> | |
1338 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> | 1453 | </trans-unit> |
1339 | <trans-unit id="8893390761160292681" datatype="html"> | 1454 | <trans-unit id="8893390761160292681" datatype="html"> |
1340 | <source>My account</source> | 1455 | <source>My account</source> |
1341 | <target state="translated">Mijn account</target> | 1456 | <target state="translated">Mijn account</target> |
1342 | 1457 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">83</context></context-group> | |
1343 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 1458 | </trans-unit> |
1344 | <trans-unit id="6371572688505952303" datatype="html"> | 1459 | <trans-unit id="6371572688505952303" datatype="html"> |
1345 | <source>My library</source> | 1460 | <source>My library</source> |
1346 | <target state="translated">Mijn bibliotheek</target> | 1461 | <target state="translated">Mijn bibliotheek</target> |
1347 | 1462 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group> | |
1348 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> | 1463 | </trans-unit> |
1349 | <trans-unit id="2308975396733519902"> | 1464 | <trans-unit id="2308975396733519902"> |
1350 | <source>Create an account</source> | 1465 | <source>Create an account</source> |
1351 | <target>Account maken</target> | 1466 | <target>Account maken</target> |
1352 | 1467 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">54</context></context-group> | |
1353 | 1468 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">100</context></context-group> | |
1354 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">54</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">100</context></context-group></trans-unit> | 1469 | </trans-unit> |
1355 | |||
1356 | <trans-unit id="3058024914967508975" datatype="html"> | 1470 | <trans-unit id="3058024914967508975" datatype="html"> |
1357 | <source>My videos</source> | 1471 | <source>My videos</source> |
1358 | <target state="translated">Mijn video's</target> | 1472 | <target state="translated">Mijn video's</target> |
1359 | 1473 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">76</context></context-group> | |
1360 | 1474 | <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> | |
1361 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">76</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">71</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> | 1475 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">71</context></context-group> |
1476 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">77</context></context-group> | ||
1477 | </trans-unit> | ||
1362 | <trans-unit id="3108704604266608109" datatype="html"> | 1478 | <trans-unit id="3108704604266608109" datatype="html"> |
1363 | <source>My video imports</source> | 1479 | <source>My video imports</source> |
1364 | <target state="translated">Mijn video-imports</target> | 1480 | <target state="translated">Mijn video-imports</target> |
1365 | 1481 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">89</context></context-group> | |
1366 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">89</context></context-group></trans-unit> | 1482 | </trans-unit> |
1367 | <trans-unit id="7545420287297803988" datatype="html"> | 1483 | <trans-unit id="7545420287297803988" datatype="html"> |
1368 | <source>My playlists</source> | 1484 | <source>My playlists</source> |
1369 | <target state="translated">Mijn afspeellijsten</target> | 1485 | <target state="translated">Mijn afspeellijsten</target> |
1370 | 1486 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">39</context></context-group> | |
1371 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">39</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> | 1487 | <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> |
1488 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">86</context></context-group> | ||
1489 | </trans-unit> | ||
1372 | <trans-unit id="949618577357088829" datatype="html"> | 1490 | <trans-unit id="949618577357088829" datatype="html"> |
1373 | <source>Create a new playlist</source> | 1491 | <source>Create a new playlist</source> |
1374 | <target state="translated">Nieuwe afspeellijst aanmaken</target> | 1492 | <target state="translated">Nieuwe afspeellijst aanmaken</target> |
1375 | 1493 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">48</context></context-group> | |
1376 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 1494 | </trans-unit> |
1377 | <trans-unit id="2527931602940887636" datatype="html"> | 1495 | <trans-unit id="2527931602940887636" datatype="html"> |
1378 | <source>My subscriptions</source> | 1496 | <source>My subscriptions</source> |
1379 | <target state="translated">Mijn abonnementen</target> | 1497 | <target state="translated">Mijn abonnementen</target> |
1380 | 1498 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">98</context></context-group> | |
1381 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">98</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">4</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> | 1499 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">4</context></context-group> |
1500 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">92</context></context-group> | ||
1501 | </trans-unit> | ||
1382 | <trans-unit id="8936704404804793618"> | 1502 | <trans-unit id="8936704404804793618"> |
1383 | <source>Videos</source> | 1503 | <source>Videos</source> |
1384 | <target>Video's</target> | 1504 | <target>Video's</target> |
1385 | 1505 | <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> | |
1386 | <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/+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/+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> | 1506 | <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> |
1507 | <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> | ||
1508 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">76</context></context-group> | ||
1509 | </trans-unit> | ||
1387 | <trans-unit id="2689878465089314112" datatype="html"> | 1510 | <trans-unit id="2689878465089314112" datatype="html"> |
1388 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> | 1511 | <source>Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></source> |
1389 | <target state="translated">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> | 1512 | <target state="translated">Interface: <x id="INTERPOLATION" equiv-text="{{ currentInterfaceLanguage }}"/></target> |
1390 | 1513 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group> | |
1391 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> | 1514 | </trans-unit> |
1392 | <trans-unit id="1823843876735462104"> | 1515 | <trans-unit id="1823843876735462104"> |
1393 | <source>Playlists</source> | 1516 | <source>Playlists</source> |
1394 | <target>Afspeellijsten</target> | 1517 | <target>Afspeellijsten</target> |
1395 | 1518 | <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> | |
1396 | <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/core/menu/menu.service.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> | 1519 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">85</context></context-group> |
1520 | </trans-unit> | ||
1397 | <trans-unit id="1812379335568847528"> | 1521 | <trans-unit id="1812379335568847528"> |
1398 | <source>Subscriptions</source> | 1522 | <source>Subscriptions</source> |
1399 | <target>Abonnementen</target> | 1523 | <target>Abonnementen</target> |
1400 | 1524 | <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> | |
1401 | <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><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">58</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> | 1525 | <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> |
1526 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">58</context></context-group> | ||
1527 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">91</context></context-group> | ||
1528 | </trans-unit> | ||
1402 | <trans-unit id="186236568870281953"> | 1529 | <trans-unit id="186236568870281953"> |
1403 | <source>History</source> | 1530 | <source>History</source> |
1404 | <target>Geschiedenis</target> | 1531 | <target>Geschiedenis</target> |
1405 | 1532 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">69</context></context-group> | |
1406 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">69</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> | 1533 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">97</context></context-group> |
1534 | </trans-unit> | ||
1407 | <trans-unit id="1504521795586863905" datatype="html"> | 1535 | <trans-unit id="1504521795586863905" datatype="html"> |
1408 | <source>VIDEOS</source> | 1536 | <source>VIDEOS</source> |
1409 | <target state="translated">VIDEO'S</target> | 1537 | <target state="translated">VIDEO'S</target> |
1410 | 1538 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">82</context></context-group> | |
1411 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">82</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">215</context></context-group><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></trans-unit><trans-unit id="667372110624203230" datatype="html"> | 1539 | <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">215</context></context-group> |
1412 | <source>Import jobs concurrency</source><target state="new">Import jobs concurrency</target> | 1540 | <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> |
1413 | 1541 | </trans-unit> | |
1414 | <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">225</context></context-group></trans-unit><trans-unit id="2184839376696112704" datatype="html"> | 1542 | <trans-unit id="667372110624203230" datatype="html"> |
1415 | <source>allows to import multiple videos in parallel. ⚠️ Requires a PeerTube restart.</source><target state="new">allows to import multiple videos in parallel. ⚠️ Requires a PeerTube restart.</target> | 1543 | <source>Import jobs concurrency</source> |
1416 | 1544 | <target state="new">Import jobs concurrency</target> | |
1417 | <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><trans-unit id="780513172839038392" datatype="html"> | 1545 | <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">225</context></context-group> |
1418 | <source>jobs in parallel</source><target state="new">jobs in parallel</target> | 1546 | </trans-unit> |
1419 | 1547 | <trans-unit id="2184839376696112704" datatype="html"> | |
1420 | 1548 | <source>allows to import multiple videos in parallel. ⚠️ Requires a PeerTube restart.</source> | |
1421 | <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">230</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> | 1549 | <target state="new">allows to import multiple videos in parallel. ⚠️ Requires a PeerTube restart.</target> |
1550 | <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> | ||
1551 | </trans-unit> | ||
1552 | <trans-unit id="780513172839038392" datatype="html"> | ||
1553 | <source>jobs in parallel</source> | ||
1554 | <target state="new">jobs in parallel</target> | ||
1555 | <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">230</context></context-group> | ||
1556 | <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> | ||
1557 | </trans-unit> | ||
1422 | <trans-unit id="5997625369044180192" datatype="html"> | 1558 | <trans-unit id="5997625369044180192" datatype="html"> |
1423 | <source>Allow import with HTTP URL (e.g. YouTube)</source> | 1559 | <source>Allow import with HTTP URL (e.g. YouTube)</source> |
1424 | <target state="translated">Import met HTTP URL (bijv. YouTube) toestaan</target> | 1560 | <target state="translated">Import met HTTP URL (bijv. YouTube) toestaan</target> |
1425 | 1561 | <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">239</context></context-group> | |
1426 | <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">239</context></context-group></trans-unit> | 1562 | </trans-unit> |
1427 | <trans-unit id="7627544798203088407"> | 1563 | <trans-unit id="7627544798203088407"> |
1428 | <source>Discover</source> | 1564 | <source>Discover</source> |
1429 | <target>Ontdekken</target> | 1565 | <target>Ontdekken</target> |
1430 | 1566 | <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> | |
1431 | 1567 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">125</context></context-group> | |
1432 | <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> | 1568 | </trans-unit> |
1433 | |||
1434 | |||
1435 | |||
1436 | <trans-unit id="7844706011418789951"> | 1569 | <trans-unit id="7844706011418789951"> |
1437 | <source>Administration</source> | 1570 | <source>Administration</source> |
1438 | <target>Beheer</target> | 1571 | <target>Beheer</target> |
1439 | 1572 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">93</context></context-group> | |
1440 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">93</context></context-group></trans-unit> | 1573 | </trans-unit> |
1441 | <trans-unit id="1726363342938046830"> | 1574 | <trans-unit id="1726363342938046830"> |
1442 | <source>About</source> | 1575 | <source>About</source> |
1443 | <target>Over</target> | 1576 | <target>Over</target> |
1444 | 1577 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">124</context></context-group> | |
1445 | 1578 | </trans-unit> | |
1446 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">124</context></context-group></trans-unit> | ||
1447 | <trans-unit id="7922989125096435449" datatype="html"> | 1579 | <trans-unit id="7922989125096435449" datatype="html"> |
1448 | <source>Contact</source> | 1580 | <source>Contact</source> |
1449 | <target state="translated">Contact</target> | 1581 | <target state="translated">Contact</target> |
1450 | 1582 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">36</context></context-group> | |
1451 | <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">136</context></context-group></trans-unit> | 1583 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">136</context></context-group> |
1584 | </trans-unit> | ||
1452 | <trans-unit id="403762424689874454"> | 1585 | <trans-unit id="403762424689874454"> |
1453 | <source>View your notifications</source> | 1586 | <source>View your notifications</source> |
1454 | <target>Je meldingen bekijken</target> | 1587 | <target>Je meldingen bekijken</target> |
@@ -1459,9 +1592,11 @@ Geen resultaten gevonden</target> | |||
1459 | <trans-unit id="5851560788527570644"> | 1592 | <trans-unit id="5851560788527570644"> |
1460 | <source>Notifications</source> | 1593 | <source>Notifications</source> |
1461 | <target>Meldingen</target> | 1594 | <target>Meldingen</target> |
1462 | 1595 | <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> | |
1463 | 1596 | <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> | |
1464 | <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> | 1597 | <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> |
1598 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">22</context></context-group> | ||
1599 | </trans-unit> | ||
1465 | <trans-unit id="2333314224059826550" datatype="html"> | 1600 | <trans-unit id="2333314224059826550" datatype="html"> |
1466 | <source>Mark all as read</source> | 1601 | <source>Mark all as read</source> |
1467 | <target state="translated">Alle als gelezen markeren</target> | 1602 | <target state="translated">Alle als gelezen markeren</target> |
@@ -1478,23 +1613,35 @@ Geen resultaten gevonden</target> | |||
1478 | <source>See all your notifications</source> | 1613 | <source>See all your notifications</source> |
1479 | <target>Al je meldingen bekijken</target> | 1614 | <target>Al je meldingen bekijken</target> |
1480 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">49</context></context-group> | 1615 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/notification.component.html</context><context context-type="linenumber">49</context></context-group> |
1481 | </trans-unit><trans-unit id="5108072242786374364" datatype="html"> | 1616 | </trans-unit> |
1482 | <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> | 1617 | <trans-unit id="5108072242786374364" datatype="html"> |
1483 | 1618 | <source>Welcome to <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, dear user!</source> | |
1484 | <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"> | 1619 | <target state="new">Welcome to <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, dear user!</target> |
1485 | <source>It's time to set up your account profile!</source><target state="new">It's time to set up your account profile!</target> | 1620 | <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> |
1486 | 1621 | </trans-unit> | |
1487 | <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"> | 1622 | <trans-unit id="8821712929823045567" datatype="html"> |
1488 | <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> | 1623 | <source>It's time to set up your account profile!</source> |
1489 | 1624 | <target state="new">It's time to set up your account profile!</target> | |
1490 | <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"> | 1625 | <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> |
1491 | <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> | 1626 | </trans-unit> |
1492 | 1627 | <trans-unit id="7239874680342223476" datatype="html"> | |
1493 | <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"> | 1628 | <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> |
1494 | <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> | 1629 | <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> |
1495 | 1630 | <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> | |
1496 | <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"> | 1631 | </trans-unit> |
1497 | <source>Don't show me this anymore</source><target state="new">Don't show me this anymore</target> | 1632 | <trans-unit id="5856432243446401016" datatype="html"> |
1633 | <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> | ||
1634 | <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> | ||
1635 | <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> | ||
1636 | </trans-unit> | ||
1637 | <trans-unit id="3221645359464920754" datatype="html"> | ||
1638 | <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> | ||
1639 | <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> | ||
1640 | <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> | ||
1641 | </trans-unit> | ||
1642 | <trans-unit id="2218100934178971211" datatype="html"> | ||
1643 | <source>Don't show me this anymore</source> | ||
1644 | <target state="new">Don't show me this anymore</target> | ||
1498 | <context-group purpose="location"> | 1645 | <context-group purpose="location"> |
1499 | <context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context> | 1646 | <context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context> |
1500 | <context context-type="linenumber">23</context> | 1647 | <context context-type="linenumber">23</context> |
@@ -1503,8 +1650,8 @@ Geen resultaten gevonden</target> | |||
1503 | <trans-unit id="4424964105331349857" datatype="html"> | 1650 | <trans-unit id="4424964105331349857" datatype="html"> |
1504 | <source>I'm a teapot</source> | 1651 | <source>I'm a teapot</source> |
1505 | <target state="translated">Ik ben een theepot</target> | 1652 | <target state="translated">Ik ben een theepot</target> |
1506 | 1653 | <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> | |
1507 | <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> | 1654 | </trans-unit> |
1508 | <trans-unit id="1597262876035959248" datatype="html"> | 1655 | <trans-unit id="1597262876035959248" datatype="html"> |
1509 | <source>That's an error.</source> | 1656 | <source>That's an error.</source> |
1510 | <target state="translated">Dat is een fout.</target> | 1657 | <target state="translated">Dat is een fout.</target> |
@@ -1512,39 +1659,45 @@ Geen resultaten gevonden</target> | |||
1512 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1659 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1513 | <context context-type="linenumber">4</context> | 1660 | <context context-type="linenumber">4</context> |
1514 | </context-group> | 1661 | </context-group> |
1515 | </trans-unit><trans-unit id="3343007694071351756" datatype="html"> | 1662 | </trans-unit> |
1516 | <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> | 1663 | <trans-unit id="3343007694071351756" datatype="html"> |
1664 | <source>We couldn't find any video tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</source> | ||
1665 | <target state="new">We couldn't find any video tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</target> | ||
1517 | <context-group purpose="location"> | 1666 | <context-group purpose="location"> |
1518 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1667 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1519 | <context context-type="linenumber">7</context> | 1668 | <context context-type="linenumber">7</context> |
1520 | </context-group> | 1669 | </context-group> |
1521 | </trans-unit><trans-unit id="7366678433039425999" datatype="html"> | 1670 | </trans-unit> |
1522 | <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> | 1671 | <trans-unit id="7366678433039425999" datatype="html"> |
1672 | <source>We couldn't find any resource tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</source> | ||
1673 | <target state="new">We couldn't find any resource tied to the URL <x id="INTERPOLATION" equiv-text="{{ pathname }}"/> you were looking for.</target> | ||
1523 | <context-group purpose="location"> | 1674 | <context-group purpose="location"> |
1524 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1675 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1525 | <context context-type="linenumber">8</context> | 1676 | <context context-type="linenumber">8</context> |
1526 | </context-group> | 1677 | </context-group> |
1527 | </trans-unit> | 1678 | </trans-unit> |
1528 | |||
1529 | <trans-unit id="3522707340816553139" datatype="html"> | 1679 | <trans-unit id="3522707340816553139" datatype="html"> |
1530 | <source>Possible reasons:</source> | 1680 | <source>Possible reasons:</source> |
1531 | <target state="translated">Mogelijke oorzaken:</target> | 1681 | <target state="translated">Mogelijke oorzaken:</target> |
1532 | |||
1533 | <note priority="1" from="description">Possible reasons preceding a list of reasons a `Not Found` error page may occur</note> | 1682 | <note priority="1" from="description">Possible reasons preceding a list of reasons a `Not Found` error page may occur</note> |
1534 | <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> | 1683 | <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> |
1535 | 1684 | </trans-unit> | |
1536 | <trans-unit id="6925335998927745197" datatype="html"> | 1685 | <trans-unit id="6925335998927745197" datatype="html"> |
1537 | <source>You may have used an outdated or broken link</source> | 1686 | <source>You may have used an outdated or broken link</source> |
1538 | <target state="translated">Mogelijk heeft u een ongeldige of verlopen link gebruikt</target> | 1687 | <target state="translated">Mogelijk heeft u een ongeldige of verlopen link gebruikt</target> |
1539 | 1688 | <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> | |
1540 | <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"> | 1689 | </trans-unit> |
1541 | <source>The video may have been moved or deleted</source><target state="new">The video may have been moved or deleted</target> | 1690 | <trans-unit id="1171455174603388942" datatype="html"> |
1691 | <source>The video may have been moved or deleted</source> | ||
1692 | <target state="new">The video may have been moved or deleted</target> | ||
1542 | <context-group purpose="location"> | 1693 | <context-group purpose="location"> |
1543 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1694 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1544 | <context context-type="linenumber">17</context> | 1695 | <context context-type="linenumber">17</context> |
1545 | </context-group> | 1696 | </context-group> |
1546 | </trans-unit><trans-unit id="2213348264902218064" datatype="html"> | 1697 | </trans-unit> |
1547 | <source>The resource may have been moved or deleted</source><target state="new">The resource may have been moved or deleted</target> | 1698 | <trans-unit id="2213348264902218064" datatype="html"> |
1699 | <source>The resource may have been moved or deleted</source> | ||
1700 | <target state="new">The resource may have been moved or deleted</target> | ||
1548 | <context-group purpose="location"> | 1701 | <context-group purpose="location"> |
1549 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1702 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1550 | <context context-type="linenumber">18</context> | 1703 | <context context-type="linenumber">18</context> |
@@ -1553,18 +1706,24 @@ Geen resultaten gevonden</target> | |||
1553 | <trans-unit id="3209594685692897380" datatype="html"> | 1706 | <trans-unit id="3209594685692897380" datatype="html"> |
1554 | <source>You may have typed the address or URL incorrectly</source> | 1707 | <source>You may have typed the address or URL incorrectly</source> |
1555 | <target state="translated">Het kan zijn dat u het web adres of URL verkeerd hebt ingetypt</target> | 1708 | <target state="translated">Het kan zijn dat u het web adres of URL verkeerd hebt ingetypt</target> |
1556 | 1709 | <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> | |
1557 | <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><trans-unit id="3290262698447971494" datatype="html"> | 1710 | </trans-unit> |
1558 | <source>You are not authorized here.</source><target state="new">You are not authorized here.</target> | 1711 | <trans-unit id="3290262698447971494" datatype="html"> |
1559 | 1712 | <source>You are not authorized here.</source> | |
1560 | <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"> | 1713 | <target state="new">You are not authorized here.</target> |
1561 | <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> | 1714 | <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> |
1715 | </trans-unit> | ||
1716 | <trans-unit id="6209939621665316894" datatype="html"> | ||
1717 | <source>You might need to check your account is allowed by the video or instance owner.</source> | ||
1718 | <target state="new">You might need to check your account is allowed by the video or instance owner.</target> | ||
1562 | <context-group purpose="location"> | 1719 | <context-group purpose="location"> |
1563 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1720 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1564 | <context context-type="linenumber">30</context> | 1721 | <context context-type="linenumber">30</context> |
1565 | </context-group> | 1722 | </context-group> |
1566 | </trans-unit><trans-unit id="3543381263966122204" datatype="html"> | 1723 | </trans-unit> |
1567 | <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> | 1724 | <trans-unit id="3543381263966122204" datatype="html"> |
1725 | <source>You might need to check your account is allowed by the resource or instance owner.</source> | ||
1726 | <target state="new">You might need to check your account is allowed by the resource or instance owner.</target> | ||
1568 | <context-group purpose="location"> | 1727 | <context-group purpose="location"> |
1569 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> | 1728 | <context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context> |
1570 | <context context-type="linenumber">31</context> | 1729 | <context context-type="linenumber">31</context> |
@@ -1573,21 +1732,20 @@ Geen resultaten gevonden</target> | |||
1573 | <trans-unit id="7231414106228227962" datatype="html"> | 1732 | <trans-unit id="7231414106228227962" datatype="html"> |
1574 | <source>The requested entity body blends sweet bits with a mellow earthiness.</source> | 1733 | <source>The requested entity body blends sweet bits with a mellow earthiness.</source> |
1575 | <target state="new"> The requested entity body blends sweet bits with a mellow earthiness. </target> | 1734 | <target state="new"> The requested entity body blends sweet bits with a mellow earthiness. </target> |
1576 | |||
1577 | <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> | 1735 | <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> |
1578 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> | 1736 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found.component.html</context><context context-type="linenumber">40</context></context-group> |
1737 | </trans-unit> | ||
1579 | <trans-unit id="2933819425721221134" datatype="html"> | 1738 | <trans-unit id="2933819425721221134" datatype="html"> |
1580 | <source>Sepia seems to like it.</source> | 1739 | <source>Sepia seems to like it.</source> |
1581 | <target state="translated">Sepia schijnt het lekker te vinden.</target> | 1740 | <target state="translated">Sepia schijnt het lekker te vinden.</target> |
1582 | |||
1583 | <note priority="1" from="description">This is about Sepia's tea</note> | 1741 | <note priority="1" from="description">This is about Sepia's tea</note> |
1584 | <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> | 1742 | <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> |
1743 | </trans-unit> | ||
1585 | <trans-unit id="2971365540217107489" datatype="html"> | 1744 | <trans-unit id="2971365540217107489" datatype="html"> |
1586 | <source>Media is too large for the server. Please contact you administrator if you want to increase the limit size.</source> | 1745 | <source>Media is too large for the server. Please contact you administrator if you want to increase the limit size.</source> |
1587 | <target state="translated">Media te groot voor de server. Gelieve je beheerder te contacteren als je de groottelimiet wil verhogen.</target> | 1746 | <target state="translated">Media te groot voor de server. Gelieve je beheerder te contacteren als je de groottelimiet wil verhogen.</target> |
1588 | 1747 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">65</context></context-group> | |
1589 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">65</context></context-group></trans-unit> | 1748 | </trans-unit> |
1590 | |||
1591 | <trans-unit id="5131854469652959713" datatype="html"> | 1749 | <trans-unit id="5131854469652959713" datatype="html"> |
1592 | <source>GLOBAL SEARCH</source> | 1750 | <source>GLOBAL SEARCH</source> |
1593 | <target state="translated">GLOBAAL ZOEKEN</target> | 1751 | <target state="translated">GLOBAAL ZOEKEN</target> |
@@ -1602,8 +1760,10 @@ Geen resultaten gevonden</target> | |||
1602 | <source>Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent.</source> | 1760 | <source>Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent.</source> |
1603 | <target state="translated">Resultaten worden aangevuld met die van elders. We versturen enkel wat nodig is voor het stellen van de vraag.</target> | 1761 | <target state="translated">Resultaten worden aangevuld met die van elders. We versturen enkel wat nodig is voor het stellen van de vraag.</target> |
1604 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">32</context></context-group> | 1762 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">32</context></context-group> |
1605 | </trans-unit><trans-unit id="2807610143550376912" datatype="html"> | 1763 | </trans-unit> |
1606 | <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> | 1764 | <trans-unit id="2807610143550376912" datatype="html"> |
1765 | <source>Your query will be matched against video names or descriptions, channel names.</source> | ||
1766 | <target state="new">Your query will be matched against video names or descriptions, channel names.</target> | ||
1607 | <context-group purpose="location"> | 1767 | <context-group purpose="location"> |
1608 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> | 1768 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> |
1609 | <context context-type="linenumber">37</context> | 1769 | <context context-type="linenumber">37</context> |
@@ -1612,35 +1772,34 @@ Geen resultaten gevonden</target> | |||
1612 | <trans-unit id="3801957940570333397" datatype="html"> | 1772 | <trans-unit id="3801957940570333397" datatype="html"> |
1613 | <source>ADVANCED SEARCH</source> | 1773 | <source>ADVANCED SEARCH</source> |
1614 | <target state="translated">GEAVANCEERD ZOEKEN</target> | 1774 | <target state="translated">GEAVANCEERD ZOEKEN</target> |
1615 | 1775 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">39</context></context-group> | |
1616 | <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> | 1776 | </trans-unit> |
1617 | <trans-unit id="3416071273413341159" datatype="html"> | 1777 | <trans-unit id="3416071273413341159" datatype="html"> |
1618 | <source>any instance</source> | 1778 | <source>any instance</source> |
1619 | <target state="translated">gelijk welk exemplaar van PeerTube</target> | 1779 | <target state="translated">gelijk welk exemplaar van PeerTube</target> |
1620 | 1780 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">42</context></context-group> | |
1621 | <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> | 1781 | </trans-unit> |
1622 | <trans-unit id="1764675694412365696" datatype="html"> | 1782 | <trans-unit id="1764675694412365696" datatype="html"> |
1623 | <source>only followed instances</source> | 1783 | <source>only followed instances</source> |
1624 | <target state="translated">enkel gevolgde exemplaren van PeerTube</target> | 1784 | <target state="translated">enkel gevolgde exemplaren van PeerTube</target> |
1625 | 1785 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">43</context></context-group> | |
1626 | <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> | 1786 | </trans-unit> |
1627 | <trans-unit id="6462732349450217281" datatype="html"> | 1787 | <trans-unit id="6462732349450217281" datatype="html"> |
1628 | <source>Determines whether you can resolve any distant content, or if this instance only allows doing so for instances it follows.</source> | 1788 | <source>Determines whether you can resolve any distant content, or if this instance only allows doing so for instances it follows.</source> |
1629 | <target state="translated">Bepaalt of je eender welke inhoud van elders kan vinden, of dat dit exemplaar van PeerTube dat enkel toelaat voor exemplaren die het volgt.</target> | 1789 | <target state="translated">Bepaalt of je eender welke inhoud van elders kan vinden, of dat dit exemplaar van PeerTube dat enkel toelaat voor exemplaren die het volgt.</target> |
1630 | 1790 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">41</context></context-group> | |
1631 | <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> | 1791 | </trans-unit> |
1632 | <trans-unit id="3710530516408401495" datatype="html"> | 1792 | <trans-unit id="3710530516408401495" datatype="html"> |
1633 | <source>will list the matching channel</source> | 1793 | <source>will list the matching channel</source> |
1634 | <target state="translated">geeft het bijpassende kanaal weer</target> | 1794 | <target state="translated">geeft het bijpassende kanaal weer</target> |
1635 | 1795 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">50</context></context-group> | |
1636 | 1796 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">53</context></context-group> | |
1637 | <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> | 1797 | </trans-unit> |
1638 | <trans-unit id="6913541939335935215" datatype="html"> | 1798 | <trans-unit id="6913541939335935215" datatype="html"> |
1639 | <source>will list the matching video</source> | 1799 | <source>will list the matching video</source> |
1640 | <target state="translated">geeft de bijpassende video weer</target> | 1800 | <target state="translated">geeft de bijpassende video weer</target> |
1641 | 1801 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">56</context></context-group> | |
1642 | <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> | 1802 | </trans-unit> |
1643 | |||
1644 | <trans-unit id="8854094932942190741"> | 1803 | <trans-unit id="8854094932942190741"> |
1645 | <source>Search...</source> | 1804 | <source>Search...</source> |
1646 | <target>Zoeken …</target> | 1805 | <target>Zoeken …</target> |
@@ -1664,122 +1823,143 @@ Geen resultaten gevonden</target> | |||
1664 | <trans-unit id="5478121364779850827" datatype="html"> | 1823 | <trans-unit id="5478121364779850827" datatype="html"> |
1665 | <source>Reset</source> | 1824 | <source>Reset</source> |
1666 | <target state="translated">Reset</target> | 1825 | <target state="translated">Reset</target> |
1667 | 1826 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">9</context></context-group> | |
1668 | 1827 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">23</context></context-group> | |
1669 | 1828 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">42</context></context-group> | |
1670 | 1829 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">61</context></context-group> | |
1671 | 1830 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">75</context></context-group> | |
1672 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">9</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">42</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">61</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">75</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">110</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">123</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">136</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">149</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">164</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">172</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></trans-unit><trans-unit id="4540121094340493564" datatype="html"> | 1831 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">110</context></context-group> |
1673 | <source>Display only</source><target state="new">Display only</target> | 1832 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">123</context></context-group> |
1833 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">136</context></context-group> | ||
1834 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">149</context></context-group> | ||
1835 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">164</context></context-group> | ||
1836 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">172</context></context-group> | ||
1837 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">205</context></context-group> | ||
1838 | </trans-unit> | ||
1839 | <trans-unit id="4540121094340493564" datatype="html"> | ||
1840 | <source>Display only</source> | ||
1841 | <target state="new">Display only</target> | ||
1674 | <context-group purpose="location"> | 1842 | <context-group purpose="location"> |
1675 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> | 1843 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> |
1676 | <context context-type="linenumber">21</context> | 1844 | <context context-type="linenumber">21</context> |
1677 | </context-group> | 1845 | </context-group> |
1678 | </trans-unit><trans-unit id="2180217594100853008" datatype="html"> | 1846 | </trans-unit> |
1679 | <source>Live videos</source><target state="new">Live videos</target> | 1847 | <trans-unit id="2180217594100853008" datatype="html"> |
1680 | 1848 | <source>Live videos</source> | |
1681 | <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/+search/search-filters.component.ts</context><context context-type="linenumber">64</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">158</context></context-group></trans-unit><trans-unit id="2392481201920342009" datatype="html"> | 1849 | <target state="new">Live videos</target> |
1682 | <source>VOD videos</source><target state="new">VOD videos</target> | 1850 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">29</context></context-group> |
1683 | 1851 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">64</context></context-group> | |
1684 | <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/+search/search-filters.component.ts</context><context context-type="linenumber">60</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">164</context></context-group></trans-unit> | 1852 | <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> |
1853 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">158</context></context-group> | ||
1854 | </trans-unit> | ||
1855 | <trans-unit id="2392481201920342009" datatype="html"> | ||
1856 | <source>VOD videos</source> | ||
1857 | <target state="new">VOD videos</target> | ||
1858 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">34</context></context-group> | ||
1859 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">60</context></context-group> | ||
1860 | <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> | ||
1861 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">164</context></context-group> | ||
1862 | </trans-unit> | ||
1685 | <trans-unit id="7970752988844762769"> | 1863 | <trans-unit id="7970752988844762769"> |
1686 | <source>Published date</source> | 1864 | <source>Published date</source> |
1687 | <target>Datum van publicatie</target> | 1865 | <target>Datum van publicatie</target> |
1688 | 1866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">59</context></context-group> | |
1689 | <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> | 1867 | </trans-unit> |
1690 | <trans-unit id="5038188980760269298"> | 1868 | <trans-unit id="5038188980760269298"> |
1691 | <source>Original publication year</source> | 1869 | <source>Original publication year</source> |
1692 | <target>Origineel publicatie jaar</target> | 1870 | <target>Origineel publicatie jaar</target> |
1693 | 1871 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">73</context></context-group> | |
1694 | <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> | 1872 | </trans-unit> |
1695 | <trans-unit id="2316758236788716819"> | 1873 | <trans-unit id="2316758236788716819"> |
1696 | <source>After...</source> | 1874 | <source>After...</source> |
1697 | <target>Na...</target> | 1875 | <target>Na...</target> |
1698 | 1876 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">85</context></context-group> | |
1699 | <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> | 1877 | </trans-unit> |
1700 | <trans-unit id="5418443214217152433"> | 1878 | <trans-unit id="5418443214217152433"> |
1701 | <source>Before...</source> | 1879 | <source>Before...</source> |
1702 | <target>Voor...</target> | 1880 | <target>Voor...</target> |
1703 | 1881 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">95</context></context-group> | |
1704 | <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> | 1882 | </trans-unit> |
1705 | <trans-unit id="7410432243549869948"> | 1883 | <trans-unit id="7410432243549869948"> |
1706 | <source>Duration</source> | 1884 | <source>Duration</source> |
1707 | <target>Tijdsduur</target> | 1885 | <target>Tijdsduur</target> |
1708 | 1886 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">108</context></context-group> | |
1709 | 1887 | <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> | |
1710 | <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> | 1888 | </trans-unit> |
1711 | <trans-unit id="3589238979642505685"> | 1889 | <trans-unit id="3589238979642505685"> |
1712 | <source>Display sensitive content</source> | 1890 | <source>Display sensitive content</source> |
1713 | <target>Laat gevoelige inhoud zien</target> | 1891 | <target>Laat gevoelige inhoud zien</target> |
1714 | 1892 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">40</context></context-group> | |
1715 | <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> | 1893 | </trans-unit> |
1716 | <trans-unit id="2807800733729323332"> | 1894 | <trans-unit id="2807800733729323332"> |
1717 | <source>Yes</source> | 1895 | <source>Yes</source> |
1718 | <target>Ja</target> | 1896 | <target>Ja</target> |
1719 | 1897 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">48</context></context-group> | |
1720 | <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> | 1898 | </trans-unit> |
1721 | <trans-unit id="3542042671420335679"> | 1899 | <trans-unit id="3542042671420335679"> |
1722 | <source>No</source> | 1900 | <source>No</source> |
1723 | <target>Nee</target> | 1901 | <target>Nee</target> |
1724 | 1902 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">53</context></context-group> | |
1725 | <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> | 1903 | </trans-unit> |
1726 | <trans-unit id="1806667489382256324"> | 1904 | <trans-unit id="1806667489382256324"> |
1727 | <source>Category</source> | 1905 | <source>Category</source> |
1728 | <target>Categorie</target> | 1906 | <target>Categorie</target> |
1729 | 1907 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">121</context></context-group> | |
1730 | 1908 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">63</context></context-group> | |
1731 | 1909 | <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> | |
1732 | <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">63</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> | 1910 | </trans-unit> |
1733 | <trans-unit id="5478121364779850827" datatype="html"> | 1911 | <trans-unit id="5478121364779850827" datatype="html"> |
1734 | <source>Reset</source> | 1912 | <source>Reset</source> |
1735 | <target state="translated">Reset</target> | 1913 | <target state="translated">Reset</target> |
1736 | 1914 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">123</context></context-group> | |
1737 | 1915 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">136</context></context-group> | |
1738 | 1916 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">149</context></context-group> | |
1739 | 1917 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">164</context></context-group> | |
1740 | 1918 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">172</context></context-group> | |
1741 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">123</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">136</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">149</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">164</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">172</context></context-group></trans-unit> | 1919 | </trans-unit> |
1742 | <trans-unit id="2199290266269383925" datatype="html"> | 1920 | <trans-unit id="2199290266269383925" datatype="html"> |
1743 | <source>Display all categories</source> | 1921 | <source>Display all categories</source> |
1744 | <target state="translated">Alle categorieën tonen</target> | 1922 | <target state="translated">Alle categorieën tonen</target> |
1745 | 1923 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">127</context></context-group> | |
1746 | <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> | 1924 | </trans-unit> |
1747 | <trans-unit id="9065795501872450602"> | 1925 | <trans-unit id="9065795501872450602"> |
1748 | <source>Licence</source> | 1926 | <source>Licence</source> |
1749 | <target>Licentie</target> | 1927 | <target>Licentie</target> |
1750 | 1928 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">134</context></context-group> | |
1751 | 1929 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">74</context></context-group> | |
1752 | 1930 | <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> | |
1753 | <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">74</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> | 1931 | </trans-unit> |
1754 | <trans-unit id="4184995865179898060" datatype="html"> | 1932 | <trans-unit id="4184995865179898060" datatype="html"> |
1755 | <source>Display all licenses</source> | 1933 | <source>Display all licenses</source> |
1756 | <target state="translated">Alle licenties tonen</target> | 1934 | <target state="translated">Alle licenties tonen</target> |
1757 | 1935 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">140</context></context-group> | |
1758 | <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> | 1936 | </trans-unit> |
1759 | <trans-unit id="2826581353496868063"> | 1937 | <trans-unit id="2826581353496868063"> |
1760 | <source>Language</source> | 1938 | <source>Language</source> |
1761 | <target>Taal</target> | 1939 | <target>Taal</target> |
1762 | 1940 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">147</context></context-group> | |
1763 | 1941 | <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> | |
1764 | 1942 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">94</context></context-group> | |
1765 | 1943 | <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> | |
1766 | <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">94</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> | 1944 | </trans-unit> |
1767 | <trans-unit id="7904142744051432458" datatype="html"> | 1945 | <trans-unit id="7904142744051432458" datatype="html"> |
1768 | <source>Display all languages</source> | 1946 | <source>Display all languages</source> |
1769 | <target state="translated">Alle talen tonen</target> | 1947 | <target state="translated">Alle talen tonen</target> |
1770 | 1948 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">153</context></context-group> | |
1771 | <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> | 1949 | </trans-unit> |
1772 | <trans-unit id="2252476112877289102"> | 1950 | <trans-unit id="2252476112877289102"> |
1773 | <source>All of these tags</source> | 1951 | <source>All of these tags</source> |
1774 | <target>Al deze tags</target> | 1952 | <target>Al deze tags</target> |
1775 | 1953 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">162</context></context-group> | |
1776 | <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> | 1954 | </trans-unit> |
1777 | <trans-unit id="4413784616961145955"> | 1955 | <trans-unit id="4413784616961145955"> |
1778 | <source>One of these tags</source> | 1956 | <source>One of these tags</source> |
1779 | <target>Een van deze tags</target> | 1957 | <target>Een van deze tags</target> |
1780 | 1958 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">170</context></context-group> | |
1781 | <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"> | 1959 | </trans-unit> |
1782 | <source>PeerTube instance host</source><target state="new">PeerTube instance host</target> | 1960 | <trans-unit id="5143793904897598509" datatype="html"> |
1961 | <source>PeerTube instance host</source> | ||
1962 | <target state="new">PeerTube instance host</target> | ||
1783 | <context-group purpose="location"> | 1963 | <context-group purpose="location"> |
1784 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> | 1964 | <context context-type="sourcefile">src/app/+search/search-filters.component.html</context> |
1785 | <context context-type="linenumber">178</context> | 1965 | <context context-type="linenumber">178</context> |
@@ -1788,23 +1968,23 @@ Geen resultaten gevonden</target> | |||
1788 | <trans-unit id="283421392567624698" datatype="html"> | 1968 | <trans-unit id="283421392567624698" datatype="html"> |
1789 | <source>Search target</source> | 1969 | <source>Search target</source> |
1790 | <target state="translated">Doel doorzoeken</target> | 1970 | <target state="translated">Doel doorzoeken</target> |
1791 | 1971 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">187</context></context-group> | |
1792 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">187</context></context-group></trans-unit> | 1972 | </trans-unit> |
1793 | <trans-unit id="2489767671380266270" datatype="html"> | 1973 | <trans-unit id="2489767671380266270" datatype="html"> |
1794 | <source>Vidiverse</source> | 1974 | <source>Vidiverse</source> |
1795 | <target state="translated">Videoversum</target> | 1975 | <target state="translated">Videoversum</target> |
1796 | 1976 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">197</context></context-group> | |
1797 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">197</context></context-group></trans-unit> | 1977 | </trans-unit> |
1798 | <trans-unit id="5478121364779850827" datatype="html"> | 1978 | <trans-unit id="5478121364779850827" datatype="html"> |
1799 | <source>Reset</source> | 1979 | <source>Reset</source> |
1800 | <target state="translated">Reset</target> | 1980 | <target state="translated">Reset</target> |
1801 | 1981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">197</context></context-group> | |
1802 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">197</context></context-group></trans-unit> | 1982 | </trans-unit> |
1803 | <trans-unit id="8829497237648100098"> | 1983 | <trans-unit id="8829497237648100098"> |
1804 | <source>Filter</source> | 1984 | <source>Filter</source> |
1805 | <target>Filter</target> | 1985 | <target>Filter</target> |
1806 | 1986 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">208</context></context-group> | |
1807 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">208</context></context-group></trans-unit> | 1987 | </trans-unit> |
1808 | <trans-unit id="6479885129995567639" datatype="html"> | 1988 | <trans-unit id="6479885129995567639" datatype="html"> |
1809 | <source>Video channels</source> | 1989 | <source>Video channels</source> |
1810 | <target state="translated">Video-kanalen</target> | 1990 | <target state="translated">Video-kanalen</target> |
@@ -1839,9 +2019,9 @@ Dit zal een bestaande ondertiteling vervangen!</target> | |||
1839 | <trans-unit id="7886570921510760899"> | 2019 | <trans-unit id="7886570921510760899"> |
1840 | <source>Tags</source> | 2020 | <source>Tags</source> |
1841 | <target>Tags</target> | 2021 | <target>Tags</target> |
1842 | 2022 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">19</context></context-group> | |
1843 | 2023 | <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> | |
1844 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">19</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> | 2024 | </trans-unit> |
1845 | <trans-unit id="354332809647287722" datatype="html"> | 2025 | <trans-unit id="354332809647287722" datatype="html"> |
1846 | <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> | 2026 | <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> |
1847 | <target state="translated">Tags zou je kunnen gebruiken om relevante aanbevelingen te suggereren. <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> Er is een maximum van 5 tags. <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> Druk op <x id="START_TAG_KBD" ctype="x-kbd" equiv-text="<kbd>"/>Enter <x id="CLOSE_TAG_KBD" ctype="x-kbd" equiv-text="</kbd>"/> om een nieuwe tag toe te voegen. </target> | 2027 | <target state="translated">Tags zou je kunnen gebruiken om relevante aanbevelingen te suggereren. <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> Er is een maximum van 5 tags. <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> Druk op <x id="START_TAG_KBD" ctype="x-kbd" equiv-text="<kbd>"/>Enter <x id="CLOSE_TAG_KBD" ctype="x-kbd" equiv-text="</kbd>"/> om een nieuwe tag toe te voegen. </target> |
@@ -1855,67 +2035,96 @@ Dit zal een bestaande ondertiteling vervangen!</target> | |||
1855 | <trans-unit id="6179532215548637839" datatype="html"> | 2035 | <trans-unit id="6179532215548637839" datatype="html"> |
1856 | <source>extensions</source> | 2036 | <source>extensions</source> |
1857 | <target state="translated">uitbreidingen</target> | 2037 | <target state="translated">uitbreidingen</target> |
1858 | 2038 | <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> | |
1859 | <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><trans-unit id="8054921481196967348" datatype="html"> | 2039 | </trans-unit> |
1860 | <source>This image is too large.</source><target state="new">This image is too large.</target> | 2040 | <trans-unit id="8054921481196967348" datatype="html"> |
1861 | 2041 | <source>This image is too large.</source> | |
1862 | <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"> | 2042 | <target state="new">This image is too large.</target> |
1863 | <source>Upload a new banner</source><target state="new">Upload a new banner</target> | 2043 | <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> |
1864 | 2044 | <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> | |
1865 | 2045 | </trans-unit> | |
1866 | <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"> | 2046 | <trans-unit id="6259523075362402245" datatype="html"> |
1867 | <source>Change your banner</source><target state="new">Change your banner</target> | 2047 | <source>Upload a new banner</source> |
1868 | 2048 | <target state="new">Upload a new banner</target> | |
1869 | <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"> | 2049 | <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> |
1870 | <source>Remove banner</source><target state="new">Remove banner</target> | 2050 | <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> |
1871 | 2051 | </trans-unit> | |
1872 | <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"> | 2052 | <trans-unit id="1117672957968812680" datatype="html"> |
1873 | <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> | 2053 | <source>Change your banner</source> |
1874 | 2054 | <target state="new">Change your banner</target> | |
1875 | <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"> | 2055 | <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> |
1876 | <source>Account avatar</source><target state="new">Account avatar</target> | 2056 | </trans-unit> |
1877 | 2057 | <trans-unit id="3394080812181176794" datatype="html"> | |
1878 | <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"> | 2058 | <source>Remove banner</source> |
1879 | <source>Channel avatar</source><target state="new">Channel avatar</target> | 2059 | <target state="new">Remove banner</target> |
1880 | 2060 | <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> | |
1881 | <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"> | 2061 | </trans-unit> |
1882 | <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> | 2062 | <trans-unit id="7306351600905511107" datatype="html"> |
2063 | <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> | ||
2064 | <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> | ||
2065 | <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> | ||
2066 | </trans-unit> | ||
2067 | <trans-unit id="3220184757632006830" datatype="html"> | ||
2068 | <source>Account avatar</source> | ||
2069 | <target state="new">Account avatar</target> | ||
2070 | <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> | ||
2071 | </trans-unit> | ||
2072 | <trans-unit id="1138964882426023395" datatype="html"> | ||
2073 | <source>Channel avatar</source> | ||
2074 | <target state="new">Channel avatar</target> | ||
2075 | <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> | ||
2076 | </trans-unit> | ||
2077 | <trans-unit id="1358902062258458923" datatype="html"> | ||
2078 | <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> | ||
2079 | <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> | ||
1883 | <context-group purpose="location"> | 2080 | <context-group purpose="location"> |
1884 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/custom-markup-help.component.html</context> | 2081 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/custom-markup-help.component.html</context> |
1885 | <context context-type="linenumber">2</context> | 2082 | <context context-type="linenumber">2</context> |
1886 | </context-group> | 2083 | </context-group> |
1887 | </trans-unit><trans-unit id="7976591803735140601" datatype="html"> | 2084 | </trans-unit> |
1888 | <source>Latest published video</source><target state="new">Latest published video</target> | 2085 | <trans-unit id="7976591803735140601" datatype="html"> |
2086 | <source>Latest published video</source> | ||
2087 | <target state="new">Latest published video</target> | ||
1889 | <context-group purpose="location"> | 2088 | <context-group purpose="location"> |
1890 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context> | 2089 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.html</context> |
1891 | <context context-type="linenumber">24</context> | 2090 | <context context-type="linenumber">24</context> |
1892 | </context-group> | 2091 | </context-group> |
1893 | </trans-unit><trans-unit id="283609029522452529" datatype="html"> | 2092 | </trans-unit> |
1894 | <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> | 2093 | <trans-unit id="283609029522452529" datatype="html"> |
2094 | <source>Error in channel miniature component: <x id="PH" equiv-text="err.message"/></source> | ||
2095 | <target state="new">Error in channel miniature component: <x id="PH" equiv-text="err.message"/></target> | ||
1895 | <context-group purpose="location"> | 2096 | <context-group purpose="location"> |
1896 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts</context> | 2097 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts</context> |
1897 | <context context-type="linenumber">57</context> | 2098 | <context context-type="linenumber">57</context> |
1898 | </context-group> | 2099 | </context-group> |
1899 | </trans-unit><trans-unit id="3059355667050002541" datatype="html"> | 2100 | </trans-unit> |
1900 | <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> | 2101 | <trans-unit id="3059355667050002541" datatype="html"> |
2102 | <source>Error in playlist miniature component: <x id="PH" equiv-text="err.message"/></source> | ||
2103 | <target state="new">Error in playlist miniature component: <x id="PH" equiv-text="err.message"/></target> | ||
1901 | <context-group purpose="location"> | 2104 | <context-group purpose="location"> |
1902 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/playlist-miniature-markup.component.ts</context> | 2105 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/playlist-miniature-markup.component.ts</context> |
1903 | <context context-type="linenumber">47</context> | 2106 | <context context-type="linenumber">47</context> |
1904 | </context-group> | 2107 | </context-group> |
1905 | </trans-unit><trans-unit id="863691161959989717" datatype="html"> | 2108 | </trans-unit> |
1906 | <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> | 2109 | <trans-unit id="863691161959989717" datatype="html"> |
2110 | <source>Error in video miniature component: <x id="PH" equiv-text="err.message"/></source> | ||
2111 | <target state="new">Error in video miniature component: <x id="PH" equiv-text="err.message"/></target> | ||
1907 | <context-group purpose="location"> | 2112 | <context-group purpose="location"> |
1908 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts</context> | 2113 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts</context> |
1909 | <context context-type="linenumber">59</context> | 2114 | <context context-type="linenumber">59</context> |
1910 | </context-group> | 2115 | </context-group> |
1911 | </trans-unit><trans-unit id="1247256698916587400" datatype="html"> | 2116 | </trans-unit> |
1912 | <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> | 2117 | <trans-unit id="1247256698916587400" datatype="html"> |
2118 | <source>Error in videos list component: <x id="PH" equiv-text="err.message"/></source> | ||
2119 | <target state="new">Error in videos list component: <x id="PH" equiv-text="err.message"/></target> | ||
1913 | <context-group purpose="location"> | 2120 | <context-group purpose="location"> |
1914 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.ts</context> | 2121 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.ts</context> |
1915 | <context context-type="linenumber">77</context> | 2122 | <context context-type="linenumber">77</context> |
1916 | </context-group> | 2123 | </context-group> |
1917 | </trans-unit><trans-unit id="1460134385691851101" datatype="html"> | 2124 | </trans-unit> |
1918 | <source>Advanced filters</source><target state="new">Advanced filters</target> | 2125 | <trans-unit id="1460134385691851101" datatype="html"> |
2126 | <source>Advanced filters</source> | ||
2127 | <target state="new">Advanced filters</target> | ||
1919 | <context-group purpose="location"> | 2128 | <context-group purpose="location"> |
1920 | <context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.component.html</context> | 2129 | <context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.component.html</context> |
1921 | <context context-type="linenumber">8</context> | 2130 | <context context-type="linenumber">8</context> |
@@ -1929,73 +2138,73 @@ Dit zal een bestaande ondertiteling vervangen!</target> | |||
1929 | <trans-unit id="4902817035128594900"> | 2138 | <trans-unit id="4902817035128594900"> |
1930 | <source>Description</source> | 2139 | <source>Description</source> |
1931 | <target>Beschrijving</target> | 2140 | <target>Beschrijving</target> |
1932 | 2141 | <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> | |
1933 | 2142 | <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> | |
1934 | 2143 | <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> | |
1935 | 2144 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">71</context></context-group> | |
1936 | 2145 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">71</context></context-group> | |
1937 | 2146 | <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> | |
1938 | 2147 | <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> | |
1939 | 2148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">38</context></context-group> | |
1940 | <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/+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-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">71</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">71</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">38</context></context-group></trans-unit> | 2149 | </trans-unit> |
1941 | <trans-unit id="8740951153302736329" datatype="html"> | 2150 | <trans-unit id="8740951153302736329" datatype="html"> |
1942 | <source>Video descriptions are truncated by default and require manual action to expand them.</source> | 2151 | <source>Video descriptions are truncated by default and require manual action to expand them.</source> |
1943 | <target state="translated">Video-beschrijvingen worden standaard afgekapt en vereisen handmatig tussenkomen om ze uit te vouwen.</target> | 2152 | <target state="translated">Video-beschrijvingen worden standaard afgekapt en vereisen handmatig tussenkomen om ze uit te vouwen.</target> |
1944 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">43</context></context-group> | 2153 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">43</context></context-group> |
1945 | </trans-unit><trans-unit id="2090254132451149776" datatype="html"> | 2154 | </trans-unit> |
1946 | <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> | 2155 | <trans-unit id="2090254132451149776" datatype="html"> |
2156 | <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> | ||
2157 | <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> | ||
1947 | <context-group purpose="location"> | 2158 | <context-group purpose="location"> |
1948 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> | 2159 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> |
1949 | <context context-type="linenumber">79,80</context> | 2160 | <context context-type="linenumber">79,80</context> |
1950 | </context-group> | 2161 | </context-group> |
1951 | </trans-unit> | 2162 | </trans-unit> |
1952 | |||
1953 | <trans-unit id="5462361983940693567"> | 2163 | <trans-unit id="5462361983940693567"> |
1954 | <source>Channel</source> | 2164 | <source>Channel</source> |
1955 | <target>Kanaal</target> | 2165 | <target>Kanaal</target> |
1956 | 2166 | <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> | |
1957 | 2167 | <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> | |
1958 | 2168 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">34</context></context-group> | |
1959 | 2169 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">58</context></context-group> | |
1960 | 2170 | <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> | |
1961 | 2171 | <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> | |
1962 | 2172 | <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> | |
1963 | 2173 | <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> | |
1964 | 2174 | </trans-unit> | |
1965 | |||
1966 | <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">34</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">58</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> | ||
1967 | <trans-unit id="8440128775129354214"> | 2175 | <trans-unit id="8440128775129354214"> |
1968 | <source>Privacy</source> | 2176 | <source>Privacy</source> |
1969 | <target>Privacy</target> | 2177 | <target>Privacy</target> |
1970 | 2178 | <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> | |
1971 | 2179 | <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> | |
1972 | 2180 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">106</context></context-group> | |
1973 | 2181 | <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> | |
1974 | 2182 | <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> | |
1975 | 2183 | <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> | |
1976 | 2184 | <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> | |
1977 | 2185 | <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> | |
1978 | <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">106</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> | 2186 | <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> |
2187 | </trans-unit> | ||
1979 | <trans-unit id="2806917038528218276" datatype="html"> | 2188 | <trans-unit id="2806917038528218276" datatype="html"> |
1980 | <source>FAQ</source> | 2189 | <source>FAQ</source> |
1981 | <target state="translated">Vaak gestelde vragen</target> | 2190 | <target state="translated">Vaak gestelde vragen</target> |
1982 | 2191 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">138</context></context-group> | |
1983 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">138</context></context-group></trans-unit> | 2192 | </trans-unit> |
1984 | <trans-unit id="3620232640697554352" datatype="html"> | 2193 | <trans-unit id="3620232640697554352" datatype="html"> |
1985 | <source>Frequently asked questions about PeerTube</source> | 2194 | <source>Frequently asked questions about PeerTube</source> |
1986 | <target state="translated">Veelgestelde vragen over PeerTube</target> | 2195 | <target state="translated">Veelgestelde vragen over PeerTube</target> |
1987 | 2196 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">138</context></context-group> | |
1988 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">138</context></context-group></trans-unit> | 2197 | </trans-unit> |
1989 | <trans-unit id="8942351587754185907" datatype="html"> | 2198 | <trans-unit id="8942351587754185907" datatype="html"> |
1990 | <source>API</source> | 2199 | <source>API</source> |
1991 | <target state="translated">API</target> | 2200 | <target state="translated">API</target> |
1992 | 2201 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group> | |
1993 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 2202 | </trans-unit> |
1994 | <trans-unit id="3722967224215437913" datatype="html"> | 2203 | <trans-unit id="3722967224215437913" datatype="html"> |
1995 | <source>API documentation</source> | 2204 | <source>API documentation</source> |
1996 | <target state="translated">API-documentatie</target> | 2205 | <target state="translated">API-documentatie</target> |
1997 | 2206 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group> | |
1998 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 2207 | </trans-unit> |
1999 | <trans-unit id="9012879216268259096"> | 2208 | <trans-unit id="9012879216268259096"> |
2000 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 2209 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
2001 | <target>Publicatie plannen op ( <x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target> | 2210 | <target>Publicatie plannen op ( <x id="INTERPOLATION" equiv-text="{{ calendarTimezone }}"/>)</target> |
@@ -2005,14 +2214,15 @@ Dit zal een bestaande ondertiteling vervangen!</target> | |||
2005 | <source>Contains sensitive content</source> | 2214 | <source>Contains sensitive content</source> |
2006 | <target state="translated">Bevat gevoelige inhoud</target> | 2215 | <target state="translated">Bevat gevoelige inhoud</target> |
2007 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">131</context></context-group> | 2216 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">131</context></context-group> |
2008 | </trans-unit><trans-unit id="4850841867094321899" datatype="html"> | 2217 | </trans-unit> |
2009 | <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> | 2218 | <trans-unit id="4850841867094321899" datatype="html"> |
2219 | <source>Some instances hide videos containing mature or explicit content by default.</source> | ||
2220 | <target state="new">Some instances hide videos containing mature or explicit content by default.</target> | ||
2010 | <context-group purpose="location"> | 2221 | <context-group purpose="location"> |
2011 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> | 2222 | <context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context> |
2012 | <context context-type="linenumber">135</context> | 2223 | <context context-type="linenumber">135</context> |
2013 | </context-group> | 2224 | </context-group> |
2014 | </trans-unit> | 2225 | </trans-unit> |
2015 | |||
2016 | <trans-unit id="4895908242997839943" datatype="html"> | 2226 | <trans-unit id="4895908242997839943" datatype="html"> |
2017 | <source>Publish after transcoding</source> | 2227 | <source>Publish after transcoding</source> |
2018 | <target state="translated">Publiceren na transcoderen</target> | 2228 | <target state="translated">Publiceren na transcoderen</target> |
@@ -2097,8 +2307,10 @@ Geen ondertiteling voor nu.</target> | |||
2097 | <trans-unit id="2602773901491715295"> | 2307 | <trans-unit id="2602773901491715295"> |
2098 | <source>Captions</source> | 2308 | <source>Captions</source> |
2099 | <target>Ondertiteling</target> | 2309 | <target>Ondertiteling</target> |
2100 | 2310 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">155</context></context-group> | |
2101 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">155</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">181</context></context-group></trans-unit> | 2311 | <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> |
2312 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">181</context></context-group> | ||
2313 | </trans-unit> | ||
2102 | <trans-unit id="1168086599577356916"> | 2314 | <trans-unit id="1168086599577356916"> |
2103 | <source>Video preview</source> | 2315 | <source>Video preview</source> |
2104 | <target>Video voorvertoning</target> | 2316 | <target>Video voorvertoning</target> |
@@ -2107,49 +2319,67 @@ Geen ondertiteling voor nu.</target> | |||
2107 | <trans-unit id="2288513108450439427"> | 2319 | <trans-unit id="2288513108450439427"> |
2108 | <source>Support</source> | 2320 | <source>Support</source> |
2109 | <target>Ondersteun</target> | 2321 | <target>Ondersteun</target> |
2110 | 2322 | <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> | |
2111 | <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">276</context></context-group></trans-unit><trans-unit id="1359533927353954373" datatype="html"> | 2323 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">276</context></context-group> |
2112 | <source>View account</source><target state="new">View account</target> | 2324 | </trans-unit> |
2113 | 2325 | <trans-unit id="1359533927353954373" datatype="html"> | |
2114 | 2326 | <source>View account</source> | |
2115 | <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"> | 2327 | <target state="new">View account</target> |
2116 | <source> View account </source><target state="new"> View account </target> | 2328 | <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> |
2329 | </trans-unit> | ||
2330 | <trans-unit id="3799746968259478616" datatype="html"> | ||
2331 | <source>View account</source> | ||
2332 | <target state="new"> View account </target> | ||
2117 | <context-group purpose="location"> | 2333 | <context-group purpose="location"> |
2118 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> | 2334 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> |
2119 | <context context-type="linenumber">42,43</context> | 2335 | <context context-type="linenumber">42,43</context> |
2120 | </context-group> | 2336 | </context-group> |
2121 | </trans-unit><trans-unit id="6778225321073009261" datatype="html"> | 2337 | </trans-unit> |
2122 | <source> View owner account </source><target state="new"> View owner account </target> | 2338 | <trans-unit id="6778225321073009261" datatype="html"> |
2339 | <source>View owner account</source> | ||
2340 | <target state="new"> View owner account </target> | ||
2123 | <context-group purpose="location"> | 2341 | <context-group purpose="location"> |
2124 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> | 2342 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> |
2125 | <context context-type="linenumber">46,47</context> | 2343 | <context context-type="linenumber">46,47</context> |
2126 | </context-group> | 2344 | </context-group> |
2127 | </trans-unit><trans-unit id="8798391261676185924" datatype="html"> | 2345 | </trans-unit> |
2128 | <source>VIDEO CHANNEL</source><target state="new">VIDEO CHANNEL</target> | 2346 | <trans-unit id="8798391261676185924" datatype="html"> |
2347 | <source>VIDEO CHANNEL</source> | ||
2348 | <target state="new">VIDEO CHANNEL</target> | ||
2129 | <context-group purpose="location"> | 2349 | <context-group purpose="location"> |
2130 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> | 2350 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> |
2131 | <context context-type="linenumber">55</context> | 2351 | <context context-type="linenumber">55</context> |
2132 | </context-group> | 2352 | </context-group> |
2133 | </trans-unit><trans-unit id="5121874940679887597" datatype="html"> | 2353 | </trans-unit> |
2134 | <source>Copy channel handle</source><target state="new">Copy channel handle</target> | 2354 | <trans-unit id="5121874940679887597" datatype="html"> |
2355 | <source>Copy channel handle</source> | ||
2356 | <target state="new">Copy channel handle</target> | ||
2135 | <context-group purpose="location"> | 2357 | <context-group purpose="location"> |
2136 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> | 2358 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> |
2137 | <context context-type="linenumber">66</context> | 2359 | <context context-type="linenumber">66</context> |
2138 | </context-group> | 2360 | </context-group> |
2139 | </trans-unit><trans-unit id="3068011377000255023" datatype="html"> | 2361 | </trans-unit> |
2140 | <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> | 2362 | <trans-unit id="3068011377000255023" datatype="html"> |
2141 | 2363 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> | |
2142 | <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">41</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">76</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"> | 2364 | <target state="new">{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</target> |
2143 | <source> <x id="ICU" equiv-text="{channelVideosCount, plural, =1 {1 videos} other {{{ channelVideosCount }} videos}}"/> </source><target state="new"> <x id="ICU" equiv-text="{channelVideosCount, plural, =1 {1 videos} other {{{ channelVideosCount }} videos}}"/> </target> | 2365 | <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> |
2366 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">41</context></context-group> | ||
2367 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">76</context></context-group> | ||
2368 | <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> | ||
2369 | </trans-unit> | ||
2370 | <trans-unit id="8856905278208146821" datatype="html"> | ||
2371 | <source><x id="ICU" equiv-text="{channelVideosCount, plural, =1 {1 videos} other {{{ channelVideosCount }} videos}}"/> </source> | ||
2372 | <target state="new"> <x id="ICU" equiv-text="{channelVideosCount, plural, =1 {1 videos} other {{{ channelVideosCount }} videos}}"/> </target> | ||
2144 | <context-group purpose="location"> | 2373 | <context-group purpose="location"> |
2145 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> | 2374 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> |
2146 | <context context-type="linenumber">76,77</context> | 2375 | <context context-type="linenumber">76,77</context> |
2147 | </context-group> | 2376 | </context-group> |
2148 | </trans-unit><trans-unit id="2486917589932345430" datatype="html"> | 2377 | </trans-unit> |
2149 | <source>OWNER ACCOUNT</source><target state="new">OWNER ACCOUNT</target> | 2378 | <trans-unit id="2486917589932345430" datatype="html"> |
2150 | 2379 | <source>OWNER ACCOUNT</source> | |
2151 | 2380 | <target state="new">OWNER ACCOUNT</target> | |
2152 | <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> | 2381 | <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> |
2382 | </trans-unit> | ||
2153 | <trans-unit id="1952020204339597057" datatype="html"> | 2383 | <trans-unit id="1952020204339597057" datatype="html"> |
2154 | <source>Short text to tell people how they can support you (membership platform...).</source> | 2384 | <source>Short text to tell people how they can support you (membership platform...).</source> |
2155 | <target state="translated">Korte tekst om mensen uit te leggen hoe ze je kunnen ondersteunen (ledenplatform, ...).</target> | 2385 | <target state="translated">Korte tekst om mensen uit te leggen hoe ze je kunnen ondersteunen (ledenplatform, ...).</target> |
@@ -2200,11 +2430,11 @@ Geen ondertiteling voor nu.</target> | |||
2200 | <trans-unit id="460353452916242022"> | 2430 | <trans-unit id="460353452916242022"> |
2201 | <source>Sorry, but something went wrong</source> | 2431 | <source>Sorry, but something went wrong</source> |
2202 | <target>Sorry, er is iets fout gegaan</target> | 2432 | <target>Sorry, er is iets fout gegaan</target> |
2203 | 2433 | <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">26</context></context-group> | |
2204 | 2434 | <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> | |
2205 | 2435 | <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> | |
2206 | 2436 | <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> | |
2207 | <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">26</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> | 2437 | </trans-unit> |
2208 | <trans-unit id="5359075917564707730"> | 2438 | <trans-unit id="5359075917564707730"> |
2209 | <source>Congratulations, the video behind <x id="INTERPOLATION"/> will be imported! You can already add information about this video. </source> | 2439 | <source>Congratulations, the video behind <x id="INTERPOLATION"/> will be imported! You can already add information about this video. </source> |
2210 | <target> | 2440 | <target> |
@@ -2218,12 +2448,17 @@ Gefeliciteerd, de video achter | |||
2218 | <trans-unit id="4021752662928002901"> | 2448 | <trans-unit id="4021752662928002901"> |
2219 | <source>Update</source> | 2449 | <source>Update</source> |
2220 | <target>Bijwerken</target> | 2450 | <target>Bijwerken</target> |
2221 | 2451 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">180</context></context-group> | |
2222 | 2452 | <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> | |
2223 | 2453 | <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">45</context></context-group> | |
2224 | 2454 | <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> | |
2225 | 2455 | <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> | |
2226 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">180</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">45</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">18</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">284</context></context-group></trans-unit> | 2456 | <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> |
2457 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.html</context><context context-type="linenumber">18</context></context-group> | ||
2458 | <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> | ||
2459 | <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> | ||
2460 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">284</context></context-group> | ||
2461 | </trans-unit> | ||
2227 | <trans-unit id="6722765664648523978"> | 2462 | <trans-unit id="6722765664648523978"> |
2228 | <source>Select the file to upload</source> | 2463 | <source>Select the file to upload</source> |
2229 | <target>Selecteer het bestand om te uploaden</target> | 2464 | <target>Selecteer het bestand om te uploaden</target> |
@@ -2233,18 +2468,18 @@ Gefeliciteerd, de video achter | |||
2233 | <trans-unit id="9172233176401579786"> | 2468 | <trans-unit id="9172233176401579786"> |
2234 | <source>Scheduled</source> | 2469 | <source>Scheduled</source> |
2235 | <target>Ingeroosterd</target> | 2470 | <target>Ingeroosterd</target> |
2236 | 2471 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">192</context></context-group> | |
2237 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">192</context></context-group></trans-unit> | 2472 | </trans-unit> |
2238 | <trans-unit id="1435317307066082710" datatype="html"> | 2473 | <trans-unit id="1435317307066082710" datatype="html"> |
2239 | <source>Hide the video until a specific date</source> | 2474 | <source>Hide the video until a specific date</source> |
2240 | <target state="translated">De video verbergen tot een specifieke datum</target> | 2475 | <target state="translated">De video verbergen tot een specifieke datum</target> |
2241 | 2476 | <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> | |
2242 | <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> | 2477 | </trans-unit> |
2243 | <trans-unit id="6148369758871787018"> | 2478 | <trans-unit id="6148369758871787018"> |
2244 | <source>Video background image</source> | 2479 | <source>Video background image</source> |
2245 | <target>Video achtergrondafbeelding</target> | 2480 | <target>Video achtergrondafbeelding</target> |
2246 | 2481 | <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> | |
2247 | <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> | 2482 | </trans-unit> |
2248 | <trans-unit id="7099631707196015765"> | 2483 | <trans-unit id="7099631707196015765"> |
2249 | <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> | 2484 | <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> |
2250 | <target> | 2485 | <target> |
@@ -2254,69 +2489,77 @@ Gefeliciteerd, de video achter | |||
2254 | De gekozen afbeelding is definitief en kan niet worden gewijzigd. | 2489 | De gekozen afbeelding is definitief en kan niet worden gewijzigd. |
2255 | 2490 | ||
2256 | </target> | 2491 | </target> |
2257 | 2492 | <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">37</context></context-group> | |
2258 | <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">37</context></context-group></trans-unit> | 2493 | </trans-unit> |
2259 | <trans-unit id="4626927731329688072" datatype="html"> | 2494 | <trans-unit id="4626927731329688072" datatype="html"> |
2260 | <source>Total video uploaded</source> | 2495 | <source>Total video uploaded</source> |
2261 | <target state="translated">Totaal aantal geuploade videos</target> | 2496 | <target state="translated">Totaal aantal geuploade videos</target> |
2262 | 2497 | <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> | |
2263 | <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> | 2498 | </trans-unit> |
2264 | <trans-unit id="1185207825965405436" datatype="html"> | 2499 | <trans-unit id="1185207825965405436" datatype="html"> |
2265 | <source>Processing…</source> | 2500 | <source>Processing…</source> |
2266 | <target state="translated">Verwerken…</target> | 2501 | <target state="translated">Verwerken…</target> |
2267 | 2502 | <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> | |
2268 | <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> | 2503 | </trans-unit> |
2269 | <trans-unit id="7934833136974560675" datatype="html"> | 2504 | <trans-unit id="7934833136974560675" datatype="html"> |
2270 | <source>Retry</source> | 2505 | <source>Retry</source> |
2271 | <target state="translated">Opnieuw proberen</target> | 2506 | <target state="translated">Opnieuw proberen</target> |
2272 | <note priority="1" from="description">Retry failed upload of a video</note> | 2507 | <note priority="1" from="description">Retry failed upload of a video</note> |
2273 | 2508 | <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> | |
2274 | <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> | 2509 | </trans-unit> |
2275 | <trans-unit id="2127094963121208963" datatype="html"> | 2510 | <trans-unit id="2127094963121208963" datatype="html"> |
2276 | <source>Total video quota</source> | 2511 | <source>Total video quota</source> |
2277 | <target state="translated">Totaal video-quotum</target> | 2512 | <target state="translated">Totaal video-quotum</target> |
2278 | 2513 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">119</context></context-group> | |
2279 | 2514 | <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> | |
2280 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">119</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> | 2515 | </trans-unit> |
2281 | <trans-unit id="1522676094837508187"> | 2516 | <trans-unit id="1522676094837508187"> |
2282 | <source>Congratulations! Your video is now available in your private library.</source> | 2517 | <source>Congratulations! Your video is now available in your private library.</source> |
2283 | <target> | 2518 | <target> |
2284 | Gefeliciteerd! Jouw video is nu beschikbaar in je privébibliotheek. | 2519 | Gefeliciteerd! Jouw video is nu beschikbaar in je privébibliotheek. |
2285 | </target> | 2520 | </target> |
2286 | 2521 | <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">91</context></context-group> | |
2287 | <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">91</context></context-group></trans-unit> | 2522 | </trans-unit> |
2288 | <trans-unit id="3768339632235914548"> | 2523 | <trans-unit id="3768339632235914548"> |
2289 | <source>Publish will be available when upload is finished</source> | 2524 | <source>Publish will be available when upload is finished</source> |
2290 | <target>Publiceren is mogelijk wanneer de upload voltooid is</target> | 2525 | <target>Publiceren is mogelijk wanneer de upload voltooid is</target> |
2291 | 2526 | <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> | |
2292 | <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> | 2527 | </trans-unit> |
2293 | <trans-unit id="7430416142942514215"> | 2528 | <trans-unit id="7430416142942514215"> |
2294 | <source>Publish</source> | 2529 | <source>Publish</source> |
2295 | <target>Publiceren</target> | 2530 | <target>Publiceren</target> |
2531 | <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> | ||
2532 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/header.component.html</context><context context-type="linenumber">5</context></context-group> | ||
2533 | </trans-unit> | ||
2534 | <trans-unit id="6161604372916832458" datatype="html"> | ||
2535 | <source>Upload on hold</source> | ||
2536 | <target state="new">Upload on hold</target> | ||
2296 | 2537 | ||
2297 | 2538 | <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">174</context></context-group></trans-unit> | |
2298 | <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"> | ||
2299 | <source>Upload on hold</source><target state="new">Upload on hold</target> | ||
2300 | |||
2301 | <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">167</context></context-group></trans-unit> | ||
2302 | <trans-unit id="285180972645018518" datatype="html"> | 2539 | <trans-unit id="285180972645018518" datatype="html"> |
2303 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2540 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2304 | <target state="translated">Sorry, uploaden is uitgeschakeld voor je account. Als je een video wil toevoegen, dan moet een beheerder je quotum ontgrendelen.</target> | 2541 | <target state="translated">Sorry, uploaden is uitgeschakeld voor je account. Als je een video wil toevoegen, dan moet een beheerder je quotum ontgrendelen.</target> |
2305 | 2542 | <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> | |
2306 | <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"> | 2543 | </trans-unit> |
2307 | <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> | 2544 | <trans-unit id="1138810463037464722" datatype="html"> |
2545 | <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> | ||
2546 | <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> | ||
2308 | <context-group purpose="location"> | 2547 | <context-group purpose="location"> |
2309 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 2548 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
2310 | <context context-type="linenumber">104</context> | 2549 | <context context-type="linenumber">104</context> |
2311 | </context-group> | 2550 | </context-group> |
2312 | </trans-unit><trans-unit id="438743381693904838" datatype="html"> | 2551 | </trans-unit> |
2313 | <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> | 2552 | <trans-unit id="438743381693904838" datatype="html"> |
2553 | <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> | ||
2554 | <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> | ||
2314 | <context-group purpose="location"> | 2555 | <context-group purpose="location"> |
2315 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 2556 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
2316 | <context context-type="linenumber">106</context> | 2557 | <context context-type="linenumber">106</context> |
2317 | </context-group> | 2558 | </context-group> |
2318 | </trans-unit><trans-unit id="6796692581512042469" datatype="html"> | 2559 | </trans-unit> |
2319 | <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> | 2560 | <trans-unit id="6796692581512042469" datatype="html"> |
2561 | <source>Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.</source> | ||
2562 | <target state="new">Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.</target> | ||
2320 | <context-group purpose="location"> | 2563 | <context-group purpose="location"> |
2321 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 2564 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
2322 | <context context-type="linenumber">108</context> | 2565 | <context context-type="linenumber">108</context> |
@@ -2325,8 +2568,8 @@ Gefeliciteerd, de video achter | |||
2325 | <trans-unit id="2587226585711833549" datatype="html"> | 2568 | <trans-unit id="2587226585711833549" datatype="html"> |
2326 | <source>Read instance rules for help</source> | 2569 | <source>Read instance rules for help</source> |
2327 | <target state="translated">De regels van dit exemplaar van PeerTube lezen voor hulp</target> | 2570 | <target state="translated">De regels van dit exemplaar van PeerTube lezen voor hulp</target> |
2328 | 2571 | <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> | |
2329 | <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> | 2572 | </trans-unit> |
2330 | <trans-unit id="3455474330346212563"> | 2573 | <trans-unit id="3455474330346212563"> |
2331 | <source>Select the torrent to import</source> | 2574 | <source>Select the torrent to import</source> |
2332 | <target>Selecteer de torrent om te importeren</target> | 2575 | <target>Selecteer de torrent om te importeren</target> |
@@ -2351,25 +2594,27 @@ Je kan nu al informatie toevoegen over deze video. | |||
2351 | 2594 | ||
2352 | </target> | 2595 | </target> |
2353 | <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">56</context></context-group> | 2596 | <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">56</context></context-group> |
2354 | </trans-unit><trans-unit id="4422946962830681102" datatype="html"> | 2597 | </trans-unit> |
2355 | <source>Torrents with only 1 file are supported.</source><target state="new">Torrents with only 1 file are supported.</target> | 2598 | <trans-unit id="4422946962830681102" datatype="html"> |
2356 | 2599 | <source>Torrents with only 1 file are supported.</source> | |
2357 | <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">120</context></context-group></trans-unit> | 2600 | <target state="new">Torrents with only 1 file are supported.</target> |
2601 | <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">120</context></context-group> | ||
2602 | </trans-unit> | ||
2358 | <trans-unit id="7860848084471862305" datatype="html"> | 2603 | <trans-unit id="7860848084471862305" datatype="html"> |
2359 | <source>Cannot create live because this instance have too many created lives</source> | 2604 | <source>Cannot create live because this instance have too many created lives</source> |
2360 | <target state="translated">Live-uitzending aanmaken niet mogelijk door te veel live-uitzendingen op dit exemplaar van PeerTube</target> | 2605 | <target state="translated">Live-uitzending aanmaken niet mogelijk door te veel live-uitzendingen op dit exemplaar van PeerTube</target> |
2361 | 2606 | <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">101</context></context-group> | |
2362 | <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">101</context></context-group></trans-unit> | 2607 | </trans-unit> |
2363 | <trans-unit id="1278564497286613571" datatype="html"> | 2608 | <trans-unit id="1278564497286613571" datatype="html"> |
2364 | <source>Cannot create live because you created too many lives</source> | 2609 | <source>Cannot create live because you created too many lives</source> |
2365 | <target state="translated">Live-uitzending niet mogelijk omdat je te veel live-uitzendingen aangemaakt hebt</target> | 2610 | <target state="translated">Live-uitzending niet mogelijk omdat je te veel live-uitzendingen aangemaakt hebt</target> |
2366 | 2611 | <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> | |
2367 | <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> | 2612 | </trans-unit> |
2368 | <trans-unit id="2621043320678012413" datatype="html"> | 2613 | <trans-unit id="2621043320678012413" datatype="html"> |
2369 | <source>Live published.</source> | 2614 | <source>Live published.</source> |
2370 | <target state="translated">Live-uitzending gepubliceerd.</target> | 2615 | <target state="translated">Live-uitzending gepubliceerd.</target> |
2371 | 2616 | <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> | |
2372 | <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> | 2617 | </trans-unit> |
2373 | <trans-unit id="8218579597782287078" datatype="html"> | 2618 | <trans-unit id="8218579597782287078" datatype="html"> |
2374 | <source>Go Live</source> | 2619 | <source>Go Live</source> |
2375 | <target state="translated">Live gaan</target> | 2620 | <target state="translated">Live gaan</target> |
@@ -2383,53 +2628,53 @@ Je kan nu al informatie toevoegen over deze video. | |||
2383 | <trans-unit id="2993949426196989262" datatype="html"> | 2628 | <trans-unit id="2993949426196989262" datatype="html"> |
2384 | <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> | 2629 | <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> |
2385 | <target state="translated">We raden je aan je video's niet als gebruiker <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>root <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> te publiceren. Dat is immers de superbeheerder van je exemplaar van PeerTube. <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> Je kan beter <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>een andere account aanmaken<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> om je video's te uploaden. </target> | 2630 | <target state="translated">We raden je aan je video's niet als gebruiker <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>root <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> te publiceren. Dat is immers de superbeheerder van je exemplaar van PeerTube. <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> Je kan beter <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>een andere account aanmaken<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> om je video's te uploaden. </target> |
2386 | 2631 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">34</context></context-group> | |
2387 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 2632 | </trans-unit> |
2388 | <trans-unit id="293476877021544115"> | 2633 | <trans-unit id="293476877021544115"> |
2389 | <source>Import <x id="INTERPOLATION"/></source> | 2634 | <source>Import <x id="INTERPOLATION"/></source> |
2390 | <target><x id="INTERPOLATION" equiv-text="{{ videoName }}"/> importeren</target> | 2635 | <target><x id="INTERPOLATION" equiv-text="{{ videoName }}"/> importeren</target> |
2391 | 2636 | <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> | |
2392 | <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> | 2637 | </trans-unit> |
2393 | <trans-unit id="4766833966971572147"> | 2638 | <trans-unit id="4766833966971572147"> |
2394 | <source>Upload <x id="INTERPOLATION"/></source> | 2639 | <source>Upload <x id="INTERPOLATION"/></source> |
2395 | <target><x id="INTERPOLATION" equiv-text="{{ videoName }}"/> uploaden</target> | 2640 | <target><x id="INTERPOLATION" equiv-text="{{ videoName }}"/> uploaden</target> |
2396 | 2641 | <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> | |
2397 | <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> | 2642 | </trans-unit> |
2398 | <trans-unit id="7003826819757856838"> | 2643 | <trans-unit id="7003826819757856838"> |
2399 | <source>Upload a file</source> | 2644 | <source>Upload a file</source> |
2400 | <target>Upload een bestand</target> | 2645 | <target>Upload een bestand</target> |
2401 | 2646 | <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> | |
2402 | <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> | 2647 | </trans-unit> |
2403 | <trans-unit id="2061223017941329156"> | 2648 | <trans-unit id="2061223017941329156"> |
2404 | <source>Import with URL</source> | 2649 | <source>Import with URL</source> |
2405 | <target>Importeer met URL</target> | 2650 | <target>Importeer met URL</target> |
2406 | 2651 | <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> | |
2407 | <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> | 2652 | </trans-unit> |
2408 | <trans-unit id="8740142697043012403"> | 2653 | <trans-unit id="8740142697043012403"> |
2409 | <source>Import with torrent</source> | 2654 | <source>Import with torrent</source> |
2410 | <target>Importeer met torrent</target> | 2655 | <target>Importeer met torrent</target> |
2411 | 2656 | <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> | |
2412 | <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> | 2657 | </trans-unit> |
2413 | <trans-unit id="6066940329544282265" datatype="html"> | 2658 | <trans-unit id="6066940329544282265" datatype="html"> |
2414 | <source>Go live</source> | 2659 | <source>Go live</source> |
2415 | <target state="translated">Live gaan</target> | 2660 | <target state="translated">Live gaan</target> |
2416 | 2661 | <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> | |
2417 | <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> | 2662 | </trans-unit> |
2418 | <trans-unit id="3907889591911208762" datatype="html"> | 2663 | <trans-unit id="3907889591911208762" datatype="html"> |
2419 | <source>Other videos</source> | 2664 | <source>Other videos</source> |
2420 | <target state="translated">Andere video's</target> | 2665 | <target state="translated">Andere video's</target> |
2421 | 2666 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html</context><context context-type="linenumber">5</context></context-group> | |
2422 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.html</context><context context-type="linenumber">5</context></context-group></trans-unit> | 2667 | </trans-unit> |
2423 | <trans-unit id="2913936134410914576" datatype="html"> | 2668 | <trans-unit id="2913936134410914576" datatype="html"> |
2424 | <source>AUTOPLAY</source> | 2669 | <source>AUTOPLAY</source> |
2425 | <target state="translated">AUTOMATISCH AFSPELEN</target> | 2670 | <target state="translated">AUTOMATISCH AFSPELEN</target> |
2426 | 2671 | <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> | |
2427 | <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> | 2672 | </trans-unit> |
2428 | <trans-unit id="4619111912751495491" datatype="html"> | 2673 | <trans-unit id="4619111912751495491" datatype="html"> |
2429 | <source>Report this comment</source> | 2674 | <source>Report this comment</source> |
2430 | <target state="translated">Deze reactie melden</target> | 2675 | <target state="translated">Deze reactie melden</target> |
2431 | 2676 | <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> | |
2432 | <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> | 2677 | </trans-unit> |
2433 | <trans-unit id="7419704019640008953"> | 2678 | <trans-unit id="7419704019640008953"> |
2434 | <source>Share</source> | 2679 | <source>Share</source> |
2435 | <target>Delen</target> | 2680 | <target>Delen</target> |
@@ -2483,8 +2728,10 @@ Je kan nu al informatie toevoegen over deze video. | |||
2483 | <source>Less customization</source> | 2728 | <source>Less customization</source> |
2484 | <target state="translated">Minder aanpassingen</target> | 2729 | <target state="translated">Minder aanpassingen</target> |
2485 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">231</context></context-group> | 2730 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">231</context></context-group> |
2486 | </trans-unit><trans-unit id="1290987288288099212" datatype="html"> | 2731 | </trans-unit> |
2487 | <source>Support <x id="INTERPOLATION" equiv-text="{{ displayName }}"/></source><target state="new">Support <x id="INTERPOLATION" equiv-text="{{ displayName }}"/></target> | 2732 | <trans-unit id="1290987288288099212" datatype="html"> |
2733 | <source>Support <x id="INTERPOLATION" equiv-text="{{ displayName }}"/></source> | ||
2734 | <target state="new">Support <x id="INTERPOLATION" equiv-text="{{ displayName }}"/></target> | ||
2488 | <context-group purpose="location"> | 2735 | <context-group purpose="location"> |
2489 | <context context-type="sourcefile">src/app/shared/shared-support-modal/support-modal.component.html</context> | 2736 | <context context-type="sourcefile">src/app/shared/shared-support-modal/support-modal.component.html</context> |
2490 | <context context-type="linenumber">3</context> | 2737 | <context context-type="linenumber">3</context> |
@@ -2500,18 +2747,17 @@ Je kan nu al informatie toevoegen over deze video. | |||
2500 | <target>Automatisch afspelen</target> | 2747 | <target>Automatisch afspelen</target> |
2501 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">159</context></context-group> | 2748 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">159</context></context-group> |
2502 | </trans-unit> | 2749 | </trans-unit> |
2503 | |||
2504 | <trans-unit id="5336944753883027145" datatype="html"> | 2750 | <trans-unit id="5336944753883027145" datatype="html"> |
2505 | <source>Maybe later</source> | 2751 | <source>Maybe later</source> |
2506 | <target state="translated">Misschien later</target> | 2752 | <target state="translated">Misschien later</target> |
2507 | 2753 | <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> | |
2508 | <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> | 2754 | </trans-unit> |
2509 | <trans-unit id="3959826834147169200"> | 2755 | <trans-unit id="3959826834147169200"> |
2510 | <source>Muted</source> | 2756 | <source>Muted</source> |
2511 | <target>Gedempt</target> | 2757 | <target>Gedempt</target> |
2512 | 2758 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">22</context></context-group> | |
2513 | 2759 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">166</context></context-group> | |
2514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">22</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">166</context></context-group></trans-unit> | 2760 | </trans-unit> |
2515 | <trans-unit id="2784956659778044823"> | 2761 | <trans-unit id="2784956659778044823"> |
2516 | <source>Loop</source> | 2762 | <source>Loop</source> |
2517 | <target>Lus</target> | 2763 | <target>Lus</target> |
@@ -2545,64 +2791,58 @@ Je kan nu al informatie toevoegen over deze video. | |||
2545 | <trans-unit id="8928816882866356838"> | 2791 | <trans-unit id="8928816882866356838"> |
2546 | <source>Public</source> | 2792 | <source>Public</source> |
2547 | <target>Openbaar</target> | 2793 | <target>Openbaar</target> |
2548 | 2794 | <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> | |
2549 | <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> | 2795 | </trans-unit> |
2550 | |||
2551 | |||
2552 | |||
2553 | |||
2554 | |||
2555 | <trans-unit id="4416005356063364306" datatype="html"> | 2796 | <trans-unit id="4416005356063364306" datatype="html"> |
2556 | <source>This video is blocked.</source> | 2797 | <source>This video is blocked.</source> |
2557 | <target state="translated">Deze video is geblokkeerd.</target> | 2798 | <target state="translated">Deze video is geblokkeerd.</target> |
2558 | 2799 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">26</context></context-group> | |
2559 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> | 2800 | </trans-unit> |
2560 | <trans-unit id="2482137713226830428" datatype="html"> | 2801 | <trans-unit id="2482137713226830428" datatype="html"> |
2561 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source> | 2802 | <source>Published <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></source> |
2562 | <target state="translated">Gepubliceerd op <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></target> | 2803 | <target state="translated">Gepubliceerd op <x id="START_TAG_MY_DATE_TOGGLE"/><x id="CLOSE_TAG_MY_DATE_TOGGLE"/></target> |
2563 | 2804 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">31</context></context-group> | |
2564 | 2805 | </trans-unit> | |
2565 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | ||
2566 | <trans-unit id="1813238393038053050" datatype="html"> | 2806 | <trans-unit id="1813238393038053050" datatype="html"> |
2567 | <source>SUPPORT</source> | 2807 | <source>SUPPORT</source> |
2568 | <target state="translated">ONDERSTEUNING</target> | 2808 | <target state="translated">ONDERSTEUNING</target> |
2569 | 2809 | <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> | |
2570 | <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> | 2810 | </trans-unit> |
2571 | <trans-unit id="9219888125536520293" datatype="html"> | 2811 | <trans-unit id="9219888125536520293" datatype="html"> |
2572 | <source>SHARE</source> | 2812 | <source>SHARE</source> |
2573 | <target state="translated">DELEN</target> | 2813 | <target state="translated">DELEN</target> |
2574 | 2814 | <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> | |
2575 | <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> | 2815 | </trans-unit> |
2576 | <trans-unit id="6671956963490165282" datatype="html"> | 2816 | <trans-unit id="6671956963490165282" datatype="html"> |
2577 | <source>SAVE</source> | 2817 | <source>SAVE</source> |
2578 | <target state="translated">OPSLAAN</target> | 2818 | <target state="translated">OPSLAAN</target> |
2579 | 2819 | <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> | |
2580 | <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> | 2820 | </trans-unit> |
2581 | <trans-unit id="647016352598204238" datatype="html"> | 2821 | <trans-unit id="647016352598204238" datatype="html"> |
2582 | <source>DOWNLOAD</source> | 2822 | <source>DOWNLOAD</source> |
2583 | <target state="translated">DOWNLOADEN</target> | 2823 | <target state="translated">DOWNLOADEN</target> |
2584 | 2824 | <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> | |
2585 | <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> | 2825 | </trans-unit> |
2586 | <trans-unit id="677619204556459328"> | 2826 | <trans-unit id="677619204556459328"> |
2587 | <source>Like this video</source> | 2827 | <source>Like this video</source> |
2588 | <target>Like deze video</target> | 2828 | <target>Like deze video</target> |
2589 | 2829 | <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> | |
2590 | <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> | 2830 | </trans-unit> |
2591 | <trans-unit id="1979134407801821102"> | 2831 | <trans-unit id="1979134407801821102"> |
2592 | <source>Dislike this video</source> | 2832 | <source>Dislike this video</source> |
2593 | <target>Dislike deze video</target> | 2833 | <target>Dislike deze video</target> |
2594 | 2834 | <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> | |
2595 | <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> | 2835 | </trans-unit> |
2596 | <trans-unit id="4001371302469308813" datatype="html"> | 2836 | <trans-unit id="4001371302469308813" datatype="html"> |
2597 | <source>Support options for this video</source> | 2837 | <source>Support options for this video</source> |
2598 | <target state="translated">Ondersteuningsopties voor deze video</target> | 2838 | <target state="translated">Ondersteuningsopties voor deze video</target> |
2599 | 2839 | <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">56</context></context-group> | |
2600 | <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">56</context></context-group></trans-unit> | 2840 | </trans-unit> |
2601 | <trans-unit id="687548610091961489"> | 2841 | <trans-unit id="687548610091961489"> |
2602 | <source>By <x id="INTERPOLATION"/></source> | 2842 | <source>By <x id="INTERPOLATION"/></source> |
2603 | <target>Door <x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/></target> | 2843 | <target>Door <x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/></target> |
2604 | 2844 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">71</context></context-group> | |
2605 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">71</context></context-group></trans-unit> | 2845 | </trans-unit> |
2606 | <trans-unit id="1144407473317535723" datatype="html"> | 2846 | <trans-unit id="1144407473317535723" datatype="html"> |
2607 | <source>Subscribe</source> | 2847 | <source>Subscribe</source> |
2608 | <target state="translated">Abonneren</target> | 2848 | <target state="translated">Abonneren</target> |
@@ -2626,280 +2866,293 @@ Je kan nu al informatie toevoegen over deze video. | |||
2626 | <trans-unit id="7215101881367554791"> | 2866 | <trans-unit id="7215101881367554791"> |
2627 | <source>Show more</source> | 2867 | <source>Show more</source> |
2628 | <target>Meer laten zien</target> | 2868 | <target>Meer laten zien</target> |
2629 | 2869 | <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> | |
2630 | <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> | 2870 | </trans-unit> |
2631 | <trans-unit id="3517550046701184661"> | 2871 | <trans-unit id="3517550046701184661"> |
2632 | <source>Show less</source> | 2872 | <source>Show less</source> |
2633 | <target>Laat minder zien</target> | 2873 | <target>Laat minder zien</target> |
2634 | 2874 | <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> | |
2635 | <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"> | 2875 | </trans-unit> |
2636 | <source>Origin</source><target state="new">Origin</target> | 2876 | <trans-unit id="66785722678644243" datatype="html"> |
2637 | 2877 | <source>Origin</source> | |
2638 | <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"> | 2878 | <target state="new">Origin</target> |
2639 | <source>Open the video on the origin instance</source><target state="new">Open the video on the origin instance</target> | 2879 | <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> |
2880 | </trans-unit> | ||
2881 | <trans-unit id="6981359593518942576" datatype="html"> | ||
2882 | <source>Open the video on the origin instance</source> | ||
2883 | <target state="new">Open the video on the origin instance</target> | ||
2640 | <context-group purpose="location"> | 2884 | <context-group purpose="location"> |
2641 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context> | 2885 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context> |
2642 | <context context-type="linenumber">14</context> | 2886 | <context context-type="linenumber">14</context> |
2643 | </context-group> | 2887 | </context-group> |
2644 | </trans-unit> | 2888 | </trans-unit> |
2645 | |||
2646 | <trans-unit id="5139892963394684487"> | 2889 | <trans-unit id="5139892963394684487"> |
2647 | <source>Originally published</source> | 2890 | <source>Originally published</source> |
2648 | <target>Oorspronkelijk gepubliceerd</target> | 2891 | <target>Oorspronkelijk gepubliceerd</target> |
2649 | 2892 | <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> | |
2650 | <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> | 2893 | </trans-unit> |
2651 | <trans-unit id="6402393085909200998" datatype="html"> | 2894 | <trans-unit id="6402393085909200998" datatype="html"> |
2652 | <source>Friendly Reminder:</source> | 2895 | <source>Friendly Reminder:</source> |
2653 | <target state="translated">Vriendelijke Herinnering:</target> | 2896 | <target state="translated">Vriendelijke Herinnering:</target> |
2654 | 2897 | <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> | |
2655 | <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> | 2898 | </trans-unit> |
2656 | <trans-unit id="2935783216050341269" datatype="html"> | 2899 | <trans-unit id="2935783216050341269" datatype="html"> |
2657 | <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> | 2900 | <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> |
2658 | <target state="translated">het deelsysteem voor deze video maakt dat technische gegevens over je systeem (onder meer je pubieke ip-adres) bij andere deelnemers kunnen terechtkomen.</target> | 2901 | <target state="translated">het deelsysteem voor deze video maakt dat technische gegevens over je systeem (onder meer je pubieke ip-adres) bij andere deelnemers kunnen terechtkomen.</target> |
2659 | 2902 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">6</context></context-group> | |
2660 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2903 | </trans-unit> |
2661 | <trans-unit id="4619188387782427495"> | 2904 | <trans-unit id="4619188387782427495"> |
2662 | <source>More information</source> | 2905 | <source>More information</source> |
2663 | <target>Meer informatie</target> | 2906 | <target>Meer informatie</target> |
2664 | 2907 | <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">36</context></context-group> | |
2665 | 2908 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">56</context></context-group> | |
2666 | 2909 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">56</context></context-group> | |
2667 | 2910 | <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> | |
2668 | 2911 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">32</context></context-group> | |
2669 | 2912 | </trans-unit> | |
2670 | <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">36</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">56</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">56</context></context-group><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><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | ||
2671 | <trans-unit id="3452334748875293295" datatype="html"> | 2913 | <trans-unit id="3452334748875293295" datatype="html"> |
2672 | <source>The video was blocked due to automatic blocking of new videos</source> | 2914 | <source>The video was blocked due to automatic blocking of new videos</source> |
2673 | <target state="translated">De video is geblokkeerd door de automatische blokkering van nieuwe video's</target> | 2915 | <target state="translated">De video is geblokkeerd door de automatische blokkering van nieuwe video's</target> |
2674 | 2916 | <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">57</context></context-group> | |
2675 | 2917 | </trans-unit> | |
2676 | <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">57</context></context-group></trans-unit> | ||
2677 | <trans-unit id="1465291804668949243" datatype="html"> | 2918 | <trans-unit id="1465291804668949243" datatype="html"> |
2678 | <source>NSFW</source> | 2919 | <source>NSFW</source> |
2679 | <target state="translated">niet geschikt voor een werkomgeving</target> | 2920 | <target state="translated">niet geschikt voor een werkomgeving</target> |
2680 | 2921 | <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">67</context></context-group> | |
2681 | <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">67</context></context-group></trans-unit> | 2922 | </trans-unit> |
2682 | <trans-unit id="4512155674928869984"> | 2923 | <trans-unit id="4512155674928869984"> |
2683 | <source>Get more information</source> | 2924 | <source>Get more information</source> |
2684 | <target>Meer informatie krijgen</target> | 2925 | <target>Meer informatie krijgen</target> |
2685 | 2926 | <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> | |
2686 | <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> | 2927 | </trans-unit> |
2687 | <trans-unit id="5184373289520493569" datatype="html"> | 2928 | <trans-unit id="5184373289520493569" datatype="html"> |
2688 | <source>OK</source> | 2929 | <source>OK</source> |
2689 | <target state="translated">OK</target> | 2930 | <target state="translated">OK</target> |
2690 | 2931 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">13</context></context-group> | |
2691 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/privacy-concerns.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit><trans-unit id="4092533321838934102" datatype="html"> | 2932 | </trans-unit> |
2692 | <source> The video is being imported, it will be available when the import is finished. | 2933 | <trans-unit id="4092533321838934102" datatype="html"> |
2693 | </source><target state="new"> The video is being imported, it will be available when the import is finished. | 2934 | <source>The video is being imported, it will be available when the import is finished.</source> |
2935 | <target state="new"> The video is being imported, it will be available when the import is finished. | ||
2694 | </target> | 2936 | </target> |
2695 | <context-group purpose="location"> | 2937 | <context-group purpose="location"> |
2696 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 2938 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
2697 | <context context-type="linenumber">2,3</context> | 2939 | <context context-type="linenumber">2,3</context> |
2698 | </context-group> | 2940 | </context-group> |
2699 | </trans-unit><trans-unit id="8304621069698650554" datatype="html"> | 2941 | </trans-unit> |
2700 | <source> The video is being transcoded, it may not work properly. | 2942 | <trans-unit id="8304621069698650554" datatype="html"> |
2701 | </source><target state="new"> The video is being transcoded, it may not work properly. | 2943 | <source>The video is being transcoded, it may not work properly.</source> |
2944 | <target state="new"> The video is being transcoded, it may not work properly. | ||
2702 | </target> | 2945 | </target> |
2703 | <context-group purpose="location"> | 2946 | <context-group purpose="location"> |
2704 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 2947 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
2705 | <context context-type="linenumber">6,7</context> | 2948 | <context context-type="linenumber">6,7</context> |
2706 | </context-group> | 2949 | </context-group> |
2707 | </trans-unit><trans-unit id="9080034597841586171" datatype="html"> | 2950 | </trans-unit> |
2708 | <source> The video is being moved to an external server, it may not work properly. | 2951 | <trans-unit id="9080034597841586171" datatype="html"> |
2709 | </source><target state="new"> The video is being moved to an external server, it may not work properly. | 2952 | <source>The video is being moved to an external server, it may not work properly.</source> |
2953 | <target state="new"> The video is being moved to an external server, it may not work properly. | ||
2710 | </target> | 2954 | </target> |
2711 | <context-group purpose="location"> | 2955 | <context-group purpose="location"> |
2712 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 2956 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
2713 | <context context-type="linenumber">10,11</context> | 2957 | <context context-type="linenumber">10,11</context> |
2714 | </context-group> | 2958 | </context-group> |
2715 | </trans-unit><trans-unit id="8619499607322327082" datatype="html"> | 2959 | </trans-unit> |
2716 | <source> This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. | 2960 | <trans-unit id="8619499607322327082" datatype="html"> |
2717 | </source><target state="new"> This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. | 2961 | <source>This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. </source> |
2962 | <target state="new"> This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. | ||
2718 | </target> | 2963 | </target> |
2719 | 2964 | <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> | |
2720 | <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="4262297989675590582" datatype="html"> | 2965 | </trans-unit> |
2721 | <source> This live has not started yet. | 2966 | <trans-unit id="4262297989675590582" datatype="html"> |
2722 | </source><target state="new"> This live has not started yet. | 2967 | <source>This live has not started yet.</source> |
2968 | <target state="new"> This live has not started yet. | ||
2723 | </target> | 2969 | </target> |
2724 | 2970 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">18</context></context-group> | |
2725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">18</context></context-group></trans-unit><trans-unit id="4926204350710628499" datatype="html"> | 2971 | </trans-unit> |
2726 | <source> This live has ended. | 2972 | <trans-unit id="4926204350710628499" datatype="html"> |
2727 | </source><target state="new"> This live has ended. | 2973 | <source>This live has ended.</source> |
2974 | <target state="new"> This live has ended. | ||
2728 | </target> | 2975 | </target> |
2729 | 2976 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">22</context></context-group> | |
2730 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 2977 | </trans-unit> |
2731 | |||
2732 | |||
2733 | |||
2734 | <trans-unit id="8518611938109939710" datatype="html"> | 2978 | <trans-unit id="8518611938109939710" datatype="html"> |
2735 | <source>SORT BY</source> | 2979 | <source>SORT BY</source> |
2736 | <target state="translated">SORTEREN OP</target> | 2980 | <target state="translated">SORTEREN OP</target> |
2737 | 2981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">11</context></context-group> | |
2738 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">11</context></context-group></trans-unit> | 2982 | </trans-unit> |
2739 | <trans-unit id="6448160249466325288" datatype="html"> | 2983 | <trans-unit id="6448160249466325288" datatype="html"> |
2740 | <source>Most recent first (default)</source> | 2984 | <source>Most recent first (default)</source> |
2741 | <target state="translated">Recentste eerst (standaard)</target> | 2985 | <target state="translated">Recentste eerst (standaard)</target> |
2742 | 2986 | <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> | |
2743 | <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> | 2987 | </trans-unit> |
2744 | <trans-unit id="5179007899354903649" datatype="html"> | 2988 | <trans-unit id="5179007899354903649" datatype="html"> |
2745 | <source>Most replies first</source> | 2989 | <source>Most replies first</source> |
2746 | <target state="translated">Meeste antwoorden eerst</target> | 2990 | <target state="translated">Meeste antwoorden eerst</target> |
2747 | 2991 | <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> | |
2748 | <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> | 2992 | </trans-unit> |
2749 | <trans-unit id="7494537777006082055"> | 2993 | <trans-unit id="7494537777006082055"> |
2750 | <source>No comments.</source> | 2994 | <source>No comments.</source> |
2751 | <target>Geen commentaren.</target> | 2995 | <target>Geen commentaren.</target> |
2752 | 2996 | <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> | |
2753 | <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"> | 2997 | </trans-unit> |
2754 | <source> 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 </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> | 2998 | <trans-unit id="6390009909920475335" datatype="html"> |
2755 | 2999 | <source>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 </source> | |
2756 | <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></trans-unit><trans-unit id="4036338619293319383" datatype="html"> | 3000 | <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> |
2757 | <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> | 3001 | <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> |
2758 | 3002 | </trans-unit> | |
2759 | 3003 | <trans-unit id="4036338619293319383" datatype="html"> | |
2760 | 3004 | <source>{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</source> | |
2761 | <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"> | 3005 | <target state="new">{VAR_PLURAL, plural, =1 {1 reply} other {<x id="INTERPOLATION"/> replies}}</target> |
2762 | <source> 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' }}"/> </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> | 3006 | <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> |
2763 | 3007 | <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> | |
2764 | <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></trans-unit><trans-unit id="5535545444690528619" datatype="html"> | 3008 | <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> |
2765 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></source><target state="new">View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></target> | 3009 | </trans-unit> |
2766 | 3010 | <trans-unit id="127329338495775339" datatype="html"> | |
2767 | <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> | 3011 | <source>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' }}"/> </source> |
2768 | 3012 | <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> | |
2769 | 3013 | <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> | |
2770 | 3014 | </trans-unit> | |
3015 | <trans-unit id="5535545444690528619" datatype="html"> | ||
3016 | <source>View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></source> | ||
3017 | <target state="new">View <x id="ICU" equiv-text="{comment.totalReplies, plural, =1 {1 reply} other {{{ comment.totalReplies }} replies}}"/></target> | ||
3018 | <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> | ||
3019 | </trans-unit> | ||
2771 | <trans-unit id="1055254162789146714"> | 3020 | <trans-unit id="1055254162789146714"> |
2772 | <source>Comments are disabled.</source> | 3021 | <source>Comments are disabled.</source> |
2773 | <target> | 3022 | <target> |
2774 | Reacties zijn uitgeschakeld. | 3023 | Reacties zijn uitgeschakeld. |
2775 | </target> | 3024 | </target> |
2776 | 3025 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">92</context></context-group> | |
2777 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> | 3026 | </trans-unit> |
2778 | <trans-unit id="3691787517663044217" datatype="html"> | 3027 | <trans-unit id="3691787517663044217" datatype="html"> |
2779 | <source>The deletion will be sent to remote instances so they can reflect the change.</source> | 3028 | <source>The deletion will be sent to remote instances so they can reflect the change.</source> |
2780 | <target state="translated">De verwijdering wordt naar andere exemplaren van PeerTube gestuurd zodat zij er ook gevolg aan kunnen geven.</target> | 3029 | <target state="translated">De verwijdering wordt naar andere exemplaren van PeerTube gestuurd zodat zij er ook gevolg aan kunnen geven.</target> |
2781 | 3030 | <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> | |
2782 | <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> | 3031 | </trans-unit> |
2783 | <trans-unit id="7321800851971795962" datatype="html"> | 3032 | <trans-unit id="7321800851971795962" datatype="html"> |
2784 | <source>It is a remote comment, so the deletion will only be effective on your instance.</source> | 3033 | <source>It is a remote comment, so the deletion will only be effective on your instance.</source> |
2785 | <target state="translated">Dit is een reactie van elders, dus de verwijdering zal enkel effect hebben op jouw exemplaar van PeerTube.</target> | 3034 | <target state="translated">Dit is een reactie van elders, dus de verwijdering zal enkel effect hebben op jouw exemplaar van PeerTube.</target> |
2786 | 3035 | <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> | |
2787 | <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> | 3036 | </trans-unit> |
2788 | <trans-unit id="5964038603724691720" datatype="html"> | 3037 | <trans-unit id="5964038603724691720" datatype="html"> |
2789 | <source>Delete and re-draft</source> | 3038 | <source>Delete and re-draft</source> |
2790 | <target state="translated">Verwijderen en opnieuw als klad</target> | 3039 | <target state="translated">Verwijderen en opnieuw als klad</target> |
2791 | 3040 | <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> | |
2792 | <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> | 3041 | </trans-unit> |
2793 | <trans-unit id="7163633882758007711" datatype="html"> | 3042 | <trans-unit id="7163633882758007711" datatype="html"> |
2794 | <source>Do you really want to delete and re-draft this comment?</source> | 3043 | <source>Do you really want to delete and re-draft this comment?</source> |
2795 | <target state="translated">Wil je echt deze reactie verwijderen en opnieuw als klad instellen?</target> | 3044 | <target state="translated">Wil je echt deze reactie verwijderen en opnieuw als klad instellen?</target> |
2796 | 3045 | <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> | |
2797 | <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> | 3046 | </trans-unit> |
2798 | <trans-unit id="5733075023444401902"> | 3047 | <trans-unit id="5733075023444401902"> |
2799 | <source>Add comment...</source> | 3048 | <source>Add comment...</source> |
2800 | <target>Voeg reactie toe...</target> | 3049 | <target>Voeg reactie toe...</target> |
2801 | 3050 | <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> | |
2802 | <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> | 3051 | </trans-unit> |
2803 | <trans-unit id="982956590420630883" datatype="html"> | 3052 | <trans-unit id="982956590420630883" datatype="html"> |
2804 | <source>Markdown compatible</source> | 3053 | <source>Markdown compatible</source> |
2805 | <target state="translated">Markdown-compatibel</target> | 3054 | <target state="translated">Markdown-compatibel</target> |
2806 | 3055 | <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> | |
2807 | <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> | 3056 | </trans-unit> |
2808 | <trans-unit id="5793595564950675122" datatype="html"> | 3057 | <trans-unit id="5793595564950675122" datatype="html"> |
2809 | <source>Markdown compatible that supports:</source> | 3058 | <source>Markdown compatible that supports:</source> |
2810 | <target state="translated">Markdown-compatible met ondersteuning voor:</target> | 3059 | <target state="translated">Markdown-compatible met ondersteuning voor:</target> |
2811 | 3060 | <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> | |
2812 | <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> | 3061 | </trans-unit> |
2813 | <trans-unit id="8422216333877786919" datatype="html"> | 3062 | <trans-unit id="8422216333877786919" datatype="html"> |
2814 | <source>Auto generated links</source> | 3063 | <source>Auto generated links</source> |
2815 | <target state="translated">Automatisch gegenereerde verwijzingen</target> | 3064 | <target state="translated">Automatisch gegenereerde verwijzingen</target> |
2816 | 3065 | <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> | |
2817 | <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> | 3066 | </trans-unit> |
2818 | <trans-unit id="6365822416124232422" datatype="html"> | 3067 | <trans-unit id="6365822416124232422" datatype="html"> |
2819 | <source>Break lines</source> | 3068 | <source>Break lines</source> |
2820 | <target state="translated">Breuklijnen</target> | 3069 | <target state="translated">Breuklijnen</target> |
2821 | 3070 | <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> | |
2822 | <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> | 3071 | </trans-unit> |
2823 | <trans-unit id="8756167649220050929" datatype="html"> | 3072 | <trans-unit id="8756167649220050929" datatype="html"> |
2824 | <source>Lists</source> | 3073 | <source>Lists</source> |
2825 | <target state="translated">Lijsten</target> | 3074 | <target state="translated">Lijsten</target> |
2826 | 3075 | <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> | |
2827 | <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> | 3076 | <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> |
3077 | </trans-unit> | ||
2828 | <trans-unit id="2516633974298697807" datatype="html"> | 3078 | <trans-unit id="2516633974298697807" datatype="html"> |
2829 | <source>Emphasis</source> | 3079 | <source>Emphasis</source> |
2830 | <target state="translated">Nadruk</target> | 3080 | <target state="translated">Nadruk</target> |
2831 | 3081 | <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> | |
2832 | <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> | 3082 | <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> |
3083 | </trans-unit> | ||
2833 | <trans-unit id="2810844969104710423" datatype="html"> | 3084 | <trans-unit id="2810844969104710423" datatype="html"> |
2834 | <source>bold</source> | 3085 | <source>bold</source> |
2835 | <target state="translated">vet</target> | 3086 | <target state="translated">vet</target> |
2836 | 3087 | <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> | |
2837 | <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> | 3088 | </trans-unit> |
2838 | <trans-unit id="8497278965577453274" datatype="html"> | 3089 | <trans-unit id="8497278965577453274" datatype="html"> |
2839 | <source>italic</source> | 3090 | <source>italic</source> |
2840 | <target state="translated">cursief</target> | 3091 | <target state="translated">cursief</target> |
2841 | 3092 | <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> | |
2842 | <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> | 3093 | </trans-unit> |
2843 | <trans-unit id="7227611412155083002" datatype="html"> | 3094 | <trans-unit id="7227611412155083002" datatype="html"> |
2844 | <source>Emoji shortcuts</source> | 3095 | <source>Emoji shortcuts</source> |
2845 | <target state="translated">Emoji-shortcuts</target> | 3096 | <target state="translated">Emoji-shortcuts</target> |
2846 | 3097 | <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> | |
2847 | <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> | 3098 | </trans-unit> |
2848 | <trans-unit id="6608581312644027413" datatype="html"> | 3099 | <trans-unit id="6608581312644027413" datatype="html"> |
2849 | <source>Emoji markup</source> | 3100 | <source>Emoji markup</source> |
2850 | <target state="translated">Emoji-opmaak</target> | 3101 | <target state="translated">Emoji-opmaak</target> |
2851 | 3102 | <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> | |
2852 | <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> | 3103 | </trans-unit> |
2853 | <trans-unit id="381522038671562286" datatype="html"> | 3104 | <trans-unit id="381522038671562286" datatype="html"> |
2854 | <source>See complete list</source> | 3105 | <source>See complete list</source> |
2855 | <target state="translated">Volledige lijst bekijken</target> | 3106 | <target state="translated">Volledige lijst bekijken</target> |
2856 | 3107 | <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> | |
2857 | <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> | 3108 | </trans-unit> |
2858 | <trans-unit id="2263890353858735493"> | 3109 | <trans-unit id="2263890353858735493"> |
2859 | <source>You are one step away from commenting</source> | 3110 | <source>You are one step away from commenting</source> |
2860 | <target>Je bent een stap verwijderd van reageren</target> | 3111 | <target>Je bent een stap verwijderd van reageren</target> |
2861 | 3112 | <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> | |
2862 | <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><trans-unit id="7508177761852352782" datatype="html"> | 3113 | </trans-unit> |
2863 | <source> You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). </source><target state="new"> You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). </target> | 3114 | <trans-unit id="7508177761852352782" datatype="html"> |
2864 | 3115 | <source>You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example).</source> | |
2865 | <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">65</context></context-group></trans-unit> | 3116 | <target state="new"> You can comment using an account on any ActivityPub-compatible instance (PeerTube/Mastodon/Pleroma account for example). </target> |
2866 | 3117 | <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">65</context></context-group> | |
2867 | 3118 | </trans-unit> | |
2868 | <trans-unit id="2958389355547305739" datatype="html"> | 3119 | <trans-unit id="2958389355547305739" datatype="html"> |
2869 | <source>Login to comment</source> | 3120 | <source>Login to comment</source> |
2870 | <target state="translated">Aanmelden om te reageren</target> | 3121 | <target state="translated">Aanmelden om te reageren</target> |
2871 | 3122 | <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> | |
2872 | <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> | 3123 | </trans-unit> |
2873 | <trans-unit id="4817080330698362530" datatype="html"> | 3124 | <trans-unit id="4817080330698362530" datatype="html"> |
2874 | <source>Markdown Emoji List</source> | 3125 | <source>Markdown Emoji List</source> |
2875 | <target state="translated">Markdown-Emoji-Lijst</target> | 3126 | <target state="translated">Markdown-Emoji-Lijst</target> |
2876 | 3127 | <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> | |
2877 | <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> | 3128 | </trans-unit> |
2878 | <trans-unit id="2662644497259948010" datatype="html"> | 3129 | <trans-unit id="2662644497259948010" datatype="html"> |
2879 | <source>Comment</source> | 3130 | <source>Comment</source> |
2880 | <target state="translated">Reactie</target> | 3131 | <target state="translated">Reactie</target> |
2881 | 3132 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">44</context></context-group> | |
2882 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">44</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> | 3133 | <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> |
3134 | </trans-unit> | ||
2883 | <trans-unit id="4502286564339177240" datatype="html"> | 3135 | <trans-unit id="4502286564339177240" datatype="html"> |
2884 | <source>Reply</source> | 3136 | <source>Reply</source> |
2885 | <target state="translated">Antwoorden</target> | 3137 | <target state="translated">Antwoorden</target> |
2886 | 3138 | <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> | |
2887 | <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> | 3139 | <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> |
3140 | </trans-unit> | ||
2888 | <trans-unit id="3572897237443938692"> | 3141 | <trans-unit id="3572897237443938692"> |
2889 | <source>Highlighted comment</source> | 3142 | <source>Highlighted comment</source> |
2890 | <target>Belichte reactie</target> | 3143 | <target>Belichte reactie</target> |
2891 | 3144 | <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> | |
2892 | <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> | 3145 | </trans-unit> |
2893 | <trans-unit id="4502286564339177240"> | 3146 | <trans-unit id="4502286564339177240"> |
2894 | <source>Reply</source> | 3147 | <source>Reply</source> |
2895 | <target>Antwoord</target> | 3148 | <target>Antwoord</target> |
2896 | 3149 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">36</context></context-group> | |
2897 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 3150 | </trans-unit> |
2898 | <trans-unit id="2447932355167015019" datatype="html"> | 3151 | <trans-unit id="2447932355167015019" datatype="html"> |
2899 | <source>This comment has been deleted</source> | 3152 | <source>This comment has been deleted</source> |
2900 | <target state="translated">Deze reactie is verwijderd</target> | 3153 | <target state="translated">Deze reactie is verwijderd</target> |
2901 | 3154 | <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> | |
2902 | <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> | 3155 | </trans-unit> |
2903 | <trans-unit id="9031514421077169181" datatype="html"> | 3156 | <trans-unit id="9031514421077169181" datatype="html"> |
2904 | <source>Video redundancies</source> | 3157 | <source>Video redundancies</source> |
2905 | <target state="translated">Surpluskopieën video</target> | 3158 | <target state="translated">Surpluskopieën video</target> |
@@ -2919,13 +3172,14 @@ Je kan nu al informatie toevoegen over deze video. | |||
2919 | <trans-unit id="658727060940996385" datatype="html"> | 3172 | <trans-unit id="658727060940996385" datatype="html"> |
2920 | <source>Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</source> | 3173 | <source>Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?</source> |
2921 | <target state="translated">Het token vernieuwen heeft gevolgen. Al ingestelde gebruikers kunnen de stroom niet meer binnenhalen tot ze het nieuwe token instellen. Doorgaan?</target> | 3174 | <target state="translated">Het token vernieuwen heeft gevolgen. Al ingestelde gebruikers kunnen de stroom niet meer binnenhalen tot ze het nieuwe token instellen. Doorgaan?</target> |
2922 | 3175 | <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> | |
2923 | <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> | 3176 | </trans-unit> |
2924 | <trans-unit id="270726559962362501" datatype="html"> | 3177 | <trans-unit id="270726559962362501" datatype="html"> |
2925 | <source>Renew token</source> | 3178 | <source>Renew token</source> |
2926 | <target state="translated">Token vernieuwen</target> | 3179 | <target state="translated">Token vernieuwen</target> |
2927 | 3180 | <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> | |
2928 | <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> | 3181 | <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> |
3182 | </trans-unit> | ||
2929 | <trans-unit id="3029923402309610616" datatype="html"> | 3183 | <trans-unit id="3029923402309610616" datatype="html"> |
2930 | <source>Token renewed. Update your client configuration accordingly.</source> | 3184 | <source>Token renewed. Update your client configuration accordingly.</source> |
2931 | <target state="translated">Token vernieuwd. Instellingen van je client bijwerken vereist.</target> | 3185 | <target state="translated">Token vernieuwd. Instellingen van je client bijwerken vereist.</target> |
@@ -2937,8 +3191,10 @@ Je kan nu al informatie toevoegen over deze video. | |||
2937 | <trans-unit id="6658000829978978023" datatype="html"> | 3191 | <trans-unit id="6658000829978978023" datatype="html"> |
2938 | <source>Applications</source> | 3192 | <source>Applications</source> |
2939 | <target state="translated">Toepassingen</target> | 3193 | <target state="translated">Toepassingen</target> |
2940 | 3194 | <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> | |
2941 | <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> | 3195 | <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> |
3196 | <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> | ||
3197 | </trans-unit> | ||
2942 | <trans-unit id="5302915360176176604" datatype="html"> | 3198 | <trans-unit id="5302915360176176604" datatype="html"> |
2943 | <source>SUBSCRIPTION FEED</source> | 3199 | <source>SUBSCRIPTION FEED</source> |
2944 | <target state="translated">ABONNEMENTSFEED</target> | 3200 | <target state="translated">ABONNEMENTSFEED</target> |
@@ -2984,155 +3240,134 @@ Je kan nu al informatie toevoegen over deze video. | |||
2984 | <target state="new">Renew token</target> | 3240 | <target state="new">Renew token</target> |
2985 | <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> | 3241 | <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> |
2986 | </trans-unit> | 3242 | </trans-unit> |
2987 | |||
2988 | <trans-unit id="9209781328340965816"> | 3243 | <trans-unit id="9209781328340965816"> |
2989 | <source>Filter...</source> | 3244 | <source>Filter...</source> |
2990 | <target>Filtreren...</target> | 3245 | <target>Filtreren...</target> |
2991 | 3246 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.component.html</context><context context-type="linenumber">17</context></context-group> | |
2992 | 3247 | </trans-unit> | |
2993 | |||
2994 | |||
2995 | |||
2996 | |||
2997 | |||
2998 | |||
2999 | |||
3000 | |||
3001 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit> | ||
3002 | <trans-unit id="6559246822757089203" datatype="html"> | 3248 | <trans-unit id="6559246822757089203" datatype="html"> |
3003 | <source>Clear filters</source> | 3249 | <source>Clear filters</source> |
3004 | <target state="translated">Filters verwijderen</target> | 3250 | <target state="translated">Filters verwijderen</target> |
3005 | 3251 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.component.html</context><context context-type="linenumber">23</context></context-group> | |
3006 | 3252 | <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> | |
3007 | 3253 | </trans-unit> | |
3008 | |||
3009 | |||
3010 | |||
3011 | |||
3012 | |||
3013 | |||
3014 | |||
3015 | |||
3016 | |||
3017 | |||
3018 | |||
3019 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/advanced-input-filter.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/simple-search-input.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | ||
3020 | <trans-unit id="4266779970063047572" datatype="html"> | 3254 | <trans-unit id="4266779970063047572" datatype="html"> |
3021 | <source>Video/Comment/Account</source> | 3255 | <source>Video/Comment/Account</source> |
3022 | <target state="translated">Video/Reactie/Account</target> | 3256 | <target state="translated">Video/Reactie/Account</target> |
3023 | 3257 | <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> | |
3024 | <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> | 3258 | </trans-unit> |
3025 | <trans-unit id="8040881171107393560"> | 3259 | <trans-unit id="8040881171107393560"> |
3026 | <source>ID</source> | 3260 | <source>ID</source> |
3027 | <target>ID</target> | 3261 | <target>ID</target> |
3028 | 3262 | <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> | |
3029 | <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></trans-unit> | 3263 | </trans-unit> |
3030 | |||
3031 | <trans-unit id="5911214550882917183"> | 3264 | <trans-unit id="5911214550882917183"> |
3032 | <source>State</source> | 3265 | <source>State</source> |
3033 | <target>Status</target> | 3266 | <target>Status</target> |
3034 | 3267 | <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">19</context></context-group> | |
3035 | 3268 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">48</context></context-group> | |
3036 | <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">19</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> | 3269 | </trans-unit> |
3037 | <trans-unit id="2092225601747599163"> | 3270 | <trans-unit id="2092225601747599163"> |
3038 | <source>Created <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3271 | <source>Created <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3039 | <target>Gemaakt op <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/></target> | 3272 | <target>Gemaakt op <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/></target> |
3040 | 3273 | <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> | |
3041 | 3274 | <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> | |
3042 | 3275 | <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> | |
3043 | 3276 | <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> | |
3044 | 3277 | <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> | |
3045 | <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> | 3278 | </trans-unit> |
3046 | <trans-unit id="8898602327647937914" datatype="html"> | 3279 | <trans-unit id="8898602327647937914" datatype="html"> |
3047 | <source>Open actor page in a new tab</source> | 3280 | <source>Open actor page in a new tab</source> |
3048 | <target state="translated">Acteurpagina openen in nieuwe tab</target> | 3281 | <target state="translated">Acteurpagina openen in nieuwe tab</target> |
3049 | 3282 | <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> | |
3050 | <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> | 3283 | </trans-unit> |
3051 | <trans-unit id="7317290694079257887"> | 3284 | <trans-unit id="7317290694079257887"> |
3052 | <source>Accepted</source> | 3285 | <source>Accepted</source> |
3053 | <target>Geaccepteerd</target> | 3286 | <target>Geaccepteerd</target> |
3054 | 3287 | <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> | |
3055 | 3288 | <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> | |
3056 | <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> | 3289 | </trans-unit> |
3057 | <trans-unit id="4416413576346763682"> | 3290 | <trans-unit id="4416413576346763682"> |
3058 | <source>Pending</source> | 3291 | <source>Pending</source> |
3059 | <target>In behandeling</target> | 3292 | <target>In behandeling</target> |
3060 | 3293 | <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> | |
3061 | 3294 | <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> | |
3062 | <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> | 3295 | </trans-unit> |
3063 | <trans-unit id="8905995985388209337"> | 3296 | <trans-unit id="8905995985388209337"> |
3064 | <source>Accept</source> | 3297 | <source>Accept</source> |
3065 | <target>Accepteren</target> | 3298 | <target>Accepteren</target> |
3066 | 3299 | <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> | |
3067 | 3300 | <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> | |
3068 | 3301 | <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> | |
3069 | <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> | 3302 | </trans-unit> |
3070 | <trans-unit id="8415175881466057254"> | 3303 | <trans-unit id="8415175881466057254"> |
3071 | <source>Refuse</source> | 3304 | <source>Refuse</source> |
3072 | <target>Weigeren</target> | 3305 | <target>Weigeren</target> |
3073 | 3306 | <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> | |
3074 | 3307 | <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> | |
3075 | <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> | 3308 | </trans-unit> |
3076 | <trans-unit id="6961112234462008319" datatype="html"> | 3309 | <trans-unit id="6961112234462008319" datatype="html"> |
3077 | <source>No follower found matching current filters.</source> | 3310 | <source>No follower found matching current filters.</source> |
3078 | <target state="translated">Geen volger gevonden in overeenstemming met huidige filters.</target> | 3311 | <target state="translated">Geen volger gevonden in overeenstemming met huidige filters.</target> |
3079 | 3312 | <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> | |
3080 | <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> | 3313 | </trans-unit> |
3081 | <trans-unit id="2117404838551056159" datatype="html"> | 3314 | <trans-unit id="2117404838551056159" datatype="html"> |
3082 | <source>Your instance doesn't have any follower.</source> | 3315 | <source>Your instance doesn't have any follower.</source> |
3083 | <target state="translated">Je exemplaar van PeerTube heeft geen volgers.</target> | 3316 | <target state="translated">Je exemplaar van PeerTube heeft geen volgers.</target> |
3084 | 3317 | <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> | |
3085 | <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> | 3318 | </trans-unit> |
3086 | <trans-unit id="2845798909207198924" datatype="html"> | 3319 | <trans-unit id="2845798909207198924" datatype="html"> |
3087 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> followers</source> | 3320 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> followers</source> |
3088 | <target state="translated">Nu te zien: <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> tot <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> van <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> volgers</target> | 3321 | <target state="translated">Nu te zien: <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> tot <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> van <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> volgers</target> |
3089 | 3322 | <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> | |
3090 | <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> | 3323 | </trans-unit> |
3091 | <trans-unit id="187187500641108332" datatype="html"> | 3324 | <trans-unit id="187187500641108332" datatype="html"> |
3092 | <source><x id="INTERPOLATION" equiv-text="{{ action }}"/> </source> | 3325 | <source><x id="INTERPOLATION" equiv-text="{{ action }}"/> </source> |
3093 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ action }}"/> </target> | 3326 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ action }}"/> </target> |
3094 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">3</context></context-group> | 3327 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/batch-domains-modal.component.html</context><context context-type="linenumber">3</context></context-group> |
3095 | </trans-unit> | 3328 | </trans-unit> |
3096 | |||
3097 | <trans-unit id="6571718060636962350" datatype="html"> | 3329 | <trans-unit id="6571718060636962350" datatype="html"> |
3098 | <source>Redundancy allowed <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3330 | <source>Redundancy allowed <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3099 | <target state="translated">Surpluskopie toegelaten <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/></target> | 3331 | <target state="translated">Surpluskopie toegelaten <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/></target> |
3100 | 3332 | <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> | |
3101 | <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><trans-unit id="9160510009013134726" datatype="html"> | 3333 | </trans-unit> |
3102 | <source>Unfollow</source><target state="new">Unfollow</target> | 3334 | <trans-unit id="9160510009013134726" datatype="html"> |
3103 | 3335 | <source>Unfollow</source> | |
3104 | <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> | 3336 | <target state="new">Unfollow</target> |
3337 | <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> | ||
3338 | </trans-unit> | ||
3105 | <trans-unit id="8246779176913476983" datatype="html"> | 3339 | <trans-unit id="8246779176913476983" datatype="html"> |
3106 | <source>Open instance in a new tab</source> | 3340 | <source>Open instance in a new tab</source> |
3107 | <target state="translated">Exemplaar van PeerTube openen in nieuwe tab</target> | 3341 | <target state="translated">Exemplaar van PeerTube openen in nieuwe tab</target> |
3108 | 3342 | <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> | |
3109 | 3343 | <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> | |
3110 | 3344 | <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> | |
3111 | <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> | 3345 | </trans-unit> |
3112 | <trans-unit id="9132918641931433659" datatype="html"> | 3346 | <trans-unit id="9132918641931433659" datatype="html"> |
3113 | <source>No host found matching current filters.</source> | 3347 | <source>No host found matching current filters.</source> |
3114 | <target state="translated">Geen host gevonden op basis van huidige filters.</target> | 3348 | <target state="translated">Geen host gevonden op basis van huidige filters.</target> |
3115 | 3349 | <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> | |
3116 | <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> | 3350 | </trans-unit> |
3117 | <trans-unit id="7274241885665071790" datatype="html"> | 3351 | <trans-unit id="7274241885665071790" datatype="html"> |
3118 | <source>Your instance is not following anyone.</source> | 3352 | <source>Your instance is not following anyone.</source> |
3119 | <target state="translated">Je exemplaar van PeerTube volgt niemand.</target> | 3353 | <target state="translated">Je exemplaar van PeerTube volgt niemand.</target> |
3120 | 3354 | <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> | |
3121 | <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> | 3355 | </trans-unit> |
3122 | <trans-unit id="4774348799569692380" datatype="html"> | 3356 | <trans-unit id="4774348799569692380" datatype="html"> |
3123 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> hosts</source> | 3357 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> hosts</source> |
3124 | <target state="translated">Nu te zien: <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> tot <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> van <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> hosts</target> | 3358 | <target state="translated">Nu te zien: <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> tot <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> van <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> hosts</target> |
3125 | 3359 | <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> | |
3126 | <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> | 3360 | </trans-unit> |
3127 | <trans-unit id="9216117865911519658" datatype="html"> | 3361 | <trans-unit id="9216117865911519658" datatype="html"> |
3128 | <source>Action</source><target state="new">Action</target> | 3362 | <source>Action</source> |
3129 | 3363 | <target state="new">Action</target> | |
3130 | 3364 | <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> | |
3131 | 3365 | <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> | |
3132 | 3366 | <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> | |
3133 | 3367 | <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> | |
3134 | 3368 | <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> | |
3135 | <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> | 3369 | <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> |
3370 | </trans-unit> | ||
3136 | <trans-unit id="5968342253366599875" datatype="html"> | 3371 | <trans-unit id="5968342253366599875" datatype="html"> |
3137 | <source>Videos redundancies</source> | 3372 | <source>Videos redundancies</source> |
3138 | <target state="translated">Surpluskopieën video's</target> | 3373 | <target state="translated">Surpluskopieën video's</target> |
@@ -3151,30 +3386,33 @@ Je kan nu al informatie toevoegen over deze video. | |||
3151 | <trans-unit id="8286337167859377104"> | 3386 | <trans-unit id="8286337167859377104"> |
3152 | <source>Create user</source> | 3387 | <source>Create user</source> |
3153 | <target>Gebruiker aanmaken</target> | 3388 | <target>Gebruiker aanmaken</target> |
3154 | 3389 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">96</context></context-group> | |
3155 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">96</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> | 3390 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">20</context></context-group> |
3391 | </trans-unit> | ||
3156 | <trans-unit id="8363291180171434623" datatype="html"> | 3392 | <trans-unit id="8363291180171434623" datatype="html"> |
3157 | <source>Table parameters</source> | 3393 | <source>Table parameters</source> |
3158 | <target state="translated">Tabelparameters</target> | 3394 | <target state="translated">Tabelparameters</target> |
3159 | 3395 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">42</context></context-group> | |
3160 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 3396 | </trans-unit> |
3161 | <trans-unit id="5230110096688656830" datatype="html"> | 3397 | <trans-unit id="5230110096688656830" datatype="html"> |
3162 | <source>Select columns</source> | 3398 | <source>Select columns</source> |
3163 | <target state="translated">Kolommen selecteren</target> | 3399 | <target state="translated">Kolommen selecteren</target> |
3164 | 3400 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">48</context></context-group> | |
3165 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> | 3401 | </trans-unit> |
3166 | <trans-unit id="5893518121808195081" datatype="html"> | 3402 | <trans-unit id="5893518121808195081" datatype="html"> |
3167 | <source>Highlight banned users</source> | 3403 | <source>Highlight banned users</source> |
3168 | <target state="translated">Gebannen gebruikers markeren</target> | 3404 | <target state="translated">Gebannen gebruikers markeren</target> |
3169 | 3405 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">54</context></context-group> | |
3170 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> | 3406 | </trans-unit> |
3171 | <trans-unit id="5248717555542428023"> | 3407 | <trans-unit id="5248717555542428023"> |
3172 | <source>Username</source> | 3408 | <source>Username</source> |
3173 | <target>Gebruikersnaam</target> | 3409 | <target>Gebruikersnaam</target> |
3174 | 3410 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group> | |
3175 | 3411 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">83</context></context-group> | |
3176 | 3412 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">111</context></context-group> | |
3177 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/users/user-list/user-list.component.ts</context><context context-type="linenumber">111</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> | 3413 | <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> |
3414 | <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> | ||
3415 | </trans-unit> | ||
3178 | <trans-unit id="5428411040014095392" datatype="html"> | 3416 | <trans-unit id="5428411040014095392" datatype="html"> |
3179 | <source>e.g. jane_doe</source> | 3417 | <source>e.g. jane_doe</source> |
3180 | <target state="translated">vb. piet_fluwijn</target> | 3418 | <target state="translated">vb. piet_fluwijn</target> |
@@ -3202,27 +3440,33 @@ Je kan nu al informatie toevoegen over deze video. | |||
3202 | <trans-unit id="4145496584631696119"> | 3440 | <trans-unit id="4145496584631696119"> |
3203 | <source>Role</source> | 3441 | <source>Role</source> |
3204 | <target>Rol</target> | 3442 | <target>Rol</target> |
3205 | 3443 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> | |
3206 | 3444 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> | |
3207 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/users/user-list/user-list.component.ts</context><context context-type="linenumber">114</context></context-group></trans-unit> | 3445 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">114</context></context-group> |
3446 | </trans-unit> | ||
3208 | <trans-unit id="7046347992315328430" datatype="html"> | 3447 | <trans-unit id="7046347992315328430" datatype="html"> |
3209 | <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> | 3448 | <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> |
3210 | <target state="translated">Transcoding is ingeschakeld. De videoquota houden enkel rekening met de grootte van de <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>originele <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> video. <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> Deze gebruiker kan maximaal ~ <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/> uploaden. </target> | 3449 | <target state="translated">Transcoding is ingeschakeld. De videoquota houden enkel rekening met de grootte van de <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>originele <x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> video. <x id="LINE_BREAK" ctype="lb" equiv-text="<br/>"/> Deze gebruiker kan maximaal ~ <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/> uploaden. </target> |
3211 | 3450 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">162</context></context-group> | |
3212 | 3451 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">162</context></context-group> | |
3213 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">162</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 3452 | </trans-unit> |
3214 | <trans-unit id="2743014784334706527"> | 3453 | <trans-unit id="2743014784334706527"> |
3215 | <source>Daily video quota</source> | 3454 | <source>Daily video quota</source> |
3216 | <target>Dagelijks videoquotum</target> | 3455 | <target>Dagelijks videoquotum</target> |
3217 | 3456 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">172</context></context-group> | |
3218 | 3457 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">172</context></context-group> | |
3219 | 3458 | <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> | |
3220 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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><trans-unit id="2622255144026150901" datatype="html"> | 3459 | </trans-unit> |
3221 | <source>Auth plugin</source><target state="new">Auth plugin</target> | 3460 | <trans-unit id="2622255144026150901" datatype="html"> |
3222 | 3461 | <source>Auth plugin</source> | |
3223 | 3462 | <target state="new">Auth plugin</target> | |
3224 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/users/user-list/user-list.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit><trans-unit id="588099657508661970" datatype="html"> | 3463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group> |
3225 | <source>None (local authentication)</source><target state="new">None (local authentication)</target> | 3464 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">188</context></context-group> |
3465 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">121</context></context-group> | ||
3466 | </trans-unit> | ||
3467 | <trans-unit id="588099657508661970" datatype="html"> | ||
3468 | <source>None (local authentication)</source> | ||
3469 | <target state="new">None (local authentication)</target> | ||
3226 | <context-group purpose="location"> | 3470 | <context-group purpose="location"> |
3227 | <context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context> | 3471 | <context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context> |
3228 | <context context-type="linenumber">192</context> | 3472 | <context context-type="linenumber">192</context> |
@@ -3235,27 +3479,27 @@ Je kan nu al informatie toevoegen over deze video. | |||
3235 | <trans-unit id="2070907480317730379" datatype="html"> | 3479 | <trans-unit id="2070907480317730379" datatype="html"> |
3236 | <source>Doesn't need review before a video goes public</source> | 3480 | <source>Doesn't need review before a video goes public</source> |
3237 | <target state="translated">Geen beoordeling nodig voor een video publiek beschikbaar wordt</target> | 3481 | <target state="translated">Geen beoordeling nodig voor een video publiek beschikbaar wordt</target> |
3238 | 3482 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">201</context></context-group> | |
3239 | 3483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">201</context></context-group> | |
3240 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/users/user-edit/user-edit.component.html</context><context context-type="linenumber">201</context></context-group></trans-unit> | 3484 | </trans-unit> |
3241 | <trans-unit id="6667250632809964191"> | 3485 | <trans-unit id="6667250632809964191"> |
3242 | <source>Send a link to reset the password by email to the user</source> | 3486 | <source>Send a link to reset the password by email to the user</source> |
3243 | <target>Stuur een link per e-mail naar de gebruiker om het wachtwoord te resetten</target> | 3487 | <target>Stuur een link per e-mail naar de gebruiker om het wachtwoord te resetten</target> |
3244 | 3488 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">226</context></context-group> | |
3245 | 3489 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">226</context></context-group> | |
3246 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/users/user-edit/user-edit.component.html</context><context context-type="linenumber">226</context></context-group></trans-unit> | 3490 | </trans-unit> |
3247 | <trans-unit id="1412406834353485520"> | 3491 | <trans-unit id="1412406834353485520"> |
3248 | <source>Ask for new password</source> | 3492 | <source>Ask for new password</source> |
3249 | <target>Vraag om een nieuw wachtwoord</target> | 3493 | <target>Vraag om een nieuw wachtwoord</target> |
3250 | 3494 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">227</context></context-group> | |
3251 | 3495 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">227</context></context-group> | |
3252 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/users/user-edit/user-edit.component.html</context><context context-type="linenumber">227</context></context-group></trans-unit> | 3496 | </trans-unit> |
3253 | <trans-unit id="3791201588898094481"> | 3497 | <trans-unit id="3791201588898094481"> |
3254 | <source>Manually set the user password</source> | 3498 | <source>Manually set the user password</source> |
3255 | <target>Stel het gebruikerswachtwoord handmatig in</target> | 3499 | <target>Stel het gebruikerswachtwoord handmatig in</target> |
3256 | 3500 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">231</context></context-group> | |
3257 | 3501 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">231</context></context-group> | |
3258 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/users/user-edit/user-edit.component.html</context><context context-type="linenumber">231</context></context-group></trans-unit> | 3502 | </trans-unit> |
3259 | <trans-unit id="8461842260159597706"> | 3503 | <trans-unit id="8461842260159597706"> |
3260 | <source>Show</source> | 3504 | <source>Show</source> |
3261 | <target>Tonen</target> | 3505 | <target>Tonen</target> |
@@ -3264,62 +3508,59 @@ Je kan nu al informatie toevoegen over deze video. | |||
3264 | <trans-unit id="8461609631969932886"> | 3508 | <trans-unit id="8461609631969932886"> |
3265 | <source>Hide</source> | 3509 | <source>Hide</source> |
3266 | <target>Verbergen</target> | 3510 | <target>Verbergen</target> |
3267 | 3511 | <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">115</context></context-group> | |
3268 | <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">115</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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-user-settings/user-video-settings.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 3512 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.html</context><context context-type="linenumber">11</context></context-group> |
3513 | <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> | ||
3514 | </trans-unit> | ||
3269 | <trans-unit id="7049348886126005391"> | 3515 | <trans-unit id="7049348886126005391"> |
3270 | <source>Batch actions</source> | 3516 | <source>Batch actions</source> |
3271 | <target>Batchacties</target> | 3517 | <target>Batchacties</target> |
3272 | 3518 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">23</context></context-group> | |
3273 | 3519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">13</context></context-group> | |
3274 | 3520 | </trans-unit> | |
3275 | |||
3276 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | ||
3277 | |||
3278 | |||
3279 | <trans-unit id="675721269041534709" datatype="html"> | 3521 | <trans-unit id="675721269041534709" datatype="html"> |
3280 | <source>The user was banned</source> | 3522 | <source>The user was banned</source> |
3281 | <target state="translated">De gebruiker is verbannen</target> | 3523 | <target state="translated">De gebruiker is verbannen</target> |
3282 | 3524 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">139</context></context-group> | |
3283 | 3525 | </trans-unit> | |
3284 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">139</context></context-group></trans-unit> | ||
3285 | <trans-unit id="2348557406282409966" datatype="html"> | 3526 | <trans-unit id="2348557406282409966" datatype="html"> |
3286 | <source>Open account in a new tab</source> | 3527 | <source>Open account in a new tab</source> |
3287 | <target state="translated">Account in nieuwe tab openen</target> | 3528 | <target state="translated">Account in nieuwe tab openen</target> |
3288 | 3529 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">70</context></context-group> | |
3289 | 3530 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">90</context></context-group> | |
3290 | 3531 | <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> | |
3291 | 3532 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">46</context></context-group> | |
3292 | 3533 | <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> | |
3293 | 3534 | <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> | |
3294 | 3535 | </trans-unit> | |
3295 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">70</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">90</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">46</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> | ||
3296 | <trans-unit id="3111569165173971676" datatype="html"> | 3536 | <trans-unit id="3111569165173971676" datatype="html"> |
3297 | <source>Deleted account</source> | 3537 | <source>Deleted account</source> |
3298 | <target state="translated">Verwijderde account</target> | 3538 | <target state="translated">Verwijderde account</target> |
3299 | 3539 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">57</context></context-group> | |
3300 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> | 3540 | </trans-unit> |
3301 | <trans-unit id="3254358851993549668"> | 3541 | <trans-unit id="3254358851993549668"> |
3302 | <source>User's email must be verified to login</source> | 3542 | <source>User's email must be verified to login</source> |
3303 | <target>Gebruiker's e-mail moet geverifieerd zijn om in te loggen</target> | 3543 | <target>Gebruiker's e-mail moet geverifieerd zijn om in te loggen</target> |
3304 | 3544 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">108</context></context-group> | |
3305 | 3545 | </trans-unit> | |
3306 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">108</context></context-group></trans-unit> | ||
3307 | <trans-unit id="3939342579126794385"> | 3546 | <trans-unit id="3939342579126794385"> |
3308 | <source>User's email is verified / User can login without email verification</source> | 3547 | <source>User's email is verified / User can login without email verification</source> |
3309 | <target>Gebruiker's e-mail is geverifieerd / Gebruiker kan inloggen zonder e-mailverificatie</target> | 3548 | <target>Gebruiker's e-mail is geverifieerd / Gebruiker kan inloggen zonder e-mailverificatie</target> |
3310 | 3549 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">112</context></context-group> | |
3311 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">112</context></context-group></trans-unit> | 3550 | </trans-unit> |
3312 | <trans-unit id="242888077027281874" datatype="html"> | 3551 | <trans-unit id="242888077027281874" datatype="html"> |
3313 | <source>Total daily video quota</source> | 3552 | <source>Total daily video quota</source> |
3314 | <target state="translated">Totaal dagelijks videoquotum</target> | 3553 | <target state="translated">Totaal dagelijks videoquotum</target> |
3315 | 3554 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">129</context></context-group> | |
3316 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">129</context></context-group></trans-unit> | 3555 | </trans-unit> |
3317 | <trans-unit id="1242902302929086301"> | 3556 | <trans-unit id="1242902302929086301"> |
3318 | <source>Ban reason:</source> | 3557 | <source>Ban reason:</source> |
3319 | <target>Reden van verbanning:</target> | 3558 | <target>Reden van verbanning:</target> |
3320 | 3559 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">156</context></context-group> | |
3321 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit><trans-unit id="6124612368324200166" datatype="html"> | 3560 | </trans-unit> |
3322 | <source>Banned users</source><target state="new">Banned users</target> | 3561 | <trans-unit id="6124612368324200166" datatype="html"> |
3562 | <source>Banned users</source> | ||
3563 | <target state="new">Banned users</target> | ||
3323 | <context-group purpose="location"> | 3564 | <context-group purpose="location"> |
3324 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> | 3565 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> |
3325 | <context context-type="linenumber">40</context> | 3566 | <context context-type="linenumber">40</context> |
@@ -3339,45 +3580,56 @@ Je kan nu al informatie toevoegen over deze video. | |||
3339 | <trans-unit id="1868606282505332204" datatype="html"> | 3580 | <trans-unit id="1868606282505332204" datatype="html"> |
3340 | <source>Reports</source> | 3581 | <source>Reports</source> |
3341 | <target state="translated">Aangiften</target> | 3582 | <target state="translated">Aangiften</target> |
3342 | 3583 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">53</context></context-group> | |
3343 | 3584 | <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> | |
3344 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">53</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">37</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> | 3585 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">37</context></context-group> |
3586 | <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> | ||
3587 | </trans-unit> | ||
3345 | <trans-unit id="746099155736913817" datatype="html"> | 3588 | <trans-unit id="746099155736913817" datatype="html"> |
3346 | <source>Video blocks</source> | 3589 | <source>Video blocks</source> |
3347 | <target state="translated">Videoblokkeringen</target> | 3590 | <target state="translated">Videoblokkeringen</target> |
3348 | 3591 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">60</context></context-group> | |
3349 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">60</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> | 3592 | <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> |
3593 | </trans-unit> | ||
3350 | <trans-unit id="7427986413651551775" datatype="html"> | 3594 | <trans-unit id="7427986413651551775" datatype="html"> |
3351 | <source>Video comments</source> | 3595 | <source>Video comments</source> |
3352 | <target state="translated">Reacties op video</target> | 3596 | <target state="translated">Reacties op video</target> |
3353 | 3597 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">67</context></context-group> | |
3354 | 3598 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">86</context></context-group> | |
3355 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">67</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">86</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group></trans-unit> | 3599 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group> |
3600 | </trans-unit> | ||
3356 | <trans-unit id="7815838401315213887" datatype="html"> | 3601 | <trans-unit id="7815838401315213887" datatype="html"> |
3357 | <source>Muted accounts</source> | 3602 | <source>Muted accounts</source> |
3358 | <target state="translated">Gedempte accounts</target> | 3603 | <target state="translated">Gedempte accounts</target> |
3359 | 3604 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">74</context></context-group> | |
3360 | 3605 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">98</context></context-group> | |
3361 | 3606 | <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> | |
3362 | 3607 | <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> | |
3363 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">74</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">98</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> | 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> |
3609 | <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> | ||
3610 | </trans-unit> | ||
3364 | <trans-unit id="5668793810321242853" datatype="html"> | 3611 | <trans-unit id="5668793810321242853" datatype="html"> |
3365 | <source>Muted servers</source> | 3612 | <source>Muted servers</source> |
3366 | <target state="translated">Gedempte servers</target> | 3613 | <target state="translated">Gedempte servers</target> |
3367 | 3614 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">81</context></context-group> | |
3368 | 3615 | <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> | |
3369 | 3616 | <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> | |
3370 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">81</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> | 3617 | <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> |
3618 | <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> | ||
3619 | </trans-unit> | ||
3371 | <trans-unit id="4555457172864212828" datatype="html"> | 3620 | <trans-unit id="4555457172864212828" datatype="html"> |
3372 | <source>Users</source> | 3621 | <source>Users</source> |
3373 | <target state="translated">Gebruikers</target> | 3622 | <target state="translated">Gebruikers</target> |
3374 | 3623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">88</context></context-group> | |
3375 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">88</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group></trans-unit> | 3624 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group> |
3625 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group> | ||
3626 | </trans-unit> | ||
3376 | <trans-unit id="3008420115644088420" datatype="html"> | 3627 | <trans-unit id="3008420115644088420" datatype="html"> |
3377 | <source>Configuration</source> | 3628 | <source>Configuration</source> |
3378 | <target state="translated">Configuratie</target> | 3629 | <target state="translated">Configuratie</target> |
3379 | 3630 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">95</context></context-group> | |
3380 | <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/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1</context></context-group></trans-unit> | 3631 | <context-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> |
3632 | </trans-unit> | ||
3381 | <trans-unit id="746099155736913817" datatype="html"> | 3633 | <trans-unit id="746099155736913817" datatype="html"> |
3382 | <source>Video blocks</source> | 3634 | <source>Video blocks</source> |
3383 | <target state="translated">Videoblokkeringen</target> | 3635 | <target state="translated">Videoblokkeringen</target> |
@@ -3395,15 +3647,12 @@ Je kan nu al informatie toevoegen over deze video. | |||
3395 | <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> | 3647 | <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> |
3396 | <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> | 3648 | <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> |
3397 | </trans-unit> | 3649 | </trans-unit> |
3398 | |||
3399 | |||
3400 | |||
3401 | <trans-unit id="2343069726009080052" datatype="html"> | 3650 | <trans-unit id="2343069726009080052" datatype="html"> |
3402 | <source>Video <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3651 | <source>Video <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3403 | <target state="translated">Video <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/></target> | 3652 | <target state="translated">Video <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/></target> |
3404 | 3653 | <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> | |
3405 | 3654 | <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> | |
3406 | <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> | 3655 | </trans-unit> |
3407 | <trans-unit id="3122686335401195400" datatype="html"> | 3656 | <trans-unit id="3122686335401195400" datatype="html"> |
3408 | <source>Total size</source> | 3657 | <source>Total size</source> |
3409 | <target state="translated">Totale grootte</target> | 3658 | <target state="translated">Totale grootte</target> |
@@ -3437,35 +3686,38 @@ Je kan nu al informatie toevoegen over deze video. | |||
3437 | <trans-unit id="7574091010118901399"> | 3686 | <trans-unit id="7574091010118901399"> |
3438 | <source>Sensitive</source> | 3687 | <source>Sensitive</source> |
3439 | <target>Gevoelig</target> | 3688 | <target>Gevoelig</target> |
3440 | 3689 | <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> | |
3441 | <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> | 3690 | </trans-unit> |
3442 | <trans-unit id="2478877938420291792"> | 3691 | <trans-unit id="2478877938420291792"> |
3443 | <source>Unfederated</source> | 3692 | <source>Unfederated</source> |
3444 | <target>Niet gefedereerd</target> | 3693 | <target>Niet gefedereerd</target> |
3445 | 3694 | <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> | |
3446 | 3695 | <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">71</context></context-group> | |
3447 | <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">71</context></context-group></trans-unit> | 3696 | </trans-unit> |
3448 | <trans-unit id="7692347838587821095"> | 3697 | <trans-unit id="7692347838587821095"> |
3449 | <source>Date <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3698 | <source>Date <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3450 | <target>Datum <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/></target> | 3699 | <target>Datum <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/></target> |
3451 | 3700 | <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> | |
3452 | 3701 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">45</context></context-group> | |
3453 | <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/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 3702 | </trans-unit> |
3454 | <trans-unit id="1451763834047485033" datatype="html"> | 3703 | <trans-unit id="1451763834047485033" datatype="html"> |
3455 | <source>Select this row</source> | 3704 | <source>Select this row</source> |
3456 | <target state="new">Select this row</target> | 3705 | <target state="new">Select this row</target> |
3457 | 3706 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">53</context></context-group> | |
3458 | 3707 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">74</context></context-group> | |
3459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">53</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit> | 3708 | </trans-unit> |
3460 | <trans-unit id="3193976279273491157"> | 3709 | <trans-unit id="3193976279273491157"> |
3461 | <source>Actions</source> | 3710 | <source>Actions</source> |
3462 | <target>Acties</target> | 3711 | <target>Acties</target> |
3463 | 3712 | <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> | |
3464 | 3713 | <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">45</context></context-group> | |
3465 | 3714 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">65</context></context-group> | |
3466 | 3715 | <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> | |
3467 | <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">45</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">65</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">41</context></context-group></trans-unit><trans-unit id="8390803680962035202" datatype="html"> | 3716 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">41</context></context-group> |
3468 | <source>Follower</source><target state="new">Follower</target> | 3717 | </trans-unit> |
3718 | <trans-unit id="8390803680962035202" datatype="html"> | ||
3719 | <source>Follower</source> | ||
3720 | <target state="new">Follower</target> | ||
3469 | <context-group purpose="location"> | 3721 | <context-group purpose="location"> |
3470 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> | 3722 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> |
3471 | <context context-type="linenumber">24</context> | 3723 | <context context-type="linenumber">24</context> |
@@ -3474,25 +3726,29 @@ Je kan nu al informatie toevoegen over deze video. | |||
3474 | <trans-unit id="4691552465058437520" datatype="html"> | 3726 | <trans-unit id="4691552465058437520" datatype="html"> |
3475 | <source>Commented video</source> | 3727 | <source>Commented video</source> |
3476 | <target state="translated">Video met reacties</target> | 3728 | <target state="translated">Video met reacties</target> |
3477 | 3729 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">82</context></context-group> | |
3478 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 3730 | </trans-unit> |
3479 | <trans-unit id="7266085473379376028" datatype="html"> | 3731 | <trans-unit id="7266085473379376028" datatype="html"> |
3480 | <source>No comments found matching current filters.</source> | 3732 | <source>No comments found matching current filters.</source> |
3481 | <target state="translated">Geen reacties gevonden op basis van huidige criteria.</target> | 3733 | <target state="translated">Geen reacties gevonden op basis van huidige criteria.</target> |
3482 | 3734 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">107</context></context-group> | |
3483 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> | 3735 | </trans-unit> |
3484 | <trans-unit id="2398388496754671928" datatype="html"> | 3736 | <trans-unit id="2398388496754671928" datatype="html"> |
3485 | <source>No comments found.</source> | 3737 | <source>No comments found.</source> |
3486 | <target state="translated">Geen reacties gevonden.</target> | 3738 | <target state="translated">Geen reacties gevonden.</target> |
3487 | 3739 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">108</context></context-group> | |
3488 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">108</context></context-group></trans-unit><trans-unit id="4604870995665811499" datatype="html"> | 3740 | </trans-unit> |
3489 | <source>Local comments</source><target state="new">Local comments</target> | 3741 | <trans-unit id="4604870995665811499" datatype="html"> |
3742 | <source>Local comments</source> | ||
3743 | <target state="new">Local comments</target> | ||
3490 | <context-group purpose="location"> | 3744 | <context-group purpose="location"> |
3491 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> | 3745 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> |
3492 | <context context-type="linenumber">48</context> | 3746 | <context context-type="linenumber">48</context> |
3493 | </context-group> | 3747 | </context-group> |
3494 | </trans-unit><trans-unit id="2721988499779041837" datatype="html"> | 3748 | </trans-unit> |
3495 | <source>Remote comments</source><target state="new">Remote comments</target> | 3749 | <trans-unit id="2721988499779041837" datatype="html"> |
3750 | <source>Remote comments</source> | ||
3751 | <target state="new">Remote comments</target> | ||
3496 | <context-group purpose="location"> | 3752 | <context-group purpose="location"> |
3497 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> | 3753 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context> |
3498 | <context context-type="linenumber">52</context> | 3754 | <context context-type="linenumber">52</context> |
@@ -3501,54 +3757,68 @@ Je kan nu al informatie toevoegen over deze video. | |||
3501 | <trans-unit id="1420624050293070194" datatype="html"> | 3757 | <trans-unit id="1420624050293070194" datatype="html"> |
3502 | <source>No abuses found matching current filters.</source> | 3758 | <source>No abuses found matching current filters.</source> |
3503 | <target state="translated">Geen misbruiken gevonden op basis van huidige filters.</target> | 3759 | <target state="translated">Geen misbruiken gevonden op basis van huidige filters.</target> |
3504 | 3760 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">166</context></context-group> | |
3505 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> | 3761 | </trans-unit> |
3506 | <trans-unit id="639328713281980021" datatype="html"> | 3762 | <trans-unit id="639328713281980021" datatype="html"> |
3507 | <source>No abuses found.</source> | 3763 | <source>No abuses found.</source> |
3508 | <target state="translated">Geen misbruiken gevonden.</target> | 3764 | <target state="translated">Geen misbruiken gevonden.</target> |
3509 | 3765 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">167</context></context-group> | |
3510 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit><trans-unit id="1807029821872995706" datatype="html"> | 3766 | </trans-unit> |
3511 | <source>Unsolved reports</source><target state="new">Unsolved reports</target> | 3767 | <trans-unit id="1807029821872995706" datatype="html"> |
3512 | 3768 | <source>Unsolved reports</source> | |
3513 | <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"> | 3769 | <target state="new">Unsolved reports</target> |
3514 | <source>Accepted reports</source><target state="new">Accepted reports</target> | 3770 | <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> |
3515 | 3771 | </trans-unit> | |
3516 | <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"> | 3772 | <trans-unit id="2570256912317308673" datatype="html"> |
3517 | <source>Refused reports</source><target state="new">Refused reports</target> | 3773 | <source>Accepted reports</source> |
3518 | 3774 | <target state="new">Accepted reports</target> | |
3519 | <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"> | 3775 | <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> |
3520 | <source>Reports with blocked videos</source><target state="new">Reports with blocked videos</target> | 3776 | </trans-unit> |
3521 | 3777 | <trans-unit id="4335414817109654558" datatype="html"> | |
3522 | <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"> | 3778 | <source>Refused reports</source> |
3523 | <source>Reports with deleted videos</source><target state="new">Reports with deleted videos</target> | 3779 | <target state="new">Refused reports</target> |
3524 | 3780 | <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> | |
3525 | <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> | 3781 | </trans-unit> |
3782 | <trans-unit id="5604806676748121035" datatype="html"> | ||
3783 | <source>Reports with blocked videos</source> | ||
3784 | <target state="new">Reports with blocked videos</target> | ||
3785 | <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> | ||
3786 | </trans-unit> | ||
3787 | <trans-unit id="5105869928182826553" datatype="html"> | ||
3788 | <source>Reports with deleted videos</source> | ||
3789 | <target state="new">Reports with deleted videos</target> | ||
3790 | <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> | ||
3791 | </trans-unit> | ||
3526 | <trans-unit id="4678289986918934018" datatype="html"> | 3792 | <trans-unit id="4678289986918934018" datatype="html"> |
3527 | <source>Block reason:</source> | 3793 | <source>Block reason:</source> |
3528 | <target state="translated">Reden blokkering:</target> | 3794 | <target state="translated">Reden blokkering:</target> |
3529 | 3795 | <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">87</context></context-group> | |
3530 | <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">87</context></context-group></trans-unit> | 3796 | </trans-unit> |
3531 | <trans-unit id="8390860433951751429" datatype="html"> | 3797 | <trans-unit id="8390860433951751429" datatype="html"> |
3532 | <source>No blocked video found matching current filters.</source> | 3798 | <source>No blocked video found matching current filters.</source> |
3533 | <target state="translated">Geen geblokkeerde video gevonden die aan de huidige criteria voldoet.</target> | 3799 | <target state="translated">Geen geblokkeerde video gevonden die aan de huidige criteria voldoet.</target> |
3534 | 3800 | <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">107</context></context-group> | |
3535 | <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">107</context></context-group></trans-unit> | 3801 | </trans-unit> |
3536 | <trans-unit id="5030329587275248535" datatype="html"> | 3802 | <trans-unit id="5030329587275248535" datatype="html"> |
3537 | <source>No blocked video found.</source> | 3803 | <source>No blocked video found.</source> |
3538 | <target state="translated">Geen geblokkeerde video gevonden.</target> | 3804 | <target state="translated">Geen geblokkeerde video gevonden.</target> |
3539 | 3805 | <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">108</context></context-group> | |
3540 | <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">108</context></context-group></trans-unit><trans-unit id="7755288609601798418" datatype="html"> | 3806 | </trans-unit> |
3541 | <source>Automatic blocks</source><target state="new">Automatic blocks</target> | 3807 | <trans-unit id="7755288609601798418" datatype="html"> |
3542 | 3808 | <source>Automatic blocks</source> | |
3543 | <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">32</context></context-group></trans-unit><trans-unit id="6510868134640657079" datatype="html"> | 3809 | <target state="new">Automatic blocks</target> |
3544 | <source>Manual blocks</source><target state="new">Manual blocks</target> | 3810 | <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">32</context></context-group> |
3545 | 3811 | </trans-unit> | |
3546 | <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">36</context></context-group></trans-unit> | 3812 | <trans-unit id="6510868134640657079" datatype="html"> |
3813 | <source>Manual blocks</source> | ||
3814 | <target state="new">Manual blocks</target> | ||
3815 | <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">36</context></context-group> | ||
3816 | </trans-unit> | ||
3547 | <trans-unit id="2143435845912984377" datatype="html"> | 3817 | <trans-unit id="2143435845912984377" datatype="html"> |
3548 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> blocked videos</source> | 3818 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> blocked videos</source> |
3549 | <target state="translated">Nu te zien: geblokkeerde video's <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> tot <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> van <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> geblokkeerde video's</target> | 3819 | <target state="translated">Nu te zien: geblokkeerde video's <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> tot <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> van <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> geblokkeerde video's</target> |
3550 | 3820 | <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> | |
3551 | <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> | 3821 | </trans-unit> |
3552 | <trans-unit id="1868606282505332204" datatype="html"> | 3822 | <trans-unit id="1868606282505332204" datatype="html"> |
3553 | <source>Reports</source> | 3823 | <source>Reports</source> |
3554 | <target state="translated">Aangiften</target> | 3824 | <target state="translated">Aangiften</target> |
@@ -3570,70 +3840,65 @@ Je kan nu al informatie toevoegen over deze video. | |||
3570 | <trans-unit id="3981851640772035362"> | 3840 | <trans-unit id="3981851640772035362"> |
3571 | <source>Update this comment</source> | 3841 | <source>Update this comment</source> |
3572 | <target>Werk deze comment bij</target> | 3842 | <target>Werk deze comment bij</target> |
3573 | 3843 | <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> | |
3574 | <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> | 3844 | </trans-unit> |
3575 | |||
3576 | |||
3577 | |||
3578 | |||
3579 | |||
3580 | |||
3581 | <trans-unit id="730589419287534524"> | 3845 | <trans-unit id="730589419287534524"> |
3582 | <source>Reporter</source> | 3846 | <source>Reporter</source> |
3583 | <target>Melder</target> | 3847 | <target>Melder</target> |
3584 | 3848 | <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> | |
3585 | 3849 | <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> | |
3586 | <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> | 3850 | </trans-unit> |
3587 | <trans-unit id="1258618443362430782" datatype="html"> | 3851 | <trans-unit id="1258618443362430782" datatype="html"> |
3588 | <source><x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 3852 | <source><x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {1 report} other {{{ abuse.countReportsForReporter }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
3589 | <target state="translated"><x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {...} other {...}}"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 3853 | <target state="translated"><x id="ICU" equiv-text="{abuse.countReportsForReporter, plural, =1 {...} other {...}}"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
3590 | 3854 | <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> | |
3591 | <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> | 3855 | <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> |
3856 | </trans-unit> | ||
3592 | <trans-unit id="6540177673229220400" datatype="html"> | 3857 | <trans-unit id="6540177673229220400" datatype="html"> |
3593 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> | 3858 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> |
3594 | <target state="translated">{VAR_PLURAL, plural, =1 {1 report} other { <x id="INTERPOLATION" equiv-text="{{ abuse.countReportsForReporter }}"/> reports} }</target> | 3859 | <target state="translated">{VAR_PLURAL, plural, =1 {1 report} other { <x id="INTERPOLATION" equiv-text="{{ abuse.countReportsForReporter }}"/> reports} }</target> |
3595 | 3860 | <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> | |
3596 | <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> | 3861 | <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> |
3862 | </trans-unit> | ||
3597 | <trans-unit id="6549265851868599441"> | 3863 | <trans-unit id="6549265851868599441"> |
3598 | <source>Video</source> | 3864 | <source>Video</source> |
3599 | <target>Video</target> | 3865 | <target>Video</target> |
3600 | 3866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">43</context></context-group> | |
3601 | 3867 | <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> | |
3602 | 3868 | <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> | |
3603 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">43</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> | 3869 | <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> |
3870 | </trans-unit> | ||
3604 | <trans-unit id="2662644497259948010" datatype="html"> | 3871 | <trans-unit id="2662644497259948010" datatype="html"> |
3605 | <source>Comment</source> | 3872 | <source>Comment</source> |
3606 | <target state="translated">Reageren</target> | 3873 | <target state="translated">Reageren</target> |
3607 | 3874 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">44</context></context-group> | |
3608 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit> | 3875 | </trans-unit> |
3609 | <trans-unit id="1359961255805685312" datatype="html"> | 3876 | <trans-unit id="1359961255805685312" datatype="html"> |
3610 | <source>This video has been reported multiple times.</source> | 3877 | <source>This video has been reported multiple times.</source> |
3611 | <target state="translated">Deze video is meerdere keren aangegeven.</target> | 3878 | <target state="translated">Deze video is meerdere keren aangegeven.</target> |
3612 | 3879 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">70</context></context-group> | |
3613 | 3880 | </trans-unit> | |
3614 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | ||
3615 | <trans-unit id="8103613717136753118" datatype="html"> | 3881 | <trans-unit id="8103613717136753118" datatype="html"> |
3616 | <source>The video was blocked</source> | 3882 | <source>The video was blocked</source> |
3617 | <target state="translated">De video is geblokkeerd</target> | 3883 | <target state="translated">De video is geblokkeerd</target> |
3618 | 3884 | <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> | |
3619 | 3885 | </trans-unit> | |
3620 | <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> | ||
3621 | <trans-unit id="5021295327106206941" datatype="html"> | 3886 | <trans-unit id="5021295327106206941" datatype="html"> |
3622 | <source>by <x id="INTERPOLATION"/> on <x id="INTERPOLATION_1"/> </source> | 3887 | <source>by <x id="INTERPOLATION"/> on <x id="INTERPOLATION_1"/> </source> |
3623 | <target state="translated">door <x id="INTERPOLATION" equiv-text="{{ abuse.video.channel?.displayName }}"/> op <x id="INTERPOLATION_1" equiv-text="{{ abuse.video.channel?.host }}"/> </target> | 3888 | <target state="translated">door <x id="INTERPOLATION" equiv-text="{{ abuse.video.channel?.displayName }}"/> op <x id="INTERPOLATION_1" equiv-text="{{ abuse.video.channel?.host }}"/> </target> |
3624 | 3889 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">82</context></context-group> | |
3625 | 3890 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">99</context></context-group> | |
3626 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</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.html</context><context context-type="linenumber">99</context></context-group></trans-unit> | 3891 | </trans-unit> |
3627 | <trans-unit id="1443698606045744844" datatype="html"> | 3892 | <trans-unit id="1443698606045744844" datatype="html"> |
3628 | <source>Video was deleted</source> | 3893 | <source>Video was deleted</source> |
3629 | <target state="translated">Video verwijderd</target> | 3894 | <target state="translated">Video verwijderd</target> |
3630 | 3895 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">89</context></context-group> | |
3631 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">89</context></context-group></trans-unit> | 3896 | </trans-unit> |
3632 | <trans-unit id="1530731524535521716" datatype="html"> | 3897 | <trans-unit id="1530731524535521716" datatype="html"> |
3633 | <source>Account deleted</source> | 3898 | <source>Account deleted</source> |
3634 | <target state="translated">Account verwijderd</target> | 3899 | <target state="translated">Account verwijderd</target> |
3635 | 3900 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">125</context></context-group> | |
3636 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">125</context></context-group></trans-unit> | 3901 | </trans-unit> |
3637 | <trans-unit id="1191715835847858871" datatype="html"> | 3902 | <trans-unit id="1191715835847858871" datatype="html"> |
3638 | <source>Open video in a new tab</source> | 3903 | <source>Open video in a new tab</source> |
3639 | <target state="translated">Video in een nieuwe tab openen</target> | 3904 | <target state="translated">Video in een nieuwe tab openen</target> |
@@ -3642,128 +3907,128 @@ Je kan nu al informatie toevoegen over deze video. | |||
3642 | <trans-unit id="3301856295120048857"> | 3907 | <trans-unit id="3301856295120048857"> |
3643 | <source>State <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3908 | <source>State <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3644 | <target>Toestand <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/></target> | 3909 | <target>Toestand <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/></target> |
3645 | 3910 | <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> | |
3646 | 3911 | <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> | |
3647 | 3912 | <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> | |
3648 | <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> | 3913 | </trans-unit> |
3649 | <trans-unit id="6452372740127749380" datatype="html"> | 3914 | <trans-unit id="6452372740127749380" datatype="html"> |
3650 | <source>Messages</source> | 3915 | <source>Messages</source> |
3651 | <target state="translated">Berichten</target> | 3916 | <target state="translated">Berichten</target> |
3652 | 3917 | <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> | |
3653 | <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> | 3918 | </trans-unit> |
3654 | <trans-unit id="1969144763032891922" datatype="html"> | 3919 | <trans-unit id="1969144763032891922" datatype="html"> |
3655 | <source>Internal note</source> | 3920 | <source>Internal note</source> |
3656 | <target state="translated">Interne nota</target> | 3921 | <target state="translated">Interne nota</target> |
3657 | 3922 | <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> | |
3658 | <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> | 3923 | </trans-unit> |
3659 | <trans-unit id="7418735164633152705" datatype="html"> | 3924 | <trans-unit id="7418735164633152705" datatype="html"> |
3660 | <source>Score <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3925 | <source>Score <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3661 | <target state="translated">Score <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/></target> | 3926 | <target state="translated">Score <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/></target> |
3662 | 3927 | <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> | |
3663 | <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> | 3928 | </trans-unit> |
3664 | <trans-unit id="9173448803033928792" datatype="html"> | 3929 | <trans-unit id="9173448803033928792" datatype="html"> |
3665 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> reports</source> | 3930 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> reports</source> |
3666 | <target state="translated">Nu te zien: <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> tot <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> van <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> aangiften</target> | 3931 | <target state="translated">Nu te zien: <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> tot <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> van <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> aangiften</target> |
3667 | 3932 | <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> | |
3668 | <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> | 3933 | </trans-unit> |
3669 | <trans-unit id="3109314382334906782" datatype="html"> | 3934 | <trans-unit id="3109314382334906782" datatype="html"> |
3670 | <source>Reportee</source> | 3935 | <source>Reportee</source> |
3671 | <target state="translated">Aangegevene</target> | 3936 | <target state="translated">Aangegevene</target> |
3672 | 3937 | <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> | |
3673 | <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> | 3938 | </trans-unit> |
3674 | <trans-unit id="1258618443362430782" datatype="html"> | 3939 | <trans-unit id="1258618443362430782" datatype="html"> |
3675 | <source><x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {1 report} other {{{ abuse.countReportsForReportee }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> | 3940 | <source><x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {1 report} other {{{ abuse.countReportsForReportee }} reports}}"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="ml-1 glyphicon glyphicon-flag">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source> |
3676 | <target state="translated"><x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {...} other {...}}"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> | 3941 | <target state="translated"><x id="ICU" equiv-text="{abuse.countReportsForReportee, plural, =1 {...} other {...}}"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span>"/> <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target> |
3677 | 3942 | <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> | |
3678 | <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> | 3943 | </trans-unit> |
3679 | <trans-unit id="6540177673229220400" datatype="html"> | 3944 | <trans-unit id="6540177673229220400" datatype="html"> |
3680 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> | 3945 | <source>{VAR_PLURAL, plural, =1 {1 report} other {<x id="INTERPOLATION"/> reports}}</source> |
3681 | <target state="translated">{VAR_PLURAL, plural, =1 {1 report} other { <x id="INTERPOLATION" equiv-text="{{ abuse.countReportsForReportee }}"/> reports} }</target> | 3946 | <target state="translated">{VAR_PLURAL, plural, =1 {1 report} other { <x id="INTERPOLATION" equiv-text="{{ abuse.countReportsForReportee }}"/> reports} }</target> |
3682 | 3947 | <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> | |
3683 | <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> | 3948 | </trans-unit> |
3684 | <trans-unit id="7239750919884229270" datatype="html"> | 3949 | <trans-unit id="7239750919884229270" datatype="html"> |
3685 | <source>Updated</source> | 3950 | <source>Updated</source> |
3686 | <target state="translated">Bijgewerkt</target> | 3951 | <target state="translated">Bijgewerkt</target> |
3687 | 3952 | <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> | |
3688 | <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> | 3953 | </trans-unit> |
3689 | <trans-unit id="6409548912081699487" datatype="html"> | 3954 | <trans-unit id="6409548912081699487" datatype="html"> |
3690 | <source>Mute domain</source> | 3955 | <source>Mute domain</source> |
3691 | <target state="translated">Domein dempen</target> | 3956 | <target state="translated">Domein dempen</target> |
3692 | 3957 | <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> | |
3693 | 3958 | <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> | |
3694 | <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> | 3959 | </trans-unit> |
3695 | <trans-unit id="2381859602529023966"> | 3960 | <trans-unit id="2381859602529023966"> |
3696 | <source>Instance</source> | 3961 | <source>Instance</source> |
3697 | <target>Exemplaar van PeerTube</target> | 3962 | <target>Exemplaar van PeerTube</target> |
3698 | 3963 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about.component.html</context><context context-type="linenumber">5</context></context-group> | |
3699 | 3964 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">192</context></context-group> | |
3700 | 3965 | <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> | |
3701 | 3966 | <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> | |
3702 | <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">192</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> | 3967 | </trans-unit> |
3703 | <trans-unit id="1300704815627663264"> | 3968 | <trans-unit id="1300704815627663264"> |
3704 | <source>Muted at <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> | 3969 | <source>Muted at <x id="START_TAG_P_SORTICON"/><x id="CLOSE_TAG_P_SORTICON"/></source> |
3705 | <target>Gedempt bij <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/></target> | 3970 | <target>Gedempt bij <x id="START_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="<p-sortIcon>"/> <x id="CLOSE_TAG_P-SORTICON" ctype="x-p-sortIcon" equiv-text="</p-sortIcon>"/></target> |
3706 | 3971 | <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> | |
3707 | 3972 | <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> | |
3708 | 3973 | <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> | |
3709 | 3974 | <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> | |
3710 | <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> | 3975 | </trans-unit> |
3711 | <trans-unit id="6453471031802119612"> | 3976 | <trans-unit id="6453471031802119612"> |
3712 | <source>Unmute</source> | 3977 | <source>Unmute</source> |
3713 | <target>Demping opheffen</target> | 3978 | <target>Demping opheffen</target> |
3714 | 3979 | <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> | |
3715 | 3980 | <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> | |
3716 | 3981 | <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> | |
3717 | 3982 | <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> | |
3718 | <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> | 3983 | </trans-unit> |
3719 | <trans-unit id="6728985502447585050" datatype="html"> | 3984 | <trans-unit id="6728985502447585050" datatype="html"> |
3720 | <source>No server found matching current filters.</source> | 3985 | <source>No server found matching current filters.</source> |
3721 | <target state="translated">Geen server gevonden op basis van de huidige criteria.</target> | 3986 | <target state="translated">Geen server gevonden op basis van de huidige criteria.</target> |
3722 | 3987 | <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> | |
3723 | 3988 | <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> | |
3724 | <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> | 3989 | </trans-unit> |
3725 | <trans-unit id="299774363533169870" datatype="html"> | 3990 | <trans-unit id="299774363533169870" datatype="html"> |
3726 | <source>No server found.</source> | 3991 | <source>No server found.</source> |
3727 | <target state="translated">Geen server gevonden.</target> | 3992 | <target state="translated">Geen server gevonden.</target> |
3728 | 3993 | <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> | |
3729 | 3994 | <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> | |
3730 | <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> | 3995 | </trans-unit> |
3731 | <trans-unit id="6250599179731937899" datatype="html"> | 3996 | <trans-unit id="6250599179731937899" datatype="html"> |
3732 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted instances</source> | 3997 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted instances</source> |
3733 | <target state="translated">Nu te zien: <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> tot <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> van <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> gedempte exemplaren van PeerTube</target> | 3998 | <target state="translated">Nu te zien: <x id="INTERPOLATION" equiv-text="{{'{first}'}}"/> tot <x id="INTERPOLATION_1" equiv-text="{{'{last}'}}"/> van <x id="INTERPOLATION_2" equiv-text="{{'{totalRecords}'}}"/> gedempte exemplaren van PeerTube</target> |
3734 | 3999 | <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> | |
3735 | 4000 | <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> | |
3736 | <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> | 4001 | </trans-unit> |
3737 | <trans-unit id="4917252294930256268" datatype="html"> | 4002 | <trans-unit id="4917252294930256268" datatype="html"> |
3738 | <source>It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers.</source> | 4003 | <source>It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers.</source> |
3739 | <target state="translated">Het lijkt dat je niet op een HTTPS-server zit. Om een andere server te volgen is TLS op jouw webserver vereist.</target> | 4004 | <target state="translated">Het lijkt dat je niet op een HTTPS-server zit. Om een andere server te volgen is TLS op jouw webserver vereist.</target> |
3740 | 4005 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context><context context-type="linenumber">28</context></context-group> | |
3741 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4006 | </trans-unit> |
3742 | <trans-unit id="4058814854824495833" datatype="html"> | 4007 | <trans-unit id="4058814854824495833" datatype="html"> |
3743 | <source>Mute domains</source> | 4008 | <source>Mute domains</source> |
3744 | <target state="translated">Domeinen dempen</target> | 4009 | <target state="translated">Domeinen dempen</target> |
3745 | 4010 | <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> | |
3746 | 4011 | <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> | |
3747 | <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> | 4012 | </trans-unit> |
3748 | <trans-unit id="4086606389696938932"> | 4013 | <trans-unit id="4086606389696938932"> |
3749 | <source>Account</source> | 4014 | <source>Account</source> |
3750 | <target>Account</target> | 4015 | <target>Account</target> |
3751 | 4016 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">42</context></context-group> | |
3752 | 4017 | <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> | |
3753 | 4018 | <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> | |
3754 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">42</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> | 4019 | </trans-unit> |
3755 | <trans-unit id="8564972645418093229" datatype="html"> | 4020 | <trans-unit id="8564972645418093229" datatype="html"> |
3756 | <source>No account found matching current filters.</source> | 4021 | <source>No account found matching current filters.</source> |
3757 | <target state="translated">Geen account gevonden op basis van huidige criteria.</target> | 4022 | <target state="translated">Geen account gevonden op basis van huidige criteria.</target> |
3758 | 4023 | <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> | |
3759 | 4024 | <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> | |
3760 | <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> | 4025 | </trans-unit> |
3761 | <trans-unit id="3819155299647062711" datatype="html"> | 4026 | <trans-unit id="3819155299647062711" datatype="html"> |
3762 | <source>No account found.</source> | 4027 | <source>No account found.</source> |
3763 | <target state="translated">Geen account gevonden.</target> | 4028 | <target state="translated">Geen account gevonden.</target> |
3764 | 4029 | <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> | |
3765 | 4030 | <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> | |
3766 | <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> | 4031 | </trans-unit> |
3767 | <trans-unit id="2338185419645468935" datatype="html"> | 4032 | <trans-unit id="2338185419645468935" datatype="html"> |
3768 | <source>List installed plugins</source> | 4033 | <source>List installed plugins</source> |
3769 | <target state="translated">Geïnstalleerde plugins oplijsten</target> | 4034 | <target state="translated">Geïnstalleerde plugins oplijsten</target> |
@@ -3805,10 +4070,14 @@ Je kan nu al informatie toevoegen over deze video. | |||
3805 | <trans-unit id="4580988005648117665"> | 4070 | <trans-unit id="4580988005648117665"> |
3806 | <source>Search</source> | 4071 | <source>Search</source> |
3807 | <target>Zoeken</target> | 4072 | <target>Zoeken</target> |
3808 | 4073 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">5</context></context-group> | |
3809 | 4074 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">12</context></context-group> | |
3810 | 4075 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">260</context></context-group> | |
3811 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">5</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">260</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> | 4076 | <context-group purpose="location"><context context-type="sourcefile">src/app/header/search-typeahead.component.html</context><context context-type="linenumber">8</context></context-group> |
4077 | <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> | ||
4078 | <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> | ||
4079 | <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> | ||
4080 | </trans-unit> | ||
3812 | <trans-unit id="8630916846096019339" datatype="html"> | 4081 | <trans-unit id="8630916846096019339" datatype="html"> |
3813 | <source>Users can resolve distant content</source> | 4082 | <source>Users can resolve distant content</source> |
3814 | <target state="translated">Gebruikers kunnen inhoud van elders opvragen</target> | 4083 | <target state="translated">Gebruikers kunnen inhoud van elders opvragen</target> |
@@ -3823,10 +4092,11 @@ Je kan nu al informatie toevoegen over deze video. | |||
3823 | <trans-unit id="4930506384627295710"> | 4092 | <trans-unit id="4930506384627295710"> |
3824 | <source>Settings</source> | 4093 | <source>Settings</source> |
3825 | <target>Instellingen</target> | 4094 | <target>Instellingen</target> |
3826 | 4095 | <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">27</context></context-group> | |
3827 | 4096 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">53</context></context-group> | |
3828 | 4097 | <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> | |
3829 | <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">27</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">53</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> | 4098 | <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> |
4099 | </trans-unit> | ||
3830 | <trans-unit id="4786000816576841850" datatype="html"> | 4100 | <trans-unit id="4786000816576841850" datatype="html"> |
3831 | <source>Display settings</source> | 4101 | <source>Display settings</source> |
3832 | <target state="translated">Scherminstellingen</target> | 4102 | <target state="translated">Scherminstellingen</target> |
@@ -3835,23 +4105,32 @@ Je kan nu al informatie toevoegen over deze video. | |||
3835 | <trans-unit id="4474510732215437338"> | 4105 | <trans-unit id="4474510732215437338"> |
3836 | <source>Uninstall</source> | 4106 | <source>Uninstall</source> |
3837 | <target>Verwijderen</target> | 4107 | <target>Verwijderen</target> |
3838 | 4108 | <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">36</context></context-group> | |
3839 | <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">36</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">111</context></context-group></trans-unit><trans-unit id="2144158274184161635" datatype="html"> | 4109 | <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> |
3840 | <source>Videos with the most interactions for recent videos</source><target state="new">Videos with the most interactions for recent videos</target> | 4110 | </trans-unit> |
3841 | 4111 | <trans-unit id="2144158274184161635" datatype="html"> | |
3842 | <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"> | 4112 | <source>Videos with the most interactions for recent videos</source> |
3843 | <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> | 4113 | <target state="new">Videos with the most interactions for recent videos</target> |
3844 | 4114 | <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> | |
3845 | <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"> | 4115 | </trans-unit> |
3846 | <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> | 4116 | <trans-unit id="8312243926314494468" datatype="html"> |
4117 | <source>Videos with the most views during the last 24 hours</source> | ||
4118 | <target state="new">Videos with the most views during the last 24 hours</target> | ||
4119 | <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> | ||
4120 | </trans-unit> | ||
4121 | <trans-unit id="8731139416455609016" datatype="html"> | ||
4122 | <source>Videos with the most views during the last <x id="PH" equiv-text="this.trendingDays"/> days</source> | ||
4123 | <target state="new">Videos with the most views during the last <x id="PH" equiv-text="this.trendingDays"/> days</target> | ||
3847 | <context-group purpose="location"> | 4124 | <context-group purpose="location"> |
3848 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> | 4125 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> |
3849 | <context context-type="linenumber">209</context> | 4126 | <context context-type="linenumber">209</context> |
3850 | </context-group> | 4127 | </context-group> |
3851 | </trans-unit><trans-unit id="1671858302647356245" datatype="html"> | 4128 | </trans-unit> |
3852 | <source>Videos that have the most likes</source><target state="new">Videos that have the most likes</target> | 4129 | <trans-unit id="1671858302647356245" datatype="html"> |
3853 | 4130 | <source>Videos that have the most likes</source> | |
3854 | <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> | 4131 | <target state="new">Videos that have the most likes</target> |
4132 | <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> | ||
4133 | </trans-unit> | ||
3855 | <trans-unit id="2006841089844688970"> | 4134 | <trans-unit id="2006841089844688970"> |
3856 | <source>To load your new installed plugins or themes, refresh the page.</source> | 4135 | <source>To load your new installed plugins or themes, refresh the page.</source> |
3857 | <target> | 4136 | <target> |
@@ -3863,14 +4142,15 @@ Je kan nu al informatie toevoegen over deze video. | |||
3863 | <source>Popular</source> | 4142 | <source>Popular</source> |
3864 | <target>Populair</target> | 4143 | <target>Populair</target> |
3865 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">16</context></context-group> | 4144 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">16</context></context-group> |
3866 | </trans-unit><trans-unit id="1780056719120519633" datatype="html"> | 4145 | </trans-unit> |
3867 | <source> <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 }}"/>" </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> | 4146 | <trans-unit id="1780056719120519633" datatype="html"> |
4147 | <source><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 }}"/>" </source> | ||
4148 | <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> | ||
3868 | <context-group purpose="location"> | 4149 | <context-group purpose="location"> |
3869 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> | 4150 | <context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context> |
3870 | <context context-type="linenumber">22,24</context> | 4151 | <context context-type="linenumber">22,24</context> |
3871 | </context-group> | 4152 | </context-group> |
3872 | </trans-unit> | 4153 | </trans-unit> |
3873 | |||
3874 | <trans-unit id="3148804384763272950"> | 4154 | <trans-unit id="3148804384763272950"> |
3875 | <source>{VAR_PLURAL, plural, =1 {result} other {results} }</source> | 4155 | <source>{VAR_PLURAL, plural, =1 {result} other {results} }</source> |
3876 | <target>{VAR_PLURAL, plural, =1 {result} other {results} }</target> | 4156 | <target>{VAR_PLURAL, plural, =1 {result} other {results} }</target> |
@@ -3906,54 +4186,59 @@ Je kan nu al informatie toevoegen over deze video. | |||
3906 | <trans-unit id="3229595422546554334"> | 4186 | <trans-unit id="3229595422546554334"> |
3907 | <source>Jobs</source> | 4187 | <source>Jobs</source> |
3908 | <target>Taken</target> | 4188 | <target>Taken</target> |
3909 | 4189 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">3</context></context-group> | |
3910 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">3</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 4190 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">26</context></context-group> |
4191 | </trans-unit> | ||
3911 | <trans-unit id="4804785061014590286"> | 4192 | <trans-unit id="4804785061014590286"> |
3912 | <source>Logs</source> | 4193 | <source>Logs</source> |
3913 | <target>Logboeken</target> | 4194 | <target>Logboeken</target> |
3914 | 4195 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">5</context></context-group> | |
3915 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">5</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 4196 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">37</context></context-group> |
4197 | </trans-unit> | ||
3916 | <trans-unit id="3422890808980876594"> | 4198 | <trans-unit id="3422890808980876594"> |
3917 | <source>Debug</source> | 4199 | <source>Debug</source> |
3918 | <target>Debug</target> | 4200 | <target>Debug</target> |
3919 | 4201 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">7</context></context-group> | |
3920 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.component.html</context><context context-type="linenumber">7</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 4202 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/system.routes.ts</context><context context-type="linenumber">48</context></context-group> |
4203 | </trans-unit> | ||
3921 | <trans-unit id="8949443215142664126" datatype="html"> | 4204 | <trans-unit id="8949443215142664126" datatype="html"> |
3922 | <source>Delete this comment</source> | 4205 | <source>Delete this comment</source> |
3923 | <target state="translated">Deze reactie verwijderen</target> | 4206 | <target state="translated">Deze reactie verwijderen</target> |
3924 | 4207 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">75</context></context-group> | |
3925 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">75</context></context-group></trans-unit> | 4208 | </trans-unit> |
3926 | <trans-unit id="3327751240218085797" datatype="html"> | 4209 | <trans-unit id="3327751240218085797" datatype="html"> |
3927 | <source>Delete all comments of this account</source> | 4210 | <source>Delete all comments of this account</source> |
3928 | <target state="translated">Alle reacties van deze account verwijderen</target> | 4211 | <target state="translated">Alle reacties van deze account verwijderen</target> |
3929 | 4212 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">81</context></context-group> | |
3930 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 4213 | </trans-unit> |
3931 | <trans-unit id="2850960459131251840" datatype="html"> | 4214 | <trans-unit id="2850960459131251840" datatype="html"> |
3932 | <source>Comments are deleted after a few minutes</source> | 4215 | <source>Comments are deleted after a few minutes</source> |
3933 | <target state="translated">Reacties worden na enkele minuten verwijderd</target> | 4216 | <target state="translated">Reacties worden na enkele minuten verwijderd</target> |
3934 | 4217 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">82</context></context-group> | |
3935 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 4218 | </trans-unit> |
3936 | <trans-unit id="545410448674339480" datatype="html"> | 4219 | <trans-unit id="545410448674339480" datatype="html"> |
3937 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source> | 4220 | <source><x id="PH" equiv-text="commentArgs.length"/> comments deleted.</source> |
3938 | <target state="translated"><x id="PH" equiv-text="commentArgs.length"/> reacties verwijderd.</target> | 4221 | <target state="translated"><x id="PH" equiv-text="commentArgs.length"/> reacties verwijderd.</target> |
3939 | 4222 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">143</context></context-group> | |
3940 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">143</context></context-group></trans-unit> | 4223 | </trans-unit> |
3941 | <trans-unit id="379090446060940062" datatype="html"> | 4224 | <trans-unit id="379090446060940062" datatype="html"> |
3942 | <source>Do you really want to delete all comments of <x id="PH"/>?</source> | 4225 | <source>Do you really want to delete all comments of <x id="PH"/>?</source> |
3943 | <target state="translated">Wil je werkelijk alle reacties van <x id="PH"/> verwijderen?</target> | 4226 | <target state="translated">Wil je werkelijk alle reacties van <x id="PH"/> verwijderen?</target> |
3944 | 4227 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">163</context></context-group> | |
3945 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 4228 | </trans-unit> |
3946 | <trans-unit id="4539246224625965241" datatype="html"> | 4229 | <trans-unit id="4539246224625965241" datatype="html"> |
3947 | <source>Comments of <x id="PH"/> will be deleted in a few minutes</source> | 4230 | <source>Comments of <x id="PH"/> will be deleted in a few minutes</source> |
3948 | <target state="translated">Reacties van <x id="PH"/> worden binnen enkele minuten verwijderd</target> | 4231 | <target state="translated">Reacties van <x id="PH"/> worden binnen enkele minuten verwijderd</target> |
3949 | 4232 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">175</context></context-group> | |
3950 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">175</context></context-group></trans-unit> | 4233 | </trans-unit> |
3951 | <trans-unit id="7427986413651551775" datatype="html"> | 4234 | <trans-unit id="7427986413651551775" datatype="html"> |
3952 | <source>Video comments</source> | 4235 | <source>Video comments</source> |
3953 | <target state="translated">Reacties op video</target> | 4236 | <target state="translated">Reacties op video</target> |
3954 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group> | 4237 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group> |
3955 | </trans-unit><trans-unit id="289582790179344391" datatype="html"> | 4238 | </trans-unit> |
3956 | <source>This view also shows comments from muted accounts.</source><target state="new">This view also shows comments from muted accounts.</target> | 4239 | <trans-unit id="289582790179344391" datatype="html"> |
4240 | <source>This view also shows comments from muted accounts.</source> | ||
4241 | <target state="new">This view also shows comments from muted accounts.</target> | ||
3957 | <context-group purpose="location"> | 4242 | <context-group purpose="location"> |
3958 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> | 4243 | <context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context> |
3959 | <context context-type="linenumber">8</context> | 4244 | <context context-type="linenumber">8</context> |
@@ -3962,17 +4247,14 @@ Je kan nu al informatie toevoegen over deze video. | |||
3962 | <trans-unit id="4523382115569186450" datatype="html"> | 4247 | <trans-unit id="4523382115569186450" datatype="html"> |
3963 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> comments</source> | 4248 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> comments</source> |
3964 | <target state="translated">Nu te zien: reacties <x id="INTERPOLATION"/> tot <x id="INTERPOLATION_1"/> van <x id="INTERPOLATION_2"/></target> | 4249 | <target state="translated">Nu te zien: reacties <x id="INTERPOLATION"/> tot <x id="INTERPOLATION_1"/> van <x id="INTERPOLATION_2"/></target> |
3965 | 4250 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">15</context></context-group> | |
3966 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">15</context></context-group></trans-unit> | 4251 | </trans-unit> |
3967 | |||
3968 | |||
3969 | |||
3970 | <trans-unit id="6110554376228744887" datatype="html"> | 4252 | <trans-unit id="6110554376228744887" datatype="html"> |
3971 | <source>Select all rows</source> | 4253 | <source>Select all rows</source> |
3972 | <target state="new">Select all rows</target> | 4254 | <target state="new">Select all rows</target> |
3973 | 4255 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">38</context></context-group> | |
3974 | 4256 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">34</context></context-group> | |
3975 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">38</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">34</context></context-group></trans-unit> | 4257 | </trans-unit> |
3976 | <trans-unit id="2719284837486030903" datatype="html"> | 4258 | <trans-unit id="2719284837486030903" datatype="html"> |
3977 | <source>Job type</source> | 4259 | <source>Job type</source> |
3978 | <target state="translated">Type taak</target> | 4260 | <target state="translated">Type taak</target> |
@@ -3995,20 +4277,24 @@ Je kan nu al informatie toevoegen over deze video. | |||
3995 | <trans-unit id="3067132953487445901" datatype="html"> | 4277 | <trans-unit id="3067132953487445901" datatype="html"> |
3996 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> jobs</source> | 4278 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> jobs</source> |
3997 | <target state="translated">Nu te zien: <x id="INTERPOLATION"/> tot <x id="INTERPOLATION_1"/> van <x id="INTERPOLATION_2"/> taken</target> | 4279 | <target state="translated">Nu te zien: <x id="INTERPOLATION"/> tot <x id="INTERPOLATION_1"/> van <x id="INTERPOLATION_2"/> taken</target> |
3998 | 4280 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">39</context></context-group> | |
3999 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4281 | </trans-unit> |
4000 | <trans-unit id="8650499415827640724"> | 4282 | <trans-unit id="8650499415827640724"> |
4001 | <source>Type</source> | 4283 | <source>Type</source> |
4002 | <target>Type</target> | 4284 | <target>Type</target> |
4003 | 4285 | <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> | |
4004 | <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></trans-unit><trans-unit id="3901868627411944813" datatype="html"> | 4286 | </trans-unit> |
4005 | <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><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> | 4287 | <trans-unit id="3901868627411944813" datatype="html"> |
4288 | <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> | ||
4289 | <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> | ||
4006 | <context-group purpose="location"> | 4290 | <context-group purpose="location"> |
4007 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> | 4291 | <context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context> |
4008 | <context context-type="linenumber">47</context> | 4292 | <context context-type="linenumber">47</context> |
4009 | </context-group> | 4293 | </context-group> |
4010 | </trans-unit><trans-unit id="3419681791450150574" datatype="html"> | 4294 | </trans-unit> |
4011 | <source>Progress</source><target state="new">Progress</target> | 4295 | <trans-unit id="3419681791450150574" datatype="html"> |
4296 | <source>Progress</source> | ||
4297 | <target state="new">Progress</target> | ||
4012 | <context-group purpose="location"> | 4298 | <context-group purpose="location"> |
4013 | <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> |
4014 | <context context-type="linenumber">49</context> | 4300 | <context context-type="linenumber">49</context> |
@@ -4017,28 +4303,29 @@ Je kan nu al informatie toevoegen over deze video. | |||
4017 | <trans-unit id="914197284349366734" datatype="html"> | 4303 | <trans-unit id="914197284349366734" datatype="html"> |
4018 | <source>No jobs found.</source> | 4304 | <source>No jobs found.</source> |
4019 | <target state="translated">Geen taken gevonden.</target> | 4305 | <target state="translated">Geen taken gevonden.</target> |
4020 | 4306 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">107</context></context-group> | |
4021 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> | 4307 | </trans-unit> |
4022 | <trans-unit id="2713421326605345655" datatype="html"> | 4308 | <trans-unit id="2713421326605345655" datatype="html"> |
4023 | <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> | 4309 | <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> |
4024 | <target state="translated">Geen <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> "/> taken gevonden.</target> | 4310 | <target state="translated">Geen <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> "/> taken gevonden.</target> |
4025 | 4311 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">108</context></context-group> | |
4026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">108</context></context-group></trans-unit> | 4312 | </trans-unit> |
4027 | <trans-unit id="2384897339170501794" datatype="html"> | 4313 | <trans-unit id="2384897339170501794" datatype="html"> |
4028 | <source>No <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> jobs found.</source> | 4314 | <source>No <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> jobs found.</source> |
4029 | <target state="translated">Geen <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> taken gevonden.</target> | 4315 | <target state="translated">Geen <x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> taken gevonden.</target> |
4030 | 4316 | <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> | |
4031 | <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> | 4317 | </trans-unit> |
4032 | <trans-unit id="4457061340457477073" datatype="html"> | 4318 | <trans-unit id="4457061340457477073" datatype="html"> |
4033 | <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> | 4319 | <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> |
4034 | <target state="translated">Geen <x id="START_TAG_CODE"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_CODE"/> taken gevonden die <x id="START_TAG_SPAN"/><x id="INTERPOLATION_1"/><x id="CLOSE_TAG_SPAN"/> zijn.</target> | 4320 | <target state="translated">Geen <x id="START_TAG_CODE"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_CODE"/> taken gevonden die <x id="START_TAG_SPAN"/><x id="INTERPOLATION_1"/><x id="CLOSE_TAG_SPAN"/> zijn.</target> |
4035 | 4321 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">112</context></context-group> | |
4036 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/jobs/jobs.component.html</context><context context-type="linenumber">112</context></context-group></trans-unit> | 4322 | </trans-unit> |
4037 | <trans-unit id="1102717806459547726"> | 4323 | <trans-unit id="1102717806459547726"> |
4038 | <source>Refresh</source> | 4324 | <source>Refresh</source> |
4039 | <target>Verversen</target> | 4325 | <target>Verversen</target> |
4040 | 4326 | <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> | |
4041 | <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">34</context></context-group></trans-unit> | 4327 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">34</context></context-group> |
4328 | </trans-unit> | ||
4042 | <trans-unit id="6052766076365105714" datatype="html"> | 4329 | <trans-unit id="6052766076365105714" datatype="html"> |
4043 | <source>now</source> | 4330 | <source>now</source> |
4044 | <target state="translated">nu</target> | 4331 | <target state="translated">nu</target> |
@@ -4057,110 +4344,110 @@ Je kan nu al informatie toevoegen over deze video. | |||
4057 | <trans-unit id="7396175500300709096" datatype="html"> | 4344 | <trans-unit id="7396175500300709096" datatype="html"> |
4058 | <source>INSTANCE</source> | 4345 | <source>INSTANCE</source> |
4059 | <target state="translated">EXEMPLAAR VAN PEERTUBE</target> | 4346 | <target state="translated">EXEMPLAAR VAN PEERTUBE</target> |
4060 | 4347 | <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">7</context></context-group> | |
4061 | <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">7</context></context-group></trans-unit> | 4348 | </trans-unit> |
4062 | <trans-unit id="8953033926734869941"> | 4349 | <trans-unit id="8953033926734869941"> |
4063 | <source>Name</source> | 4350 | <source>Name</source> |
4064 | <target>Naam</target> | 4351 | <target>Naam</target> |
4065 | 4352 | <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> | |
4066 | 4353 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">44</context></context-group> | |
4067 | 4354 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">44</context></context-group> | |
4068 | <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/+my-library/+my-video-channels/my-video-channel-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-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit> | 4355 | </trans-unit> |
4069 | <trans-unit id="2973928033612762715"> | 4356 | <trans-unit id="2973928033612762715"> |
4070 | <source>Short description</source> | 4357 | <source>Short description</source> |
4071 | <target>Korte omschrijving</target> | 4358 | <target>Korte omschrijving</target> |
4072 | 4359 | <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">24</context></context-group> | |
4073 | <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">24</context></context-group></trans-unit> | 4360 | </trans-unit> |
4074 | <trans-unit id="7794655859478571096" datatype="html"> | 4361 | <trans-unit id="7794655859478571096" datatype="html"> |
4075 | <source>Main instance categories</source> | 4362 | <source>Main instance categories</source> |
4076 | <target state="translated">Hoofdcategorieën exemplaar van PeerTube</target> | 4363 | <target state="translated">Hoofdcategorieën exemplaar van PeerTube</target> |
4077 | 4364 | <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> | |
4078 | <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> | 4365 | </trans-unit> |
4079 | <trans-unit id="6588040559347368313" datatype="html"> | 4366 | <trans-unit id="6588040559347368313" datatype="html"> |
4080 | <source>Add a new category</source> | 4367 | <source>Add a new category</source> |
4081 | <target state="translated">Nieuwe categorie toevoegen</target> | 4368 | <target state="translated">Nieuwe categorie toevoegen</target> |
4082 | 4369 | <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> | |
4083 | <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> | 4370 | <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> |
4371 | </trans-unit> | ||
4084 | <trans-unit id="8953934448427251062" datatype="html"> | 4372 | <trans-unit id="8953934448427251062" datatype="html"> |
4085 | <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> | 4373 | <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> |
4086 | <target state="translated">Het <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>deelsysteem <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> impliceert dat enige technische informatie over je systeem (zoals een publiek IP-adres) naar andere peers kan worden verzonden, maar helpt de serverbelasting sterk te verminderen.</target> | 4374 | <target state="translated">Het <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>deelsysteem <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> impliceert dat enige technische informatie over je systeem (zoals een publiek IP-adres) naar andere peers kan worden verzonden, maar helpt de serverbelasting sterk te verminderen.</target> |
4087 | 4375 | <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> | |
4088 | <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> | 4376 | </trans-unit> |
4089 | <trans-unit id="34094919610906740" datatype="html"> | 4377 | <trans-unit id="34094919610906740" datatype="html"> |
4090 | <source>Help share videos being played</source> | 4378 | <source>Help share videos being played</source> |
4091 | <target state="translated">Video's die aan het afspelen zijn helpen delen</target> | 4379 | <target state="translated">Video's die aan het afspelen zijn helpen delen</target> |
4092 | 4380 | <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> | |
4093 | <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> | 4381 | </trans-unit> |
4094 | <trans-unit id="6236140336967052987" datatype="html"> | 4382 | <trans-unit id="6236140336967052987" datatype="html"> |
4095 | <source>When on a video page, directly start playing the video.</source> | 4383 | <source>When on a video page, directly start playing the video.</source> |
4096 | <target state="translated">Bij aankomst op een videopagina onmiddellijk starten met afspelen.</target> | 4384 | <target state="translated">Bij aankomst op een videopagina onmiddellijk starten met afspelen.</target> |
4097 | 4385 | <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> | |
4098 | <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> | 4386 | </trans-unit> |
4099 | <trans-unit id="9135112681389493865" datatype="html"> | 4387 | <trans-unit id="9135112681389493865" datatype="html"> |
4100 | <source>Automatically play videos</source> | 4388 | <source>Automatically play videos</source> |
4101 | <target state="translated">Video's automatisch afspelen</target> | 4389 | <target state="translated">Video's automatisch afspelen</target> |
4102 | 4390 | <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> | |
4103 | <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> | 4391 | </trans-unit> |
4104 | <trans-unit id="575474399125992547" datatype="html"> | 4392 | <trans-unit id="575474399125992547" datatype="html"> |
4105 | <source>When a video ends, follow up with the next suggested video.</source> | 4393 | <source>When a video ends, follow up with the next suggested video.</source> |
4106 | <target state="translated">Na het einde van een video de volgende gesuggereerde video laten volgen.</target> | 4394 | <target state="translated">Na het einde van een video de volgende gesuggereerde video laten volgen.</target> |
4107 | 4395 | <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> | |
4108 | <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> | 4396 | </trans-unit> |
4109 | <trans-unit id="2701970773087072815" datatype="html"> | 4397 | <trans-unit id="2701970773087072815" datatype="html"> |
4110 | <source>Automatically start playing the next video</source> | 4398 | <source>Automatically start playing the next video</source> |
4111 | <target state="translated">Automatisch de volgende video beginnen afspelen</target> | 4399 | <target state="translated">Automatisch de volgende video beginnen afspelen</target> |
4112 | 4400 | <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> | |
4113 | <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> | 4401 | </trans-unit> |
4114 | <trans-unit id="5983800192187691457" datatype="html"> | 4402 | <trans-unit id="5983800192187691457" datatype="html"> |
4115 | <source>Main languages you/your moderators speak</source> | 4403 | <source>Main languages you/your moderators speak</source> |
4116 | <target state="translated">Belangrijkste talen die jij/je moderatoren spreken</target> | 4404 | <target state="translated">Belangrijkste talen die jij/je moderatoren spreken</target> |
4117 | 4405 | <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> | |
4118 | <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> | 4406 | </trans-unit> |
4119 | <trans-unit id="399528956091640769" datatype="html"> | 4407 | <trans-unit id="399528956091640769" datatype="html"> |
4120 | <source>MODERATION & NSFW</source> | 4408 | <source>MODERATION & NSFW</source> |
4121 | <target state="translated">MODERATIE & NIET GESCHIKT VOOR WERKOMGEVING</target> | 4409 | <target state="translated">MODERATIE & NIET GESCHIKT VOOR WERKOMGEVING</target> |
4122 | 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> | |
4123 | <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><trans-unit id="4423835119021329687" datatype="html"> | 4411 | </trans-unit> |
4124 | <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><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> | 4412 | <trans-unit id="4423835119021329687" datatype="html"> |
4125 | 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> | |
4126 | <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">84</context></context-group></trans-unit> | 4414 | <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> |
4127 | 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">84</context></context-group> | |
4416 | </trans-unit> | ||
4128 | <trans-unit id="7030031694783481217" datatype="html"> | 4417 | <trans-unit id="7030031694783481217" datatype="html"> |
4129 | <source>This instance is dedicated to sensitive or NSFW content</source> | 4418 | <source>This instance is dedicated to sensitive or NSFW content</source> |
4130 | <target state="translated">Dit exemplaar van PeerTube is gewijd aan gevoelige of niet voor een werkomgeving geschikte inhoud</target> | 4419 | <target state="translated">Dit exemplaar van PeerTube is gewijd aan gevoelige of niet voor een werkomgeving geschikte inhoud</target> |
4131 | 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> | |
4132 | <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><trans-unit id="4620493570088713907" datatype="html"> | 4421 | </trans-unit> |
4133 | <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 /> | 4422 | <trans-unit id="4620493570088713907" datatype="html"> |
4134 | "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | 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> |
4135 | "/> Moreover, the NSFW checkbox on video upload will be automatically checked by default. </source><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 /> | 4424 | <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> |
4136 | "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | 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">98</context></context-group> |
4137 | "/> Moreover, the NSFW checkbox on video upload will be automatically checked by default. </target> | 4426 | </trans-unit> |
4138 | |||
4139 | <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">98</context></context-group></trans-unit> | ||
4140 | |||
4141 | <trans-unit id="7497677457560701935"> | 4427 | <trans-unit id="7497677457560701935"> |
4142 | <source>Policy on videos containing sensitive content</source> | 4428 | <source>Policy on videos containing sensitive content</source> |
4143 | <target>Beleid rond video's met gevoelige inhoud</target> | 4429 | <target>Beleid rond video's met gevoelige inhoud</target> |
4144 | 4430 | <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> | |
4145 | <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><trans-unit id="7350483582490037954" datatype="html"> | 4431 | </trans-unit> |
4146 | <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> | 4432 | <trans-unit id="7350483582490037954" datatype="html"> |
4147 | 4433 | <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> | |
4148 | <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">111</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">8</context></context-group></trans-unit> | 4434 | <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> |
4149 | 4435 | <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">111</context></context-group> | |
4150 | 4436 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context><context context-type="linenumber">8</context></context-group> | |
4437 | </trans-unit> | ||
4151 | <trans-unit id="8930852890861583005"> | 4438 | <trans-unit id="8930852890861583005"> |
4152 | <source>Blur thumbnails</source> | 4439 | <source>Blur thumbnails</source> |
4153 | <target>Thumbnails vervagen</target> | 4440 | <target>Thumbnails vervagen</target> |
4154 | 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">120</context></context-group> | |
4155 | 4442 | <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> | |
4156 | <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> | 4443 | </trans-unit> |
4157 | <trans-unit id="6812930637022637485"> | 4444 | <trans-unit id="6812930637022637485"> |
4158 | <source>Display</source> | 4445 | <source>Display</source> |
4159 | <target>Tonen</target> | 4446 | <target>Tonen</target> |
4160 | 4447 | <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> | |
4161 | 4448 | <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> | |
4162 | 4449 | <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> | |
4163 | <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> | 4450 | </trans-unit> |
4164 | <trans-unit id="1617785425462022303" datatype="html"> | 4451 | <trans-unit id="1617785425462022303" datatype="html"> |
4165 | <source>Strategy</source> | 4452 | <source>Strategy</source> |
4166 | <target state="translated">Strategie</target> | 4453 | <target state="translated">Strategie</target> |
@@ -4169,204 +4456,209 @@ Je kan nu al informatie toevoegen over deze video. | |||
4169 | <trans-unit id="2544569632476723854"> | 4456 | <trans-unit id="2544569632476723854"> |
4170 | <source>Terms</source> | 4457 | <source>Terms</source> |
4171 | <target>Voorwaarden</target> | 4458 | <target>Voorwaarden</target> |
4172 | 4459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">168</context></context-group> | |
4173 | 4460 | <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> | |
4174 | 4461 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">13</context></context-group> | |
4175 | 4462 | <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> | |
4176 | 4463 | </trans-unit> | |
4177 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">168</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">13</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> | ||
4178 | <trans-unit id="4127416011499804250" datatype="html"> | 4464 | <trans-unit id="4127416011499804250" datatype="html"> |
4179 | <source>Code of conduct</source> | 4465 | <source>Code of conduct</source> |
4180 | <target state="translated">Gedragscode</target> | 4466 | <target state="translated">Gedragscode</target> |
4181 | 4467 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">154</context></context-group> | |
4182 | 4468 | <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> | |
4183 | 4469 | <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> | |
4184 | 4470 | </trans-unit> | |
4185 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">154</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> | ||
4186 | <trans-unit id="3076079242537393946" datatype="html"> | 4471 | <trans-unit id="3076079242537393946" datatype="html"> |
4187 | <source>Moderation information</source> | 4472 | <source>Moderation information</source> |
4188 | <target state="translated">Moderatie-informatie</target> | 4473 | <target state="translated">Moderatie-informatie</target> |
4189 | 4474 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">140</context></context-group> | |
4190 | 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">151</context></context-group> | |
4191 | 4476 | <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> | |
4192 | 4477 | </trans-unit> | |
4193 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context><context context-type="linenumber">140</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> | ||
4194 | <trans-unit id="5056489767203690328" datatype="html"> | 4478 | <trans-unit id="5056489767203690328" datatype="html"> |
4195 | <source>Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc</source> | 4479 | <source>Who moderates the instance? What is the policy regarding NSFW videos? Political videos? etc</source> |
4196 | <target state="translated">Wie modereert het exemplaar van PeerTube? Wat is het beleid wat betreft niet voor de werkomgeving geschikte video's? politieke video's? Ectetera</target> | 4480 | <target state="translated">Wie modereert het exemplaar van PeerTube? Wat is het beleid wat betreft niet voor de werkomgeving geschikte video's? politieke video's? Ectetera</target> |
4197 | 4481 | <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> | |
4198 | <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> | 4482 | </trans-unit> |
4199 | <trans-unit id="2047672753819413550" datatype="html"> | 4483 | <trans-unit id="2047672753819413550" datatype="html"> |
4200 | <source>YOU AND YOUR INSTANCE</source> | 4484 | <source>YOU AND YOUR INSTANCE</source> |
4201 | <target state="translated">JIJ EN JE EXEMPLAAR VAN PEERTUBE</target> | 4485 | <target state="translated">JIJ EN JE EXEMPLAAR VAN PEERTUBE</target> |
4202 | 4486 | <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> | |
4203 | <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> | 4487 | </trans-unit> |
4204 | <trans-unit id="3968335261686887328" datatype="html"> | 4488 | <trans-unit id="3968335261686887328" datatype="html"> |
4205 | <source>Who is behind the instance?</source> | 4489 | <source>Who is behind the instance?</source> |
4206 | <target state="translated">Wie zit er achter het exemplaar van PeerTube?</target> | 4490 | <target state="translated">Wie zit er achter het exemplaar van PeerTube?</target> |
4207 | 4491 | <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> | |
4208 | <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> | 4492 | </trans-unit> |
4209 | <trans-unit id="7323194786468446482" datatype="html"> | 4493 | <trans-unit id="7323194786468446482" datatype="html"> |
4210 | <source>A single person? A non-profit? A company?</source> | 4494 | <source>A single person? A non-profit? A company?</source> |
4211 | <target state="translated">Een individu? Een non-profit? Een bedrijf?</target> | 4495 | <target state="translated">Een individu? Een non-profit? Een bedrijf?</target> |
4212 | 4496 | <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> | |
4213 | <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> | 4497 | </trans-unit> |
4214 | <trans-unit id="5480243297215266596" datatype="html"> | 4498 | <trans-unit id="5480243297215266596" datatype="html"> |
4215 | <source>Why did you create this instance?</source> | 4499 | <source>Why did you create this instance?</source> |
4216 | <target state="translated">Waarom heb je dit exemplaar van PeerTube opgezet?</target> | 4500 | <target state="translated">Waarom heb je dit exemplaar van PeerTube opgezet?</target> |
4217 | 4501 | <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> | |
4218 | <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> | 4502 | </trans-unit> |
4219 | <trans-unit id="6995481962115300007" datatype="html"> | 4503 | <trans-unit id="6995481962115300007" datatype="html"> |
4220 | <source>To share your personal videos? To open registrations and allow people to upload what they want?</source> | 4504 | <source>To share your personal videos? To open registrations and allow people to upload what they want?</source> |
4221 | <target state="translated">Om je persoonlijke video's te dleen? Om een open registratiebeleid te voeren en mensen toe te laten te uploaden wat ze willen?</target> | 4505 | <target state="translated">Om je persoonlijke video's te dleen? Om een open registratiebeleid te voeren en mensen toe te laten te uploaden wat ze willen?</target> |
4222 | 4506 | <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> | |
4223 | <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> | 4507 | </trans-unit> |
4224 | <trans-unit id="3667968987954856844" datatype="html"> | 4508 | <trans-unit id="3667968987954856844" datatype="html"> |
4225 | <source>How long do you plan to maintain this instance?</source> | 4509 | <source>How long do you plan to maintain this instance?</source> |
4226 | <target state="translated">Hoe lang plan je dit exemplaar van PeerTube te onderhouden?</target> | 4510 | <target state="translated">Hoe lang plan je dit exemplaar van PeerTube te onderhouden?</target> |
4227 | 4511 | <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> | |
4228 | <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> | 4512 | </trans-unit> |
4229 | <trans-unit id="6722472563287778070" datatype="html"> | 4513 | <trans-unit id="6722472563287778070" datatype="html"> |
4230 | <source>It's important to know for users who want to register on your instance</source> | 4514 | <source>It's important to know for users who want to register on your instance</source> |
4231 | <target state="translated">Het is belangrijk om weten voor gebruikers die willen registreren op je exemplaar van PeerTube</target> | 4515 | <target state="translated">Het is belangrijk om weten voor gebruikers die willen registreren op je exemplaar van PeerTube</target> |
4232 | 4516 | <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> | |
4233 | <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> | 4517 | </trans-unit> |
4234 | <trans-unit id="8362291348781958428" datatype="html"> | 4518 | <trans-unit id="8362291348781958428" datatype="html"> |
4235 | <source>How will you finance the PeerTube server?</source> | 4519 | <source>How will you finance the PeerTube server?</source> |
4236 | <target state="translated">How ga je de PeerTube-server betalen?</target> | 4520 | <target state="translated">How ga je de PeerTube-server betalen?</target> |
4237 | 4521 | <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> | |
4238 | <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> | 4522 | </trans-unit> |
4239 | <trans-unit id="2441006645448216398" datatype="html"> | 4523 | <trans-unit id="2441006645448216398" datatype="html"> |
4240 | <source>With your own funds? With user donations? Advertising?</source> | 4524 | <source>With your own funds? With user donations? Advertising?</source> |
4241 | <target state="translated">Met je eigen geld? Met schenkingen van gebruikers? Advertenties?</target> | 4525 | <target state="translated">Met je eigen geld? Met schenkingen van gebruikers? Advertenties?</target> |
4242 | 4526 | <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> | |
4243 | <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> | 4527 | </trans-unit> |
4244 | <trans-unit id="6853511883515031762" datatype="html"> | 4528 | <trans-unit id="6853511883515031762" datatype="html"> |
4245 | <source>OTHER INFORMATION</source> | 4529 | <source>OTHER INFORMATION</source> |
4246 | <target state="translated">ANDERE INFORMATIE</target> | 4530 | <target state="translated">ANDERE INFORMATIE</target> |
4247 | 4531 | <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> | |
4248 | <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> | 4532 | </trans-unit> |
4249 | <trans-unit id="3447208665089679283" datatype="html"> | 4533 | <trans-unit id="3447208665089679283" datatype="html"> |
4250 | <source>What server/hardware does the instance run on?</source> | 4534 | <source>What server/hardware does the instance run on?</source> |
4251 | <target state="translated">Op wat voor server/hardware draait het exemplaar van PeerTube?</target> | 4535 | <target state="translated">Op wat voor server/hardware draait het exemplaar van PeerTube?</target> |
4252 | 4536 | <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> | |
4253 | <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> | 4537 | </trans-unit> |
4254 | <trans-unit id="4739907951373047958" datatype="html"> | 4538 | <trans-unit id="4739907951373047958" datatype="html"> |
4255 | <source>i.e. 2vCore 2GB RAM, a direct the link to the server you rent, etc.</source> | 4539 | <source>i.e. 2vCore 2GB RAM, a direct the link to the server you rent, etc.</source> |
4256 | <target state="translated">bijvoorbeeld. 2 virtuele kernen, 2GB RAM, een directe link naar de gehuurde server enzovoort.</target> | 4540 | <target state="translated">bijvoorbeeld. 2 virtuele kernen, 2GB RAM, een directe link naar de gehuurde server enzovoort.</target> |
4257 | 4541 | <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> | |
4258 | <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> | 4542 | </trans-unit> |
4259 | |||
4260 | <trans-unit id="8557599287230755359" datatype="html"> | 4543 | <trans-unit id="8557599287230755359" datatype="html"> |
4261 | <source>APPEARANCE</source> | 4544 | <source>APPEARANCE</source> |
4262 | <target state="translated">UITERLIJK</target> | 4545 | <target state="translated">UITERLIJK</target> |
4263 | 4546 | <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> | |
4264 | <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></trans-unit><trans-unit id="2107098695989136934" datatype="html"> | 4547 | </trans-unit> |
4265 | <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><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> | 4548 | <trans-unit id="2107098695989136934" datatype="html"> |
4549 | <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> | ||
4550 | <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> | ||
4266 | <context-group purpose="location"> | 4551 | <context-group purpose="location"> |
4267 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> | 4552 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> |
4268 | <context context-type="linenumber">6,7</context> | 4553 | <context context-type="linenumber">6,7</context> |
4269 | </context-group> | 4554 | </context-group> |
4270 | </trans-unit> | 4555 | </trans-unit> |
4271 | |||
4272 | <trans-unit id="6855462350544488601"> | 4556 | <trans-unit id="6855462350544488601"> |
4273 | <source>default</source> | 4557 | <source>default</source> |
4274 | <target>standaard</target> | 4558 | <target>standaard</target> |
4275 | 4559 | <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">18</context></context-group> | |
4276 | <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">18</context></context-group></trans-unit> | 4560 | </trans-unit> |
4277 | <trans-unit id="4096396973250090478" datatype="html"> | 4561 | <trans-unit id="4096396973250090478" datatype="html"> |
4278 | <source>Landing page</source> | 4562 | <source>Landing page</source> |
4279 | <target state="translated">Bestemmingspagina</target> | 4563 | <target state="translated">Bestemmingspagina</target> |
4280 | 4564 | <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> | |
4281 | <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></trans-unit> | 4565 | </trans-unit> |
4282 | <trans-unit id="2609416025385742456" datatype="html"> | 4566 | <trans-unit id="2609416025385742456" datatype="html"> |
4283 | <source>Default trending page</source><target state="new">Default trending page</target> | 4567 | <source>Default trending page</source> |
4284 | 4568 | <target state="new">Default trending page</target> | |
4285 | 4569 | <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> | |
4286 | <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><trans-unit id="421622604352196374" datatype="html"> | 4570 | </trans-unit> |
4287 | <source>Best videos</source><target state="new">Best videos</target> | 4571 | <trans-unit id="421622604352196374" datatype="html"> |
4288 | 4572 | <source>Best videos</source> | |
4289 | 4573 | <target state="new">Best videos</target> | |
4290 | <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><trans-unit id="554741830445276244" datatype="html"> | 4574 | <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> |
4291 | <source>Hot videos</source><target state="new">Hot videos</target> | 4575 | </trans-unit> |
4292 | 4576 | <trans-unit id="554741830445276244" datatype="html"> | |
4293 | 4577 | <source>Hot videos</source> | |
4294 | <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><trans-unit id="4203746847864415875" datatype="html"> | 4578 | <target state="new">Hot videos</target> |
4295 | <source>Most viewed videos</source><target state="new">Most viewed videos</target> | 4579 | <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> |
4296 | 4580 | </trans-unit> | |
4297 | 4581 | <trans-unit id="4203746847864415875" datatype="html"> | |
4298 | <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> | 4582 | <source>Most viewed videos</source> |
4299 | 4583 | <target state="new">Most viewed videos</target> | |
4584 | <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> | ||
4585 | </trans-unit> | ||
4300 | <trans-unit id="8177374861384376651" datatype="html"> | 4586 | <trans-unit id="8177374861384376651" datatype="html"> |
4301 | <source>Most liked videos</source> | 4587 | <source>Most liked videos</source> |
4302 | <target state="translated">Meest geliefde video's</target> | 4588 | <target state="translated">Meest geliefde video's</target> |
4303 | 4589 | <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> | |
4304 | <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> | 4590 | </trans-unit> |
4305 | |||
4306 | |||
4307 | <trans-unit id="4809162812315301010" datatype="html"> | 4591 | <trans-unit id="4809162812315301010" datatype="html"> |
4308 | <source>BROADCAST MESSAGE</source> | 4592 | <source>BROADCAST MESSAGE</source> |
4309 | <target state="translated">BERICHT NAAR IEDEREEN ZENDEN</target> | 4593 | <target state="translated">BERICHT NAAR IEDEREEN ZENDEN</target> |
4310 | 4594 | <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">64</context></context-group> | |
4311 | <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">64</context></context-group></trans-unit><trans-unit id="7097094470713539753" datatype="html"> | 4595 | </trans-unit> |
4312 | <source> Display a message on your instance </source><target state="new"> Display a message on your instance </target> | 4596 | <trans-unit id="7097094470713539753" datatype="html"> |
4313 | 4597 | <source>Display a message on your instance</source> | |
4314 | <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">66</context></context-group></trans-unit> | 4598 | <target state="new"> Display a message on your instance </target> |
4315 | 4599 | <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">66</context></context-group> | |
4600 | </trans-unit> | ||
4316 | <trans-unit id="4686199497574248459" datatype="html"> | 4601 | <trans-unit id="4686199497574248459" datatype="html"> |
4317 | <source>Enable broadcast message</source> | 4602 | <source>Enable broadcast message</source> |
4318 | <target state="translated">Bericht naar iedereen inschakelen</target> | 4603 | <target state="translated">Bericht naar iedereen inschakelen</target> |
4319 | 4604 | <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">77</context></context-group> | |
4320 | <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">77</context></context-group></trans-unit> | 4605 | </trans-unit> |
4321 | <trans-unit id="9192050065623241777" datatype="html"> | 4606 | <trans-unit id="9192050065623241777" datatype="html"> |
4322 | <source>Allow users to dismiss the broadcast message</source> | 4607 | <source>Allow users to dismiss the broadcast message</source> |
4323 | <target state="translated">Gebruikers toelaten een bericht voor iedereen af te wijzen</target> | 4608 | <target state="translated">Gebruikers toelaten een bericht voor iedereen af te wijzen</target> |
4324 | 4609 | <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">84</context></context-group> | |
4325 | <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">84</context></context-group></trans-unit> | 4610 | </trans-unit> |
4326 | <trans-unit id="6582848618760132901" datatype="html"> | 4611 | <trans-unit id="6582848618760132901" datatype="html"> |
4327 | <source>Broadcast message level</source> | 4612 | <source>Broadcast message level</source> |
4328 | <target state="translated">Niveau bericht naar iedereen</target> | 4613 | <target state="translated">Niveau bericht naar iedereen</target> |
4329 | 4614 | <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">89</context></context-group> | |
4330 | <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">89</context></context-group></trans-unit> | 4615 | </trans-unit> |
4331 | <trans-unit id="8066608938393600549" datatype="html"> | 4616 | <trans-unit id="8066608938393600549" datatype="html"> |
4332 | <source>Message</source> | 4617 | <source>Message</source> |
4333 | <target state="translated">Bericht</target> | 4618 | <target state="translated">Bericht</target> |
4334 | 4619 | <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">103</context></context-group> | |
4335 | <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">103</context></context-group></trans-unit> | 4620 | </trans-unit> |
4336 | <trans-unit id="5631159720194597622" datatype="html"> | 4621 | <trans-unit id="5631159720194597622" datatype="html"> |
4337 | <source>NEW USERS</source> | 4622 | <source>NEW USERS</source> |
4338 | <target state="translated">NIEUWE GEBRUIKERS</target> | 4623 | <target state="translated">NIEUWE GEBRUIKERS</target> |
4339 | 4624 | <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">120</context></context-group> | |
4340 | <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">120</context></context-group></trans-unit><trans-unit id="2669509104300979449" datatype="html"> | 4625 | </trans-unit> |
4341 | <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><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> | 4626 | <trans-unit id="2669509104300979449" datatype="html"> |
4342 | 4627 | <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> | |
4343 | <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">122</context></context-group></trans-unit> | 4628 | <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> |
4344 | 4629 | <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">122</context></context-group> | |
4630 | </trans-unit> | ||
4345 | <trans-unit id="4497115134891299867"> | 4631 | <trans-unit id="4497115134891299867"> |
4346 | <source>Signup requires email verification</source> | 4632 | <source>Signup requires email verification</source> |
4347 | <target>E-mailverificatie nodig bij registratie</target> | 4633 | <target>E-mailverificatie nodig bij registratie</target> |
4348 | 4634 | <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">143</context></context-group> | |
4349 | <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">143</context></context-group></trans-unit> | 4635 | </trans-unit> |
4350 | <trans-unit id="8133107840061687919"> | 4636 | <trans-unit id="8133107840061687919"> |
4351 | <source>Signup limit</source> | 4637 | <source>Signup limit</source> |
4352 | <target>Registratielimiet</target> | 4638 | <target>Registratielimiet</target> |
4353 | 4639 | <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">147</context></context-group> | |
4354 | <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">147</context></context-group></trans-unit> | 4640 | </trans-unit> |
4355 | <trans-unit id="8497774075394617130" datatype="html"> | 4641 | <trans-unit id="8497774075394617130" datatype="html"> |
4356 | <source>{VAR_PLURAL, plural, =1 {user} other {users}}</source> | 4642 | <source>{VAR_PLURAL, plural, =1 {user} other {users}}</source> |
4357 | <target state="translated">{VAR_PLURAL, plural, =1 {gebruiker} other {gebruikers}}</target> | 4643 | <target state="translated">{VAR_PLURAL, plural, =1 {gebruiker} other {gebruikers}}</target> |
4358 | 4644 | <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">154</context></context-group> | |
4359 | <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">154</context></context-group></trans-unit><trans-unit id="5620049714977547431" datatype="html"> | 4645 | </trans-unit> |
4360 | <source>Signup won't be limited to a fixed number of users.</source><target state="new">Signup won't be limited to a fixed number of users.</target> | 4646 | <trans-unit id="5620049714977547431" datatype="html"> |
4361 | 4647 | <source>Signup won't be limited to a fixed number of users.</source> | |
4362 | <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">159</context></context-group></trans-unit><trans-unit id="1663379405062033606" datatype="html"> | 4648 | <target state="new">Signup won't be limited to a fixed number of users.</target> |
4363 | <source>Minimum required age to create an account</source><target state="new">Minimum required age to create an account</target> | 4649 | <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">159</context></context-group> |
4650 | </trans-unit> | ||
4651 | <trans-unit id="1663379405062033606" datatype="html"> | ||
4652 | <source>Minimum required age to create an account</source> | ||
4653 | <target state="new">Minimum required age to create an account</target> | ||
4364 | <context-group purpose="location"> | 4654 | <context-group purpose="location"> |
4365 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> | 4655 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> |
4366 | <context context-type="linenumber">163</context> | 4656 | <context context-type="linenumber">163</context> |
4367 | </context-group> | 4657 | </context-group> |
4368 | </trans-unit><trans-unit id="8342879272354516454" datatype="html"> | 4658 | </trans-unit> |
4369 | <source>{VAR_PLURAL, plural, =1 {year old} other {years old}}</source><target state="new">{VAR_PLURAL, plural, =1 {year old} other {years old}}</target> | 4659 | <trans-unit id="8342879272354516454" datatype="html"> |
4660 | <source>{VAR_PLURAL, plural, =1 {year old} other {years old}}</source> | ||
4661 | <target state="new">{VAR_PLURAL, plural, =1 {year old} other {years old}}</target> | ||
4370 | <context-group purpose="location"> | 4662 | <context-group purpose="location"> |
4371 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> | 4663 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context> |
4372 | <context context-type="linenumber">170</context> | 4664 | <context context-type="linenumber">170</context> |
@@ -4375,8 +4667,8 @@ Je kan nu al informatie toevoegen over deze video. | |||
4375 | <trans-unit id="7456307533995141215" datatype="html"> | 4667 | <trans-unit id="7456307533995141215" datatype="html"> |
4376 | <source>Enable Signup</source> | 4668 | <source>Enable Signup</source> |
4377 | <target state="translated">Inschrijven inschakelen</target> | 4669 | <target state="translated">Inschrijven inschakelen</target> |
4378 | 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">132</context></context-group> | |
4379 | <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">132</context></context-group></trans-unit> | 4671 | </trans-unit> |
4380 | <trans-unit id="4555457172864212828"> | 4672 | <trans-unit id="4555457172864212828"> |
4381 | <source>Users</source> | 4673 | <source>Users</source> |
4382 | <target>Gebruikers</target> | 4674 | <target>Gebruikers</target> |
@@ -4433,305 +4725,322 @@ Je kan nu al informatie toevoegen over deze video. | |||
4433 | <trans-unit id="502260296951057925" datatype="html"> | 4725 | <trans-unit id="502260296951057925" datatype="html"> |
4434 | <source>Default video quota per user</source> | 4726 | <source>Default video quota per user</source> |
4435 | <target state="translated">Standaard videoquotum per gebruiker</target> | 4727 | <target state="translated">Standaard videoquotum per gebruiker</target> |
4436 | 4728 | <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">182</context></context-group> | |
4437 | <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">182</context></context-group></trans-unit><trans-unit id="7169210802367807492" datatype="html"> | 4729 | </trans-unit> |
4438 | <source>bytes</source><target state="new">bytes</target> | 4730 | <trans-unit id="7169210802367807492" datatype="html"> |
4439 | 4731 | <source>bytes</source> | |
4440 | 4732 | <target state="new">bytes</target> | |
4441 | 4733 | <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">188</context></context-group> | |
4442 | 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">202</context></context-group> | |
4443 | 4735 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">157</context></context-group> | |
4444 | 4736 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">157</context></context-group> | |
4445 | <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">188</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">202</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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/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/users/user-edit/user-edit.component.html</context><context context-type="linenumber">178</context></context-group></trans-unit> | 4737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">178</context></context-group> |
4738 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">178</context></context-group> | ||
4739 | </trans-unit> | ||
4446 | <trans-unit id="8509882464852636851" datatype="html"> | 4740 | <trans-unit id="8509882464852636851" datatype="html"> |
4447 | <source>Default daily upload limit per user</source> | 4741 | <source>Default daily upload limit per user</source> |
4448 | <target state="translated">Standaard dagelijkse uploadlimiet per gebruiker</target> | 4742 | <target state="translated">Standaard dagelijkse uploadlimiet per gebruiker</target> |
4449 | 4743 | <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">196</context></context-group> | |
4450 | <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">196</context></context-group></trans-unit> | 4744 | </trans-unit> |
4451 | <trans-unit id="4719342289581047890" datatype="html"> | 4745 | <trans-unit id="4719342289581047890" datatype="html"> |
4452 | <source>Allow import with a torrent file or a magnet URI</source> | 4746 | <source>Allow import with a torrent file or a magnet URI</source> |
4453 | <target state="translated">Importeren met torrent-bestand of magnet-URI toelaten</target> | 4747 | <target state="translated">Importeren met torrent-bestand of magnet-URI toelaten</target> |
4454 | 4748 | <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">246</context></context-group> | |
4455 | <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">246</context></context-group></trans-unit> | 4749 | </trans-unit> |
4456 | <trans-unit id="3950258704315544174" datatype="html"> | 4750 | <trans-unit id="3950258704315544174" datatype="html"> |
4457 | <source>Unless a user is marked as trusted, their videos will stay private until a moderator reviews them.</source> | 4751 | <source>Unless a user is marked as trusted, their videos will stay private until a moderator reviews them.</source> |
4458 | <target state="translated">Tenzij een gebruiker als vertrouwd staat aangemerkt blijven zijn video's privé tot een moderator ze heeft beoordeeld.</target> | 4752 | <target state="translated">Tenzij een gebruiker als vertrouwd staat aangemerkt blijven zijn video's privé tot een moderator ze heeft beoordeeld.</target> |
4459 | 4753 | <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">263</context></context-group> | |
4460 | <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">263</context></context-group></trans-unit> | 4754 | </trans-unit> |
4461 | <trans-unit id="3428986951244800347" datatype="html"> | 4755 | <trans-unit id="3428986951244800347" datatype="html"> |
4462 | <source>Block new videos automatically</source> | 4756 | <source>Block new videos automatically</source> |
4463 | <target state="translated">Nieuwe video's automatisch blokkeren</target> | 4757 | <target state="translated">Nieuwe video's automatisch blokkeren</target> |
4464 | 4758 | <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> | |
4465 | <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></trans-unit> | 4759 | </trans-unit> |
4466 | <trans-unit id="2054846790157376783" datatype="html"> | 4760 | <trans-unit id="2054846790157376783" datatype="html"> |
4467 | <source>SEARCH</source> | 4761 | <source>SEARCH</source> |
4468 | <target state="translated">ZOEKEN</target> | 4762 | <target state="translated">ZOEKEN</target> |
4469 | 4763 | <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">277</context></context-group> | |
4470 | <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">277</context></context-group></trans-unit> | 4764 | </trans-unit> |
4471 | <trans-unit id="3442084803796199253" datatype="html"> | 4765 | <trans-unit id="3442084803796199253" datatype="html"> |
4472 | <source>Allow users to do remote URI/handle search</source> | 4766 | <source>Allow users to do remote URI/handle search</source> |
4473 | <target state="translated">Gebruikers toelaten URI/handle van elders te (door)zoeken</target> | 4767 | <target state="translated">Gebruikers toelaten URI/handle van elders te (door)zoeken</target> |
4474 | 4768 | <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">288</context></context-group> | |
4475 | <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">288</context></context-group></trans-unit> | 4769 | </trans-unit> |
4476 | <trans-unit id="2258148539285928012" datatype="html"> | 4770 | <trans-unit id="2258148539285928012" datatype="html"> |
4477 | <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> | 4771 | <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> |
4478 | <target state="translated"><x id="START_TAG_STRONG"/>Je gebruikers<x id="CLOSE_TAG_STRONG"/> toestaan om externe video's / gebruikers op te zoeken die mogelijk niet met je exemplaar van PeerTube zijn verbonden</target> | 4772 | <target state="translated"><x id="START_TAG_STRONG"/>Je gebruikers<x id="CLOSE_TAG_STRONG"/> toestaan om externe video's / gebruikers op te zoeken die mogelijk niet met je exemplaar van PeerTube zijn verbonden</target> |
4479 | 4773 | <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">291</context></context-group> | |
4480 | <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">291</context></context-group></trans-unit> | 4774 | </trans-unit> |
4481 | <trans-unit id="7295422540935146771" datatype="html"> | 4775 | <trans-unit id="7295422540935146771" datatype="html"> |
4482 | <source>Allow anonymous to do remote URI/handle search</source> | 4776 | <source>Allow anonymous to do remote URI/handle search</source> |
4483 | <target state="translated">Anonieme gebruikers toelaten URI/handle van elders te (door)zoeken</target> | 4777 | <target state="translated">Anonieme gebruikers toelaten URI/handle van elders te (door)zoeken</target> |
4484 | 4778 | <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">299</context></context-group> | |
4485 | <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">299</context></context-group></trans-unit> | 4779 | </trans-unit> |
4486 | <trans-unit id="7305237807882754643" datatype="html"> | 4780 | <trans-unit id="7305237807882754643" datatype="html"> |
4487 | <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> | 4781 | <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> |
4488 | <target state="translated"><x id="START_TAG_STRONG"/>Je gebruikers<x id="CLOSE_TAG_STRONG"/> toestaan externe video's/gebruikers op te zoeken die mogelijk niet met je exemplaar van PeerTube zijn verbonden</target> | 4782 | <target state="translated"><x id="START_TAG_STRONG"/>Je gebruikers<x id="CLOSE_TAG_STRONG"/> toestaan externe video's/gebruikers op te zoeken die mogelijk niet met je exemplaar van PeerTube zijn verbonden</target> |
4489 | 4783 | <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">302</context></context-group> | |
4490 | <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">302</context></context-group></trans-unit> | 4784 | </trans-unit> |
4491 | <trans-unit id="5273935530181504015" datatype="html"> | 4785 | <trans-unit id="5273935530181504015" datatype="html"> |
4492 | <source>⚠️ This functionality depends heavily on the moderation of instances followed by the search index you select.</source> | 4786 | <source>⚠️ This functionality depends heavily on the moderation of instances followed by the search index you select.</source> |
4493 | <target state="translated">⚠️ Deze functionaliteit is sterk afhankelijk van de geselecteerde zoekindex en de moderatie op exemplaren van PeerTube die die volgt.</target> | 4787 | <target state="translated">⚠️ Deze functionaliteit is sterk afhankelijk van de geselecteerde zoekindex en de moderatie op exemplaren van PeerTube die die volgt.</target> |
4494 | 4788 | <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">316</context></context-group> | |
4495 | <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">316</context></context-group></trans-unit><trans-unit id="1886227550697837417" datatype="html"> | 4789 | </trans-unit> |
4496 | <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><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> | 4790 | <trans-unit id="1886227550697837417" datatype="html"> |
4497 | 4791 | <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> | |
4498 | <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">319</context></context-group></trans-unit> | 4792 | <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> |
4499 | 4793 | <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">319</context></context-group> | |
4794 | </trans-unit> | ||
4500 | <trans-unit id="2331464426553277323" datatype="html"> | 4795 | <trans-unit id="2331464426553277323" datatype="html"> |
4501 | <source>Search index URL</source> | 4796 | <source>Search index URL</source> |
4502 | <target state="translated">URL van zoekindex</target> | 4797 | <target state="translated">URL van zoekindex</target> |
4503 | 4798 | <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">325</context></context-group> | |
4504 | <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">325</context></context-group></trans-unit> | 4799 | </trans-unit> |
4505 | <trans-unit id="8524278911521465398" datatype="html"> | 4800 | <trans-unit id="8524278911521465398" datatype="html"> |
4506 | <source>Disable local search in search bar</source> | 4801 | <source>Disable local search in search bar</source> |
4507 | <target state="translated">Lokaal zoeken in zoekbalk uitschakelen</target> | 4802 | <target state="translated">Lokaal zoeken in zoekbalk uitschakelen</target> |
4508 | 4803 | <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">338</context></context-group> | |
4509 | <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">338</context></context-group></trans-unit> | 4804 | </trans-unit> |
4510 | <trans-unit id="6568991917245875948" datatype="html"> | 4805 | <trans-unit id="6568991917245875948" datatype="html"> |
4511 | <source>Otherwise the local search stays used by default</source> | 4806 | <source>Otherwise the local search stays used by default</source> |
4512 | <target state="translated">Anders blijf je standaard lokaal zoeken gebruiken</target> | 4807 | <target state="translated">Anders blijf je standaard lokaal zoeken gebruiken</target> |
4513 | 4808 | <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> | |
4514 | <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> | 4809 | </trans-unit> |
4515 | <trans-unit id="4444955208013675027" datatype="html"> | 4810 | <trans-unit id="4444955208013675027" datatype="html"> |
4516 | <source>Search bar uses the global search index by default</source> | 4811 | <source>Search bar uses the global search index by default</source> |
4517 | <target state="translated">Zoekbalk gebruikt standaard de globale zoekindex</target> | 4812 | <target state="translated">Zoekbalk gebruikt standaard de globale zoekindex</target> |
4518 | 4813 | <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">345</context></context-group> | |
4519 | <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">345</context></context-group></trans-unit> | 4814 | </trans-unit> |
4520 | <trans-unit id="6476750382562952780" datatype="html"> | 4815 | <trans-unit id="6476750382562952780" datatype="html"> |
4521 | <source>Enable global search</source> | 4816 | <source>Enable global search</source> |
4522 | <target state="translated">Globaal zoeken inschakelen</target> | 4817 | <target state="translated">Globaal zoeken inschakelen</target> |
4523 | 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">313</context></context-group> | |
4524 | <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">313</context></context-group></trans-unit> | 4819 | </trans-unit> |
4525 | <trans-unit id="836183323506117145" datatype="html"> | 4820 | <trans-unit id="836183323506117145" datatype="html"> |
4526 | <source>FEDERATION</source> | 4821 | <source>FEDERATION</source> |
4527 | <target state="translated">FEDERATIE</target> | 4822 | <target state="translated">FEDERATIE</target> |
4528 | 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">366</context></context-group> | |
4529 | <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">366</context></context-group></trans-unit><trans-unit id="252719899360434356" datatype="html"> | 4824 | </trans-unit> |
4530 | <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><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> | 4825 | <trans-unit id="252719899360434356" datatype="html"> |
4531 | 4826 | <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> | |
4532 | <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">368</context></context-group></trans-unit> | 4827 | <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> |
4533 | 4828 | <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">368</context></context-group> | |
4829 | </trans-unit> | ||
4534 | <trans-unit id="9119248927271669654" datatype="html"> | 4830 | <trans-unit id="9119248927271669654" datatype="html"> |
4535 | <source>Other instances can follow yours</source> | 4831 | <source>Other instances can follow yours</source> |
4536 | <target state="translated">Andere exemplaren van PeerTube kunnen het jouwe volgen</target> | 4832 | <target state="translated">Andere exemplaren van PeerTube kunnen het jouwe volgen</target> |
4537 | 4833 | <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">380</context></context-group> | |
4538 | <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">380</context></context-group></trans-unit> | 4834 | </trans-unit> |
4539 | <trans-unit id="7015551137649102649" datatype="html"> | 4835 | <trans-unit id="7015551137649102649" datatype="html"> |
4540 | <source>Manually approve new instance followers</source> | 4836 | <source>Manually approve new instance followers</source> |
4541 | <target state="translated">Manueel nieuwe volgers van je exemplaar van PeerTube goedkeuren</target> | 4837 | <target state="translated">Manueel nieuwe volgers van je exemplaar van PeerTube goedkeuren</target> |
4542 | 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">387</context></context-group> | |
4543 | <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">387</context></context-group></trans-unit> | 4839 | </trans-unit> |
4544 | <trans-unit id="4803992993548153434" datatype="html"> | 4840 | <trans-unit id="4803992993548153434" datatype="html"> |
4545 | <source>Automatically follow back instances</source> | 4841 | <source>Automatically follow back instances</source> |
4546 | <target state="translated">Automatisch exemplaren van PeerTube die jou volgen terugvolgen</target> | 4842 | <target state="translated">Automatisch exemplaren van PeerTube die jou volgen terugvolgen</target> |
4547 | 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">400</context></context-group> | |
4548 | <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">400</context></context-group></trans-unit> | 4844 | </trans-unit> |
4549 | |||
4550 | <trans-unit id="2092224316392295720" datatype="html"> | 4845 | <trans-unit id="2092224316392295720" datatype="html"> |
4551 | <source>⚠️ This functionality requires a lot of attention and extra moderation.</source> | 4846 | <source>⚠️ This functionality requires a lot of attention and extra moderation.</source> |
4552 | <target state="translated">⚠️ Deze functionaliteit vereist veel aandacht en extra moderatie.</target> | 4847 | <target state="translated">⚠️ Deze functionaliteit vereist veel aandacht en extra moderatie.</target> |
4553 | 4848 | <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">135</context></context-group> | |
4554 | 4849 | <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">403</context></context-group> | |
4555 | 4850 | <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">416</context></context-group> | |
4556 | <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">135</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">403</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">416</context></context-group></trans-unit> | 4851 | </trans-unit> |
4557 | <trans-unit id="1718269478813020014" datatype="html"> | 4852 | <trans-unit id="1718269478813020014" datatype="html"> |
4558 | <source>Index URL</source> | 4853 | <source>Index URL</source> |
4559 | <target state="translated">Index URL</target> | 4854 | <target state="translated">Index URL</target> |
4560 | 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">425</context></context-group> | |
4561 | <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">425</context></context-group></trans-unit> | 4856 | </trans-unit> |
4562 | <trans-unit id="173263206605027981" datatype="html"> | 4857 | <trans-unit id="173263206605027981" datatype="html"> |
4563 | <source>Automatically follow instances of a public index</source> | 4858 | <source>Automatically follow instances of a public index</source> |
4564 | <target state="translated">Automatisch de exemplaren van PeerTube van een publieke index volgen</target> | 4859 | <target state="translated">Automatisch de exemplaren van PeerTube van een publieke index volgen</target> |
4565 | 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">413</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">413</context></context-group></trans-unit><trans-unit id="9076632742417302918" datatype="html"> | 4861 | </trans-unit> |
4567 | <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><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> | 4862 | <trans-unit id="9076632742417302918" datatype="html"> |
4568 | 4863 | <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> | |
4569 | <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">419</context></context-group></trans-unit> | 4864 | <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> |
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">419</context></context-group> | ||
4866 | </trans-unit> | ||
4570 | <trans-unit id="3946988229617310200" datatype="html"> | 4867 | <trans-unit id="3946988229617310200" datatype="html"> |
4571 | <source>ADMINISTRATORS</source> | 4868 | <source>ADMINISTRATORS</source> |
4572 | <target state="translated">BEHEERDERS</target> | 4869 | <target state="translated">BEHEERDERS</target> |
4573 | 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">445</context></context-group> | |
4574 | <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">445</context></context-group></trans-unit> | 4871 | </trans-unit> |
4575 | <trans-unit id="2149300564474427551"> | 4872 | <trans-unit id="2149300564474427551"> |
4576 | <source>Administrator</source> | 4873 | <source>Administrator</source> |
4577 | <target>Administrator</target> | 4874 | <target>Administrator</target> |
4578 | 4875 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group> | |
4579 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group></trans-unit> | 4876 | </trans-unit> |
4580 | <trans-unit id="3171683206914962995"> | 4877 | <trans-unit id="3171683206914962995"> |
4581 | <source>Admin email</source> | 4878 | <source>Admin email</source> |
4582 | <target>E-mail van administrator</target> | 4879 | <target>E-mail van administrator</target> |
4583 | 4880 | <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">451</context></context-group> | |
4584 | <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">451</context></context-group></trans-unit> | 4881 | </trans-unit> |
4585 | <trans-unit id="4722881456283329321"> | 4882 | <trans-unit id="4722881456283329321"> |
4586 | <source>Enable contact form</source> | 4883 | <source>Enable contact form</source> |
4587 | <target>Schakel contactformulier in</target> | 4884 | <target>Schakel contactformulier in</target> |
4588 | 4885 | <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">464</context></context-group> | |
4589 | <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">464</context></context-group></trans-unit> | 4886 | </trans-unit> |
4590 | |||
4591 | <trans-unit id="5926348345797688952" datatype="html"> | 4887 | <trans-unit id="5926348345797688952" datatype="html"> |
4592 | <source>VOD Transcoding</source> | 4888 | <source>VOD Transcoding</source> |
4593 | <target state="new">VOD Transcoding</target> | 4889 | <target state="new">VOD Transcoding</target> |
4594 | 4890 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">33</context></context-group> | |
4595 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> | 4891 | </trans-unit> |
4596 | <trans-unit id="1765095834299337775" datatype="html"> | 4892 | <trans-unit id="1765095834299337775" datatype="html"> |
4597 | <source>TWITTER</source> | 4893 | <source>TWITTER</source> |
4598 | <target state="translated">TWITTER</target> | 4894 | <target state="translated">TWITTER</target> |
4599 | 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">473</context></context-group> | |
4600 | <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><trans-unit id="3202133522706129143" datatype="html"> | 4896 | </trans-unit> |
4601 | <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><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> | 4897 | <trans-unit id="3202133522706129143" datatype="html"> |
4602 | 4898 | <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> | |
4603 | <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">475</context></context-group></trans-unit> | 4899 | <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> |
4604 | 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">475</context></context-group> | |
4901 | </trans-unit> | ||
4605 | <trans-unit id="4087837092261487511"> | 4902 | <trans-unit id="4087837092261487511"> |
4606 | <source>Your Twitter username</source> | 4903 | <source>Your Twitter username</source> |
4607 | <target>Je Twitter-gebruikersnaam</target> | 4904 | <target>Je Twitter-gebruikersnaam</target> |
4608 | 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">486</context></context-group> | |
4609 | <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">486</context></context-group></trans-unit> | 4906 | </trans-unit> |
4610 | <trans-unit id="5648651824279408711" datatype="html"> | 4907 | <trans-unit id="5648651824279408711" datatype="html"> |
4611 | <source>Instance allowed by Twitter</source> | 4908 | <source>Instance allowed by Twitter</source> |
4612 | <target state="translated">Exemplaar van PeerTube toegelaten door Twitter</target> | 4909 | <target state="translated">Exemplaar van PeerTube toegelaten door Twitter</target> |
4613 | 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">499</context></context-group> | |
4614 | <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">499</context></context-group></trans-unit><trans-unit id="2076338542820061819" datatype="html"> | 4911 | </trans-unit> |
4615 | <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> | 4912 | <trans-unit id="2076338542820061819" datatype="html"> |
4616 | 4913 | <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> | |
4617 | <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">504</context></context-group></trans-unit> | 4914 | <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> |
4618 | 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">504</context></context-group> | |
4619 | 4916 | </trans-unit> | |
4620 | |||
4621 | |||
4622 | <trans-unit id="493135676263039396" datatype="html"> | 4917 | <trans-unit id="493135676263039396" datatype="html"> |
4623 | <source>LIVE</source> | 4918 | <source>LIVE</source> |
4624 | <target state="translated">LIVE</target> | 4919 | <target state="translated">LIVE</target> |
4625 | 4920 | <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">5</context></context-group> | |
4626 | 4921 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group> | |
4627 | <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">5</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-thumbnail/video-thumbnail.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit><trans-unit id="1429138002697017359" datatype="html"> | 4922 | </trans-unit> |
4628 | <source> Enable users of your instance to stream live. </source><target state="new"> Enable users of your instance to stream live. </target> | 4923 | <trans-unit id="1429138002697017359" datatype="html"> |
4924 | <source>Enable users of your instance to stream live.</source> | ||
4925 | <target state="new"> Enable users of your instance to stream live. </target> | ||
4629 | <context-group purpose="location"> | 4926 | <context-group purpose="location"> |
4630 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> | 4927 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> |
4631 | <context context-type="linenumber">7,8</context> | 4928 | <context context-type="linenumber">7,8</context> |
4632 | </context-group> | 4929 | </context-group> |
4633 | </trans-unit> | 4930 | </trans-unit> |
4634 | <trans-unit id="8894612824234881672" datatype="html"> | 4931 | <trans-unit id="8894612824234881672" datatype="html"> |
4635 | <source>⚠️ Enabling live streaming requires trust in your users and extra moderation work</source><target state="new">⚠️ Enabling live streaming requires trust in your users and extra moderation work</target> | 4932 | <source>⚠️ Enabling live streaming requires trust in your users and extra moderation work</source> |
4636 | 4933 | <target state="new">⚠️ Enabling live streaming requires trust in your users and extra moderation work</target> | |
4637 | <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">22</context></context-group></trans-unit><trans-unit id="5205613575147327732" datatype="html"> | 4934 | <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">22</context></context-group> |
4638 | <source>If enabled, your server needs to accept incoming TCP traffic on port <x id="INTERPOLATION" equiv-text="{{ getLiveRTMPPort() }}"/></source><target state="new">If enabled, your server needs to accept incoming TCP traffic on port <x id="INTERPOLATION" equiv-text="{{ getLiveRTMPPort() }}"/></target> | 4935 | </trans-unit> |
4936 | <trans-unit id="5205613575147327732" datatype="html"> | ||
4937 | <source>If enabled, your server needs to accept incoming TCP traffic on port <x id="INTERPOLATION" equiv-text="{{ getLiveRTMPPort() }}"/></source> | ||
4938 | <target state="new">If enabled, your server needs to accept incoming TCP traffic on port <x id="INTERPOLATION" equiv-text="{{ getLiveRTMPPort() }}"/></target> | ||
4639 | <context-group purpose="location"> | 4939 | <context-group purpose="location"> |
4640 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> | 4940 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> |
4641 | <context context-type="linenumber">23</context> | 4941 | <context context-type="linenumber">23</context> |
4642 | </context-group> | 4942 | </context-group> |
4643 | </trans-unit> | 4943 | </trans-unit> |
4644 | |||
4645 | <trans-unit id="6421580347313273983" datatype="html"> | 4944 | <trans-unit id="6421580347313273983" datatype="html"> |
4646 | <source>Allow your users to automatically publish a replay of their live</source> | 4945 | <source>Allow your users to automatically publish a replay of their live</source> |
4647 | <target state="translated">Je gebruikers in staat stellen automatisch een heruitzending van hun live-uitzending te publiceren</target> | 4946 | <target state="translated">Je gebruikers in staat stellen automatisch een heruitzending van hun live-uitzending te publiceren</target> |
4648 | 4947 | <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">31</context></context-group> | |
4649 | <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">31</context></context-group></trans-unit><trans-unit id="3472969629566153023" datatype="html"> | 4948 | </trans-unit> |
4650 | <source> If the user quota is reached, PeerTube will automatically terminate the live streaming </source><target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | 4949 | <trans-unit id="3472969629566153023" datatype="html"> |
4950 | <source>If the user quota is reached, PeerTube will automatically terminate the live streaming</source> | ||
4951 | <target state="new"> If the user quota is reached, PeerTube will automatically terminate the live streaming </target> | ||
4651 | <context-group purpose="location"> | 4952 | <context-group purpose="location"> |
4652 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> | 4953 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> |
4653 | <context context-type="linenumber">34,35</context> | 4954 | <context context-type="linenumber">34,35</context> |
4654 | </context-group> | 4955 | </context-group> |
4655 | </trans-unit><trans-unit id="4420104899393268652" datatype="html"> | 4956 | </trans-unit> |
4656 | <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><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> | 4957 | <trans-unit id="4420104899393268652" datatype="html"> |
4958 | <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> | ||
4959 | <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> | ||
4657 | <context-group purpose="location"> | 4960 | <context-group purpose="location"> |
4658 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> | 4961 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> |
4659 | <context context-type="linenumber">41</context> | 4962 | <context context-type="linenumber">41</context> |
4660 | </context-group> | 4963 | </context-group> |
4661 | </trans-unit> | 4964 | </trans-unit> |
4662 | |||
4663 | |||
4664 | <trans-unit id="6830777508073747241" datatype="html"> | 4965 | <trans-unit id="6830777508073747241" datatype="html"> |
4665 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source> | 4966 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source> |
4666 | <target state="translated">{VAR_PLURAL, plural, =1 {live-uitzending} other {live-uitzendingen}}</target> | 4967 | <target state="translated">{VAR_PLURAL, plural, =1 {live-uitzending} other {live-uitzendingen}}</target> |
4667 | 4968 | <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> | |
4668 | <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><trans-unit id="7210210728441530221" datatype="html"> | 4969 | <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> |
4669 | <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><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> | 4970 | </trans-unit> |
4971 | <trans-unit id="7210210728441530221" datatype="html"> | ||
4972 | <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> | ||
4973 | <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> | ||
4670 | <context-group purpose="location"> | 4974 | <context-group purpose="location"> |
4671 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> | 4975 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> |
4672 | <context context-type="linenumber">54</context> | 4976 | <context context-type="linenumber">54</context> |
4673 | </context-group> | 4977 | </context-group> |
4674 | </trans-unit> | 4978 | </trans-unit> |
4675 | |||
4676 | <trans-unit id="6830777508073747241" datatype="html"> | 4979 | <trans-unit id="6830777508073747241" datatype="html"> |
4677 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source> | 4980 | <source>{VAR_PLURAL, plural, =1 {live} other {lives}}</source> |
4678 | <target state="translated">{VAR_PLURAL, plural, =1 {live-uitzending} other {live-uitzendingen}}</target> | 4981 | <target state="translated">{VAR_PLURAL, plural, =1 {live-uitzending} other {live-uitzendingen}}</target> |
4679 | 4982 | <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> | |
4680 | <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> | 4983 | </trans-unit> |
4681 | <trans-unit id="1521259619066122077" datatype="html"> | 4984 | <trans-unit id="1521259619066122077" datatype="html"> |
4682 | <source>Max live duration</source> | 4985 | <source>Max live duration</source> |
4683 | <target state="translated">Maximale duur live-uitzending</target> | 4986 | <target state="translated">Maximale duur live-uitzending</target> |
4684 | 4987 | <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">66</context></context-group> | |
4685 | <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">66</context></context-group></trans-unit> | 4988 | </trans-unit> |
4686 | |||
4687 | <trans-unit id="5309195634424105927" datatype="html"> | 4989 | <trans-unit id="5309195634424105927" datatype="html"> |
4688 | <source>Live transcoding threads</source> | 4990 | <source>Live transcoding threads</source> |
4689 | <target state="translated">Threads voor live transcoderen</target> | 4991 | <target state="translated">Threads voor live transcoderen</target> |
4690 | 4992 | <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">128</context></context-group> | |
4691 | <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">128</context></context-group></trans-unit><trans-unit id="4240037618955024499" datatype="html"> | 4993 | </trans-unit> |
4692 | <source> will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding </source><target state="new"> will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding </target> | 4994 | <trans-unit id="4240037618955024499" datatype="html"> |
4995 | <source>will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding </source> | ||
4996 | <target state="new"> will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding </target> | ||
4693 | <context-group purpose="location"> | 4997 | <context-group purpose="location"> |
4694 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> | 4998 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> |
4695 | <context context-type="linenumber">131,133</context> | 4999 | <context context-type="linenumber">131,133</context> |
4696 | </context-group> | 5000 | </context-group> |
4697 | </trans-unit><trans-unit id="8489317904250057957" datatype="html"> | 5001 | </trans-unit> |
4698 | <source> will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding </source><target state="new"> will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding </target> | 5002 | <trans-unit id="8489317904250057957" datatype="html"> |
5003 | <source>will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding </source> | ||
5004 | <target state="new"> will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with VOD transcoding </target> | ||
4699 | <context-group purpose="location"> | 5005 | <context-group purpose="location"> |
4700 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> | 5006 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> |
4701 | <context context-type="linenumber">135,137</context> | 5007 | <context context-type="linenumber">135,137</context> |
4702 | </context-group> | 5008 | </context-group> |
4703 | </trans-unit><trans-unit id="1417246074503129277" datatype="html"> | 5009 | </trans-unit> |
4704 | <source>Live transcoding profile</source><target state="new">Live transcoding profile</target> | 5010 | <trans-unit id="1417246074503129277" datatype="html"> |
4705 | 5011 | <source>Live transcoding profile</source> | |
4706 | <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">150</context></context-group></trans-unit><trans-unit id="8294583621306221742" datatype="html"> | 5012 | <target state="new">Live transcoding profile</target> |
4707 | <source>new live transcoding profiles can be added by PeerTube plugins</source><target state="new">new live transcoding profiles can be added by PeerTube plugins</target> | 5013 | <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">150</context></context-group> |
4708 | 5014 | </trans-unit> | |
4709 | <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">151</context></context-group></trans-unit> | 5015 | <trans-unit id="8294583621306221742" datatype="html"> |
5016 | <source>new live transcoding profiles can be added by PeerTube plugins</source> | ||
5017 | <target state="new">new live transcoding profiles can be added by PeerTube plugins</target> | ||
5018 | <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">151</context></context-group> | ||
5019 | </trans-unit> | ||
4710 | <trans-unit id="6727057461851446921" datatype="html"> | 5020 | <trans-unit id="6727057461851446921" datatype="html"> |
4711 | <source>Live resolutions to generate</source> | 5021 | <source>Live resolutions to generate</source> |
4712 | <target state="translated">Te genereren live-resoluties</target> | 5022 | <target state="translated">Te genereren live-resoluties</target> |
4713 | 5023 | <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">107</context></context-group> | |
4714 | <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">107</context></context-group></trans-unit> | 5024 | </trans-unit> |
4715 | <trans-unit id="2281161665447607254" datatype="html"> | 5025 | <trans-unit id="2281161665447607254" datatype="html"> |
4716 | <source>Allow live streaming</source> | 5026 | <source>Allow live streaming</source> |
4717 | <target state="translated">Live uitzenden toelaten</target> | 5027 | <target state="translated">Live uitzenden toelaten</target> |
4718 | 5028 | <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">18</context></context-group> | |
4719 | <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">18</context></context-group></trans-unit> | 5029 | </trans-unit> |
4720 | <trans-unit id="6759167469686242835" datatype="html"> | 5030 | <trans-unit id="6759167469686242835" datatype="html"> |
4721 | <source>Transcoding enabled for live streams</source> | 5031 | <source>Transcoding enabled for live streams</source> |
4722 | <target state="new">Transcoding enabled for live streams</target> | 5032 | <target state="new">Transcoding enabled for live streams</target> |
4723 | 5033 | <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">101</context></context-group> | |
4724 | <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">101</context></context-group></trans-unit> | 5034 | </trans-unit> |
4725 | |||
4726 | |||
4727 | |||
4728 | <trans-unit id="5975271795105968425" datatype="html"> | 5035 | <trans-unit id="5975271795105968425" datatype="html"> |
4729 | <source>Live streaming</source> | 5036 | <source>Live streaming</source> |
4730 | <target state="translated">Live uitzenden</target> | 5037 | <target state="translated">Live uitzenden</target> |
4731 | 5038 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">42</context></context-group> | |
4732 | 5039 | <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> | |
4733 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">42</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"> | 5040 | </trans-unit> |
4734 | <source>Advanced</source><target state="new">Advanced</target> | 5041 | <trans-unit id="6201638315245239510" datatype="html"> |
5042 | <source>Advanced</source> | ||
5043 | <target state="new">Advanced</target> | ||
4735 | <context-group purpose="location"> | 5044 | <context-group purpose="location"> |
4736 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 5045 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
4737 | <context context-type="linenumber">51</context> | 5046 | <context context-type="linenumber">51</context> |
@@ -4740,68 +5049,68 @@ Je kan nu al informatie toevoegen over deze video. | |||
4740 | <trans-unit id="7911929966701561067" datatype="html"> | 5049 | <trans-unit id="7911929966701561067" datatype="html"> |
4741 | <source>TRANSCODING</source> | 5050 | <source>TRANSCODING</source> |
4742 | <target state="translated">TRANSCODEREN</target> | 5051 | <target state="translated">TRANSCODEREN</target> |
4743 | 5052 | <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">85</context></context-group> | |
4744 | 5053 | <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">26</context></context-group> | |
4745 | <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">85</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">26</context></context-group></trans-unit><trans-unit id="8212237880239644112" datatype="html"> | 5054 | </trans-unit> |
4746 | <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><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> | 5055 | <trans-unit id="8212237880239644112" datatype="html"> |
5056 | <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> | ||
5057 | <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> | ||
4747 | <context-group purpose="location"> | 5058 | <context-group purpose="location"> |
4748 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> | 5059 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-live-configuration.component.html</context> |
4749 | <context context-type="linenumber">87,88</context> | 5060 | <context context-type="linenumber">87,88</context> |
4750 | </context-group> | 5061 | </context-group> |
4751 | </trans-unit> | 5062 | </trans-unit> |
4752 | |||
4753 | <trans-unit id="3444148141968928069" datatype="html"> | 5063 | <trans-unit id="3444148141968928069" datatype="html"> |
4754 | <source>Input formats</source> | 5064 | <source>Input formats</source> |
4755 | <target state="new">Input formats</target> | 5065 | <target state="new">Input formats</target> |
4756 | 5066 | <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">46</context></context-group> | |
4757 | <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">46</context></context-group></trans-unit> | 5067 | </trans-unit> |
4758 | <trans-unit id="4560217482714993155"> | 5068 | <trans-unit id="4560217482714993155"> |
4759 | <source>Transcoding enabled</source> | 5069 | <source>Transcoding enabled</source> |
4760 | <target>Transcoding ingeschakeld</target> | 5070 | <target>Transcoding ingeschakeld</target> |
4761 | 5071 | <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">40</context></context-group> | |
4762 | <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">40</context></context-group></trans-unit> | 5072 | </trans-unit> |
4763 | |||
4764 | |||
4765 | |||
4766 | |||
4767 | <trans-unit id="7452751710576287271"> | 5073 | <trans-unit id="7452751710576287271"> |
4768 | <source>Allow additional extensions</source> | 5074 | <source>Allow additional extensions</source> |
4769 | <target>Sta extra bestandsextensies toe</target> | 5075 | <target>Sta extra bestandsextensies toe</target> |
4770 | 5076 | <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> | |
4771 | <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></trans-unit><trans-unit id="2150024911136171" datatype="html"> | 5077 | </trans-unit> |
4772 | <source>Allows users to upload <x id="INTERPOLATION" equiv-text="{{ additionalVideoExtensions }}"/> videos.</source><target state="new">Allows users to upload <x id="INTERPOLATION" equiv-text="{{ additionalVideoExtensions }}"/> videos.</target> | 5078 | <trans-unit id="2150024911136171" datatype="html"> |
5079 | <source>Allows users to upload <x id="INTERPOLATION" equiv-text="{{ additionalVideoExtensions }}"/> videos.</source> | ||
5080 | <target state="new">Allows users to upload <x id="INTERPOLATION" equiv-text="{{ additionalVideoExtensions }}"/> videos.</target> | ||
4773 | <context-group purpose="location"> | 5081 | <context-group purpose="location"> |
4774 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5082 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
4775 | <context context-type="linenumber">54</context> | 5083 | <context context-type="linenumber">54</context> |
4776 | </context-group> | 5084 | </context-group> |
4777 | </trans-unit> | 5085 | </trans-unit> |
4778 | |||
4779 | <trans-unit id="1823941382992046371"> | 5086 | <trans-unit id="1823941382992046371"> |
4780 | <source>Allow audio files upload</source> | 5087 | <source>Allow audio files upload</source> |
4781 | <target>Audiobestanden uploaden toestaan</target> | 5088 | <target>Audiobestanden uploaden toestaan</target> |
4782 | 5089 | <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">62</context></context-group> | |
4783 | <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">62</context></context-group></trans-unit> | 5090 | </trans-unit> |
4784 | <trans-unit id="8340360585610503574" datatype="html"> | 5091 | <trans-unit id="8340360585610503574" datatype="html"> |
4785 | <source>Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files.</source> | 5092 | <source>Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files.</source> |
4786 | <target state="new">Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files.</target> | 5093 | <target state="new">Allows users to upload .mp3, .ogg, .wma, .flac, .aac, or .ac3 audio files.</target> |
4787 | 5094 | <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">65</context></context-group> | |
4788 | <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">65</context></context-group></trans-unit> | 5095 | </trans-unit> |
4789 | <trans-unit id="5867513506373651775" datatype="html"> | 5096 | <trans-unit id="5867513506373651775" datatype="html"> |
4790 | <source>The file will be merged in a still image video with the preview file on upload.</source> | 5097 | <source>The file will be merged in a still image video with the preview file on upload.</source> |
4791 | <target state="new">The file will be merged in a still image video with the preview file on upload.</target> | 5098 | <target state="new">The file will be merged in a still image video with the preview file on upload.</target> |
4792 | 5099 | <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">66</context></context-group> | |
4793 | <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">66</context></context-group></trans-unit> | 5100 | </trans-unit> |
4794 | <trans-unit id="2036818807823848377" datatype="html"> | 5101 | <trans-unit id="2036818807823848377" datatype="html"> |
4795 | <source>Output formats</source> | 5102 | <source>Output formats</source> |
4796 | <target state="new">Output formats</target> | 5103 | <target state="new">Output formats</target> |
4797 | 5104 | <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">73</context></context-group> | |
4798 | <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">73</context></context-group></trans-unit> | 5105 | </trans-unit> |
4799 | <trans-unit id="522057769554096255" datatype="html"> | 5106 | <trans-unit id="522057769554096255" datatype="html"> |
4800 | <source>WebTorrent enabled</source> | 5107 | <source>WebTorrent enabled</source> |
4801 | <target state="new">WebTorrent enabled</target> | 5108 | <target state="new">WebTorrent enabled</target> |
4802 | 5109 | <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">79</context></context-group> | |
4803 | <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">79</context></context-group></trans-unit><trans-unit id="8373385486403101567" datatype="html"> | 5110 | </trans-unit> |
4804 | <source>If you also enabled HLS support, it will multiply videos storage by 2</source><target state="new">If you also enabled HLS support, it will multiply videos storage by 2</target> | 5111 | <trans-unit id="8373385486403101567" datatype="html"> |
5112 | <source>If you also enabled HLS support, it will multiply videos storage by 2</source> | ||
5113 | <target state="new">If you also enabled HLS support, it will multiply videos storage by 2</target> | ||
4805 | <context-group purpose="location"> | 5114 | <context-group purpose="location"> |
4806 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5115 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
4807 | <context context-type="linenumber">83</context> | 5116 | <context context-type="linenumber">83</context> |
@@ -4810,11 +5119,11 @@ Je kan nu al informatie toevoegen over deze video. | |||
4810 | <trans-unit id="3839590624406770455" datatype="html"> | 5119 | <trans-unit id="3839590624406770455" datatype="html"> |
4811 | <source>HLS with P2P support enabled</source> | 5120 | <source>HLS with P2P support enabled</source> |
4812 | <target state="translated">HLS met P2P-ondersteuning ingeschakeld</target> | 5121 | <target state="translated">HLS met P2P-ondersteuning ingeschakeld</target> |
4813 | 5122 | <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> | |
4814 | <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></trans-unit><trans-unit id="7334484418359079994" datatype="html"> | 5123 | </trans-unit> |
4815 | <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> | 5124 | <trans-unit id="7334484418359079994" datatype="html"> |
4816 | "/><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><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> | 5125 | <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> |
4817 | "/><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> | 5126 | <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> |
4818 | <context-group purpose="location"> | 5127 | <context-group purpose="location"> |
4819 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5128 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
4820 | <context context-type="linenumber">99,108</context> | 5129 | <context context-type="linenumber">99,108</context> |
@@ -4823,9 +5132,11 @@ Je kan nu al informatie toevoegen over deze video. | |||
4823 | <trans-unit id="4748900450708089645" datatype="html"> | 5132 | <trans-unit id="4748900450708089645" datatype="html"> |
4824 | <source>Resolutions to generate per enabled format</source> | 5133 | <source>Resolutions to generate per enabled format</source> |
4825 | <target state="new">Resolutions to generate per enabled format</target> | 5134 | <target state="new">Resolutions to generate per enabled format</target> |
4826 | 5135 | <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">116</context></context-group> | |
4827 | <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">116</context></context-group></trans-unit><trans-unit id="5431196295724512251" datatype="html"> | 5136 | </trans-unit> |
4828 | <source> The original file resolution will be the default target if no option is selected. </source><target state="new"> The original file resolution will be the default target if no option is selected. </target> | 5137 | <trans-unit id="5431196295724512251" datatype="html"> |
5138 | <source>The original file resolution will be the default target if no option is selected.</source> | ||
5139 | <target state="new"> The original file resolution will be the default target if no option is selected. </target> | ||
4829 | <context-group purpose="location"> | 5140 | <context-group purpose="location"> |
4830 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5141 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
4831 | <context context-type="linenumber">132,133</context> | 5142 | <context context-type="linenumber">132,133</context> |
@@ -4834,149 +5145,157 @@ Je kan nu al informatie toevoegen over deze video. | |||
4834 | <trans-unit id="1126867109775813762"> | 5145 | <trans-unit id="1126867109775813762"> |
4835 | <source>Transcoding threads</source> | 5146 | <source>Transcoding threads</source> |
4836 | <target>Threads gebruikt voor transcoding</target> | 5147 | <target>Threads gebruikt voor transcoding</target> |
4837 | 5148 | <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">144</context></context-group> | |
4838 | <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">144</context></context-group></trans-unit><trans-unit id="7815122216882553289" datatype="html"> | 5149 | </trans-unit> |
4839 | <source> will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding </source><target state="new"> will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding </target> | 5150 | <trans-unit id="7815122216882553289" datatype="html"> |
5151 | <source>will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding </source> | ||
5152 | <target state="new"> will claim at most <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding </target> | ||
4840 | <context-group purpose="location"> | 5153 | <context-group purpose="location"> |
4841 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5154 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
4842 | <context context-type="linenumber">146,148</context> | 5155 | <context context-type="linenumber">146,148</context> |
4843 | </context-group> | 5156 | </context-group> |
4844 | </trans-unit><trans-unit id="8685484763568827375" datatype="html"> | 5157 | </trans-unit> |
4845 | <source> will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding </source><target state="new"> will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding </target> | 5158 | <trans-unit id="8685484763568827375" datatype="html"> |
5159 | <source>will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding </source> | ||
5160 | <target state="new"> will claim at least <x id="INTERPOLATION" equiv-text="{{ getTotalTranscodingThreads().value }}"/> <x id="INTERPOLATION_1" equiv-text="{{ getTotalTranscodingThreads().unit }}"/> with live transcoding </target> | ||
4846 | <context-group purpose="location"> | 5161 | <context-group purpose="location"> |
4847 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5162 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
4848 | <context context-type="linenumber">150,152</context> | 5163 | <context context-type="linenumber">150,152</context> |
4849 | </context-group> | 5164 | </context-group> |
4850 | </trans-unit><trans-unit id="7185278676178506632" datatype="html"> | 5165 | </trans-unit> |
4851 | <source>Transcoding jobs concurrency</source><target state="new">Transcoding jobs concurrency</target> | 5166 | <trans-unit id="7185278676178506632" datatype="html"> |
5167 | <source>Transcoding jobs concurrency</source> | ||
5168 | <target state="new">Transcoding jobs concurrency</target> | ||
4852 | <context-group purpose="location"> | 5169 | <context-group purpose="location"> |
4853 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5170 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
4854 | <context context-type="linenumber">166</context> | 5171 | <context context-type="linenumber">166</context> |
4855 | </context-group> | 5172 | </context-group> |
4856 | </trans-unit><trans-unit id="1969393594784140832" datatype="html"> | 5173 | </trans-unit> |
4857 | <source>allows to transcode multiple files in parallel. ⚠️ Requires a PeerTube restart</source><target state="new">allows to transcode multiple files in parallel. ⚠️ Requires a PeerTube restart</target> | 5174 | <trans-unit id="1969393594784140832" datatype="html"> |
5175 | <source>allows to transcode multiple files in parallel. ⚠️ Requires a PeerTube restart</source> | ||
5176 | <target state="new">allows to transcode multiple files in parallel. ⚠️ Requires a PeerTube restart</target> | ||
4858 | <context-group purpose="location"> | 5177 | <context-group purpose="location"> |
4859 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 5178 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
4860 | <context context-type="linenumber">167</context> | 5179 | <context context-type="linenumber">167</context> |
4861 | </context-group> | 5180 | </context-group> |
4862 | </trans-unit><trans-unit id="2184317712452071847" datatype="html"> | 5181 | </trans-unit> |
4863 | <source>Transcoding profile</source><target state="new">Transcoding profile</target> | 5182 | <trans-unit id="2184317712452071847" datatype="html"> |
4864 | 5183 | <source>Transcoding profile</source> | |
4865 | <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">178</context></context-group></trans-unit><trans-unit id="6289966287765074028" datatype="html"> | 5184 | <target state="new">Transcoding profile</target> |
4866 | <source>new transcoding profiles can be added by PeerTube plugins</source><target state="new">new transcoding profiles can be added by PeerTube plugins</target> | 5185 | <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">178</context></context-group> |
4867 | 5186 | </trans-unit> | |
4868 | <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></trans-unit> | 5187 | <trans-unit id="6289966287765074028" datatype="html"> |
5188 | <source>new transcoding profiles can be added by PeerTube plugins</source> | ||
5189 | <target state="new">new transcoding profiles can be added by PeerTube plugins</target> | ||
5190 | <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> | ||
5191 | </trans-unit> | ||
4869 | <trans-unit id="6879611446286948126" datatype="html"> | 5192 | <trans-unit id="6879611446286948126" datatype="html"> |
4870 | <source>CACHE</source> | 5193 | <source>CACHE</source> |
4871 | <target state="translated">CACHE</target> | 5194 | <target state="translated">CACHE</target> |
4872 | 5195 | <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">5</context></context-group> | |
4873 | <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">5</context></context-group></trans-unit><trans-unit id="5511334650211127631" datatype="html"> | 5196 | </trans-unit> |
4874 | <source> Some files are not federated, and fetched when necessary. Define their caching policies. </source><target state="new"> Some files are not federated, and fetched when necessary. Define their caching policies. </target> | 5197 | <trans-unit id="5511334650211127631" datatype="html"> |
5198 | <source>Some files are not federated, and fetched when necessary. Define their caching policies.</source> | ||
5199 | <target state="new"> Some files are not federated, and fetched when necessary. Define their caching policies. </target> | ||
4875 | <context-group purpose="location"> | 5200 | <context-group purpose="location"> |
4876 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> | 5201 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> |
4877 | <context context-type="linenumber">7,8</context> | 5202 | <context context-type="linenumber">7,8</context> |
4878 | </context-group> | 5203 | </context-group> |
4879 | </trans-unit> | 5204 | </trans-unit> |
4880 | |||
4881 | <trans-unit id="4382565260112874406" datatype="html"> | 5205 | <trans-unit id="4382565260112874406" datatype="html"> |
4882 | <source>Number of previews to keep in cache</source> | 5206 | <source>Number of previews to keep in cache</source> |
4883 | <target state="translated">Aantal in cache te houden voorvertoningen</target> | 5207 | <target state="translated">Aantal in cache te houden voorvertoningen</target> |
4884 | 5208 | <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">15</context></context-group> | |
4885 | <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">15</context></context-group></trans-unit><trans-unit id="3710881484246327863" datatype="html"> | 5209 | </trans-unit> |
4886 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | 5210 | <trans-unit id="3710881484246327863" datatype="html"> |
5211 | <source>{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</source> | ||
5212 | <target state="new">{VAR_PLURAL, plural, =1 {cached image} other {cached images}}</target> | ||
4887 | <context-group purpose="location"> | 5213 | <context-group purpose="location"> |
4888 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> | 5214 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> |
4889 | <context context-type="linenumber">22</context> | 5215 | <context context-type="linenumber">22</context> |
4890 | </context-group> | 5216 | </context-group> |
4891 | </trans-unit> | 5217 | </trans-unit> |
4892 | |||
4893 | <trans-unit id="2279905277031617076" datatype="html"> | 5218 | <trans-unit id="2279905277031617076" datatype="html"> |
4894 | <source>Number of video captions to keep in cache</source> | 5219 | <source>Number of video captions to keep in cache</source> |
4895 | <target state="translated">Aantal in cache te houden video-onderschriften</target> | 5220 | <target state="translated">Aantal in cache te houden video-onderschriften</target> |
4896 | 5221 | <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">29</context></context-group> | |
4897 | <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">29</context></context-group></trans-unit><trans-unit id="6193666854590647323" datatype="html"> | 5222 | </trans-unit> |
4898 | <source>{VAR_PLURAL, plural, =1 {cached caption} other {cached captions}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached caption} other {cached captions}}</target> | 5223 | <trans-unit id="6193666854590647323" datatype="html"> |
5224 | <source>{VAR_PLURAL, plural, =1 {cached caption} other {cached captions}}</source> | ||
5225 | <target state="new">{VAR_PLURAL, plural, =1 {cached caption} other {cached captions}}</target> | ||
4899 | <context-group purpose="location"> | 5226 | <context-group purpose="location"> |
4900 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> | 5227 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> |
4901 | <context context-type="linenumber">36</context> | 5228 | <context context-type="linenumber">36</context> |
4902 | </context-group> | 5229 | </context-group> |
4903 | </trans-unit><trans-unit id="330647913034301472" datatype="html"> | 5230 | </trans-unit> |
4904 | <source>Number of video torrents to keep in cache</source><target state="new">Number of video torrents to keep in cache</target> | 5231 | <trans-unit id="330647913034301472" datatype="html"> |
5232 | <source>Number of video torrents to keep in cache</source> | ||
5233 | <target state="new">Number of video torrents to keep in cache</target> | ||
4905 | <context-group purpose="location"> | 5234 | <context-group purpose="location"> |
4906 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> | 5235 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> |
4907 | <context context-type="linenumber">43</context> | 5236 | <context context-type="linenumber">43</context> |
4908 | </context-group> | 5237 | </context-group> |
4909 | </trans-unit><trans-unit id="4613961764793311850" datatype="html"> | 5238 | </trans-unit> |
4910 | <source>{VAR_PLURAL, plural, =1 {cached torrent} other {cached torrents}}</source><target state="new">{VAR_PLURAL, plural, =1 {cached torrent} other {cached torrents}}</target> | 5239 | <trans-unit id="4613961764793311850" datatype="html"> |
5240 | <source>{VAR_PLURAL, plural, =1 {cached torrent} other {cached torrents}}</source> | ||
5241 | <target state="new">{VAR_PLURAL, plural, =1 {cached torrent} other {cached torrents}}</target> | ||
4911 | <context-group purpose="location"> | 5242 | <context-group purpose="location"> |
4912 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> | 5243 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-advanced-configuration.component.html</context> |
4913 | <context context-type="linenumber">50</context> | 5244 | <context context-type="linenumber">50</context> |
4914 | </context-group> | 5245 | </context-group> |
4915 | </trans-unit> | 5246 | </trans-unit> |
4916 | |||
4917 | <trans-unit id="2528135865630556778" datatype="html"> | 5247 | <trans-unit id="2528135865630556778" datatype="html"> |
4918 | <source>CUSTOMIZATIONS</source> | 5248 | <source>CUSTOMIZATIONS</source> |
4919 | <target state="translated">AANPASSINGEN</target> | 5249 | <target state="translated">AANPASSINGEN</target> |
4920 | 5250 | <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">63</context></context-group> | |
4921 | <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">63</context></context-group></trans-unit><trans-unit id="1714039296068260295" datatype="html"> | 5251 | </trans-unit> |
4922 | <source> Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. </source><target state="new"> Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. </target> | 5252 | <trans-unit id="1714039296068260295" datatype="html"> |
4923 | 5253 | <source>Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill.</source> | |
4924 | <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">65</context></context-group></trans-unit> | 5254 | <target state="new"> Slight modifications to your PeerTube instance for when creating a plugin or theme is overkill. </target> |
4925 | 5255 | <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">65</context></context-group> | |
5256 | </trans-unit> | ||
4926 | <trans-unit id="6180346896314915203"> | 5257 | <trans-unit id="6180346896314915203"> |
4927 | <source>JavaScript</source> | 5258 | <source>JavaScript</source> |
4928 | <target>JavaScript</target> | 5259 | <target>JavaScript</target> |
4929 | 5260 | <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> | |
4930 | <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></trans-unit><trans-unit id="4067880101082150743" datatype="html"> | 5261 | </trans-unit> |
4931 | <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><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> | 5262 | <trans-unit id="4067880101082150743" datatype="html"> |
4932 | 5263 | <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> | |
4933 | <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">78</context></context-group></trans-unit><trans-unit id="5464209657969421100" datatype="html"> | 5264 | <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> |
4934 | <source> Write CSS code directly. Example:<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | 5265 | <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">78</context></context-group> |
4935 | "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | 5266 | </trans-unit> |
4936 | "/><x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/>#custom-css <x id="INTERPOLATION" equiv-text=" {{ '{' }"/> | 5267 | <trans-unit id="5464209657969421100" datatype="html"> |
5268 | <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="{{ '{' }"/> | ||
4937 | color: red; | 5269 | color: red; |
4938 | <x id="INTERPOLATION_1" equiv-text=" | 5270 | <x id="INTERPOLATION_1" equiv-text="{{ '}' }"/> |
4939 | {{ '}' }"/> | 5271 | <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="{{ '{' }"/> |
4940 | <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 /> | ||
4941 | "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4942 | "/><x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/>#custom-css .logged-in-email <x id="INTERPOLATION" equiv-text=" {{ '{' }"/> | ||
4943 | color: red; | 5272 | color: red; |
4944 | <x id="INTERPOLATION_1" equiv-text=" | 5273 | <x id="INTERPOLATION_1" equiv-text="{{ '}' }"/> |
4945 | {{ '}' }"/> | 5274 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></source> |
4946 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></source><target state="new"> Write CSS code directly. Example:<x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | 5275 | <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=" {{ '{' }"/> |
4947 | "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4948 | "/><x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/>#custom-css <x id="INTERPOLATION" equiv-text=" {{ '{' }"/> | ||
4949 | color: red; | 5276 | color: red; |
4950 | <x id="INTERPOLATION_1" equiv-text=" | 5277 | <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> |
4951 | {{ '}' }"/> | 5278 | <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=" {{ '{' }"/> |
4952 | <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 /> | ||
4953 | "/><x id="LINE_BREAK" ctype="lb" equiv-text="<br /> | ||
4954 | "/><x id="START_TAG_PRE" ctype="x-pre" equiv-text="<pre>"/>#custom-css .logged-in-email <x id="INTERPOLATION" equiv-text=" {{ '{' }"/> | ||
4955 | color: red; | 5279 | color: red; |
4956 | <x id="INTERPOLATION_1" equiv-text=" | 5280 | <x id="INTERPOLATION_1" equiv-text=" {{ '}' }"/> |
4957 | {{ '}' }"/> | ||
4958 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></target> | 5281 | <x id="CLOSE_TAG_PRE" ctype="x-pre" equiv-text="</pre>"/></target> |
4959 | 5282 | <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">97</context></context-group> | |
4960 | <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">97</context></context-group></trans-unit> | 5283 | </trans-unit> |
4961 | |||
4962 | |||
4963 | |||
4964 | <trans-unit id="283725429207896837" datatype="html"> | 5284 | <trans-unit id="283725429207896837" datatype="html"> |
4965 | <source>You cannot allow live replay if you don't enable transcoding.</source> | 5285 | <source>You cannot allow live replay if you don't enable transcoding.</source> |
4966 | <target state="translated">Je kan geen heruitzendingen van live-uitzendingen toelaten zonder transcoderen in te schakelen.</target> | 5286 | <target state="translated">Je kan geen heruitzendingen van live-uitzendingen toelaten zonder transcoderen in te schakelen.</target> |
4967 | 5287 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">77</context></context-group> | |
4968 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">77</context></context-group></trans-unit> | 5288 | </trans-unit> |
4969 | <trans-unit id="8167543029214637769" datatype="html"> | 5289 | <trans-unit id="8167543029214637769" datatype="html"> |
4970 | <source> There are errors in the form: <x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> | 5290 | <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> |
4971 | "/><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><target state="new"> There are errors in the form: <x id="START_UNORDERED_LIST" ctype="x-ul" equiv-text="<ul> | 5291 | <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> |
4972 | "/><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> | 5292 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">67</context></context-group> |
4973 | 5293 | </trans-unit> | |
4974 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> | ||
4975 | <trans-unit id="1445676851449000175"> | 5294 | <trans-unit id="1445676851449000175"> |
4976 | <source>Update configuration</source> | 5295 | <source>Update configuration</source> |
4977 | <target>Bijwerkingsconfiguratie</target> | 5296 | <target>Bijwerkingsconfiguratie</target> |
4978 | 5297 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">80</context></context-group> | |
4979 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">80</context></context-group></trans-unit> | 5298 | </trans-unit> |
4980 | <trans-unit id="5439158575454281141" datatype="html"> | 5299 | <trans-unit id="5439158575454281141" datatype="html"> |
4981 | <source>VIDEO SETTINGS</source> | 5300 | <source>VIDEO SETTINGS</source> |
4982 | <target state="translated">VIDEO-INSTELLINGEN</target> | 5301 | <target state="translated">VIDEO-INSTELLINGEN</target> |
@@ -5005,144 +5324,176 @@ color: red; | |||
5005 | <trans-unit id="7752239348028675311" datatype="html"> | 5324 | <trans-unit id="7752239348028675311" datatype="html"> |
5006 | <source>DANGER ZONE</source> | 5325 | <source>DANGER ZONE</source> |
5007 | <target state="translated">GEVARENZONE</target> | 5326 | <target state="translated">GEVARENZONE</target> |
5008 | 5327 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">219</context></context-group> | |
5009 | 5328 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">219</context></context-group> | |
5010 | 5329 | <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> | |
5011 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/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> | 5330 | </trans-unit> |
5012 | <trans-unit id="4915431133669985304"> | 5331 | <trans-unit id="4915431133669985304"> |
5013 | <source>Profile</source> | 5332 | <source>Profile</source> |
5014 | <target>Profiel</target> | 5333 | <target>Profiel</target> |
5015 | 5334 | <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> | |
5016 | <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> | 5335 | </trans-unit> |
5017 | <trans-unit id="1963136290621768454" datatype="html"> | 5336 | <trans-unit id="1963136290621768454" datatype="html"> |
5018 | <source>Resolution</source> | 5337 | <source>Resolution</source> |
5019 | <target state="translated">Resolutie</target> | 5338 | <target state="translated">Resolutie</target> |
5020 | 5339 | <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> | |
5021 | <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> | 5340 | </trans-unit> |
5022 | <trans-unit id="7814358426066520520" datatype="html"> | 5341 | <trans-unit id="7814358426066520520" datatype="html"> |
5023 | <source>Aspect ratio</source> | 5342 | <source>Aspect ratio</source> |
5024 | <target state="translated">Beeldverhouding</target> | 5343 | <target state="translated">Beeldverhouding</target> |
5025 | 5344 | <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> | |
5026 | <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> | 5345 | </trans-unit> |
5027 | <trans-unit id="44862519224794374" datatype="html"> | 5346 | <trans-unit id="44862519224794374" datatype="html"> |
5028 | <source>Average frame rate</source> | 5347 | <source>Average frame rate</source> |
5029 | <target state="translated">Gemiddelde frame rate</target> | 5348 | <target state="translated">Gemiddelde frame rate</target> |
5030 | 5349 | <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> | |
5031 | <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> | 5350 | </trans-unit> |
5032 | <trans-unit id="5053683525387462246" datatype="html"> | 5351 | <trans-unit id="5053683525387462246" datatype="html"> |
5033 | <source>Pixel format</source> | 5352 | <source>Pixel format</source> |
5034 | <target state="translated">Pixelformaat</target> | 5353 | <target state="translated">Pixelformaat</target> |
5035 | 5354 | <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> | |
5036 | <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> | 5355 | </trans-unit> |
5037 | <trans-unit id="7858676566953242358" datatype="html"> | 5356 | <trans-unit id="7858676566953242358" datatype="html"> |
5038 | <source>Sample rate</source> | 5357 | <source>Sample rate</source> |
5039 | <target state="translated">Sample rate</target> | 5358 | <target state="translated">Sample rate</target> |
5040 | 5359 | <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> | |
5041 | <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> | 5360 | </trans-unit> |
5042 | <trans-unit id="5403856660543890284" datatype="html"> | 5361 | <trans-unit id="5403856660543890284" datatype="html"> |
5043 | <source>Channel Layout</source> | 5362 | <source>Channel Layout</source> |
5044 | <target state="translated">Kanaalopmaak</target> | 5363 | <target state="translated">Kanaalopmaak</target> |
5045 | 5364 | <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> | |
5046 | <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"> | 5365 | </trans-unit> |
5047 | <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 | 5366 | <trans-unit id="6317170736181476800" datatype="html"> |
5048 | >"/></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 | 5367 | <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> |
5049 | >"/></target> | 5368 | <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> |
5050 | <context-group purpose="location"> | 5369 | <context-group purpose="location"> |
5051 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5370 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5052 | <context context-type="linenumber">3,7</context> | 5371 | <context context-type="linenumber">3,7</context> |
5053 | </context-group> | 5372 | </context-group> |
5054 | </trans-unit><trans-unit id="1405600824334286337" datatype="html"> | 5373 | </trans-unit> |
5055 | <source>More filters</source><target state="new">More filters</target> | 5374 | <trans-unit id="1405600824334286337" datatype="html"> |
5375 | <source>More filters</source> | ||
5376 | <target state="new">More filters</target> | ||
5056 | <context-group purpose="location"> | 5377 | <context-group purpose="location"> |
5057 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5378 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5058 | <context context-type="linenumber">20</context> | 5379 | <context context-type="linenumber">20</context> |
5059 | </context-group> | 5380 | </context-group> |
5060 | </trans-unit><trans-unit id="8867436033163146458" datatype="html"> | 5381 | </trans-unit> |
5061 | <source>Less filters</source><target state="new">Less filters</target> | 5382 | <trans-unit id="8867436033163146458" datatype="html"> |
5383 | <source>Less filters</source> | ||
5384 | <target state="new">Less filters</target> | ||
5062 | <context-group purpose="location"> | 5385 | <context-group purpose="location"> |
5063 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5386 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5064 | <context context-type="linenumber">21</context> | 5387 | <context context-type="linenumber">21</context> |
5065 | </context-group> | 5388 | </context-group> |
5066 | </trans-unit><trans-unit id="7028708681117573961" datatype="html"> | 5389 | </trans-unit> |
5067 | <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> | 5390 | <trans-unit id="7028708681117573961" datatype="html"> |
5391 | <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> | ||
5392 | <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> | ||
5068 | <context-group purpose="location"> | 5393 | <context-group purpose="location"> |
5069 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5394 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5070 | <context context-type="linenumber">46</context> | 5395 | <context context-type="linenumber">46</context> |
5071 | </context-group> | 5396 | </context-group> |
5072 | </trans-unit><trans-unit id="5691258609562173281" datatype="html"> | 5397 | </trans-unit> |
5073 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"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>"/>"Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5398 | <trans-unit id="5691258609562173281" datatype="html"> |
5399 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | ||
5400 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | ||
5074 | <context-group purpose="location"> | 5401 | <context-group purpose="location"> |
5075 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5402 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5076 | <context context-type="linenumber">48</context> | 5403 | <context context-type="linenumber">48</context> |
5077 | </context-group> | 5404 | </context-group> |
5078 | </trans-unit><trans-unit id="3224510615614621760" datatype="html"> | 5405 | </trans-unit> |
5079 | <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> | 5406 | <trans-unit id="3224510615614621760" datatype="html"> |
5407 | <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> | ||
5408 | <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> | ||
5080 | <context-group purpose="location"> | 5409 | <context-group purpose="location"> |
5081 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5410 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5082 | <context context-type="linenumber">49</context> | 5411 | <context context-type="linenumber">49</context> |
5083 | </context-group> | 5412 | </context-group> |
5084 | </trans-unit><trans-unit id="3082811226222076503" datatype="html"> | 5413 | </trans-unit> |
5085 | <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> | 5414 | <trans-unit id="3082811226222076503" datatype="html"> |
5415 | <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> | ||
5416 | <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> | ||
5086 | <context-group purpose="location"> | 5417 | <context-group purpose="location"> |
5087 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5418 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5088 | <context context-type="linenumber">50</context> | 5419 | <context context-type="linenumber">50</context> |
5089 | </context-group> | 5420 | </context-group> |
5090 | </trans-unit><trans-unit id="4322133526902910662" datatype="html"> | 5421 | </trans-unit> |
5091 | <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> | 5422 | <trans-unit id="4322133526902910662" datatype="html"> |
5423 | <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> | ||
5424 | <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> | ||
5092 | <context-group purpose="location"> | 5425 | <context-group purpose="location"> |
5093 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5426 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5094 | <context context-type="linenumber">51</context> | 5427 | <context context-type="linenumber">51</context> |
5095 | </context-group> | 5428 | </context-group> |
5096 | </trans-unit><trans-unit id="2343321245279384373" datatype="html"> | 5429 | </trans-unit> |
5097 | <source>Languages:</source><target state="new">Languages:</target> | 5430 | <trans-unit id="2343321245279384373" datatype="html"> |
5431 | <source>Languages:</source> | ||
5432 | <target state="new">Languages:</target> | ||
5098 | <context-group purpose="location"> | 5433 | <context-group purpose="location"> |
5099 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5434 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5100 | <context context-type="linenumber">59</context> | 5435 | <context context-type="linenumber">59</context> |
5101 | </context-group> | 5436 | </context-group> |
5102 | </trans-unit><trans-unit id="5063779773341398537" datatype="html"> | 5437 | </trans-unit> |
5103 | <source>Sensitive content:</source><target state="new">Sensitive content:</target> | 5438 | <trans-unit id="5063779773341398537" datatype="html"> |
5439 | <source>Sensitive content:</source> | ||
5440 | <target state="new">Sensitive content:</target> | ||
5104 | <context-group purpose="location"> | 5441 | <context-group purpose="location"> |
5105 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5442 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5106 | <context context-type="linenumber">66</context> | 5443 | <context context-type="linenumber">66</context> |
5107 | </context-group> | 5444 | </context-group> |
5108 | </trans-unit><trans-unit id="5723033003381016192" datatype="html"> | 5445 | </trans-unit> |
5109 | <source>Scope:</source><target state="new">Scope:</target> | 5446 | <trans-unit id="5723033003381016192" datatype="html"> |
5447 | <source>Scope:</source> | ||
5448 | <target state="new">Scope:</target> | ||
5110 | <context-group purpose="location"> | 5449 | <context-group purpose="location"> |
5111 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5450 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5112 | <context context-type="linenumber">81</context> | 5451 | <context context-type="linenumber">81</context> |
5113 | </context-group> | 5452 | </context-group> |
5114 | </trans-unit><trans-unit id="8481241275509347668" datatype="html"> | 5453 | </trans-unit> |
5115 | <source>Local videos (this instance)</source><target state="new">Local videos (this instance)</target> | 5454 | <trans-unit id="8481241275509347668" datatype="html"> |
5455 | <source>Local videos (this instance)</source> | ||
5456 | <target state="new">Local videos (this instance)</target> | ||
5116 | <context-group purpose="location"> | 5457 | <context-group purpose="location"> |
5117 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5458 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5118 | <context context-type="linenumber">85</context> | 5459 | <context context-type="linenumber">85</context> |
5119 | </context-group> | 5460 | </context-group> |
5120 | </trans-unit><trans-unit id="8383401711408398806" datatype="html"> | 5461 | </trans-unit> |
5121 | <source>Federated videos (this instance + followed instances)</source><target state="new">Federated videos (this instance + followed instances)</target> | 5462 | <trans-unit id="8383401711408398806" datatype="html"> |
5463 | <source>Federated videos (this instance + followed instances)</source> | ||
5464 | <target state="new">Federated videos (this instance + followed instances)</target> | ||
5122 | <context-group purpose="location"> | 5465 | <context-group purpose="location"> |
5123 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5466 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5124 | <context context-type="linenumber">90</context> | 5467 | <context context-type="linenumber">90</context> |
5125 | </context-group> | 5468 | </context-group> |
5126 | </trans-unit><trans-unit id="2736556170366900089" datatype="html"> | 5469 | </trans-unit> |
5127 | <source>Type:</source><target state="new">Type:</target> | 5470 | <trans-unit id="2736556170366900089" datatype="html"> |
5471 | <source>Type:</source> | ||
5472 | <target state="new">Type:</target> | ||
5128 | <context-group purpose="location"> | 5473 | <context-group purpose="location"> |
5129 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5474 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5130 | <context context-type="linenumber">95</context> | 5475 | <context context-type="linenumber">95</context> |
5131 | </context-group> | 5476 | </context-group> |
5132 | </trans-unit><trans-unit id="1744425032255703211" datatype="html"> | 5477 | </trans-unit> |
5133 | <source>VOD & Live videos</source><target state="new">VOD & Live videos</target> | 5478 | <trans-unit id="1744425032255703211" datatype="html"> |
5479 | <source>VOD & Live videos</source> | ||
5480 | <target state="new">VOD & Live videos</target> | ||
5134 | <context-group purpose="location"> | 5481 | <context-group purpose="location"> |
5135 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5482 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5136 | <context context-type="linenumber">99</context> | 5483 | <context context-type="linenumber">99</context> |
5137 | </context-group> | 5484 | </context-group> |
5138 | </trans-unit><trans-unit id="1370537846415473089" datatype="html"> | 5485 | </trans-unit> |
5139 | <source>Categories:</source><target state="new">Categories:</target> | 5486 | <trans-unit id="1370537846415473089" datatype="html"> |
5487 | <source>Categories:</source> | ||
5488 | <target state="new">Categories:</target> | ||
5140 | <context-group purpose="location"> | 5489 | <context-group purpose="location"> |
5141 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5490 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5142 | <context context-type="linenumber">114</context> | 5491 | <context context-type="linenumber">114</context> |
5143 | </context-group> | 5492 | </context-group> |
5144 | </trans-unit><trans-unit id="4250125031269088402" datatype="html"> | 5493 | </trans-unit> |
5145 | <source>Moderation:</source><target state="new">Moderation:</target> | 5494 | <trans-unit id="4250125031269088402" datatype="html"> |
5495 | <source>Moderation:</source> | ||
5496 | <target state="new">Moderation:</target> | ||
5146 | <context-group purpose="location"> | 5497 | <context-group purpose="location"> |
5147 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5498 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5148 | <context context-type="linenumber">120</context> | 5499 | <context context-type="linenumber">120</context> |
@@ -5167,9 +5518,9 @@ color: red; | |||
5167 | <trans-unit id="5340498030552368470"> | 5518 | <trans-unit id="5340498030552368470"> |
5168 | <source>Current password</source> | 5519 | <source>Current password</source> |
5169 | <target>Huidige wachtwoord</target> | 5520 | <target>Huidige wachtwoord</target> |
5170 | 5521 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">8</context></context-group> | |
5171 | 5522 | <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">28</context></context-group> | |
5172 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.html</context><context context-type="linenumber">8</context></context-group><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">28</context></context-group></trans-unit> | 5523 | </trans-unit> |
5173 | <trans-unit id="3588415639242079458"> | 5524 | <trans-unit id="3588415639242079458"> |
5174 | <source>New password</source> | 5525 | <source>New password</source> |
5175 | <target>Nieuw wachtwoord</target> | 5526 | <target>Nieuw wachtwoord</target> |
@@ -5184,20 +5535,21 @@ color: red; | |||
5184 | <source>Default policy on videos containing sensitive content</source> | 5535 | <source>Default policy on videos containing sensitive content</source> |
5185 | <target>Standaardbeleid voor video's met gevoelige inhoud</target> | 5536 | <target>Standaardbeleid voor video's met gevoelige inhoud</target> |
5186 | <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> | 5537 | <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> |
5187 | </trans-unit><trans-unit id="7350483582490037954" datatype="html"> | 5538 | </trans-unit> |
5188 | <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> | 5539 | <trans-unit id="7350483582490037954" datatype="html"> |
5540 | <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> | ||
5541 | <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> | ||
5189 | <context-group purpose="location"> | 5542 | <context-group purpose="location"> |
5190 | <context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context> | 5543 | <context context-type="sourcefile">src/app/shared/shared-user-settings/user-video-settings.component.html</context> |
5191 | <context context-type="linenumber">8,9</context> | 5544 | <context context-type="linenumber">8,9</context> |
5192 | </context-group> | 5545 | </context-group> |
5193 | </trans-unit> | 5546 | </trans-unit> |
5194 | |||
5195 | <trans-unit id="4409859601539810260" datatype="html"> | 5547 | <trans-unit id="4409859601539810260" datatype="html"> |
5196 | <source>Policy for sensitive videos</source> | 5548 | <source>Policy for sensitive videos</source> |
5197 | <target state="translated">Beleid rond gevoelige video's</target> | 5549 | <target state="translated">Beleid rond gevoelige video's</target> |
5198 | 5550 | <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> | |
5199 | 5551 | <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> | |
5200 | <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> | 5552 | </trans-unit> |
5201 | <trans-unit id="2864176699435587977" datatype="html"> | 5553 | <trans-unit id="2864176699435587977" datatype="html"> |
5202 | <source>Only display videos in the following languages/subtitles</source> | 5554 | <source>Only display videos in the following languages/subtitles</source> |
5203 | <target state="translated">Enkel video's weergeven in de volgende talen/ondertitels</target> | 5555 | <target state="translated">Enkel video's weergeven in de volgende talen/ondertitels</target> |
@@ -5211,10 +5563,9 @@ color: red; | |||
5211 | <trans-unit id="2658703380934466003" datatype="html"> | 5563 | <trans-unit id="2658703380934466003" datatype="html"> |
5212 | <source>Add a new language</source> | 5564 | <source>Add a new language</source> |
5213 | <target state="translated">Een nieuwe taal toevoegen</target> | 5565 | <target state="translated">Een nieuwe taal toevoegen</target> |
5214 | 5566 | <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> | |
5215 | 5567 | <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> | |
5216 | <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> | 5568 | </trans-unit> |
5217 | |||
5218 | <trans-unit id="1530331428384894781"> | 5569 | <trans-unit id="1530331428384894781"> |
5219 | <source><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> is awaiting email verification </source> | 5570 | <source><x id="START_TAG_SPAN"/><x id="INTERPOLATION"/><x id="CLOSE_TAG_SPAN"/> is awaiting email verification </source> |
5220 | <target> | 5571 | <target> |
@@ -5223,24 +5574,24 @@ color: red; | |||
5223 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> wacht op e-mailverificatie | 5574 | <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/> wacht op e-mailverificatie |
5224 | 5575 | ||
5225 | </target> | 5576 | </target> |
5226 | 5577 | <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> | |
5227 | <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></trans-unit> | 5578 | </trans-unit> |
5228 | <trans-unit id="264068562357780835"> | 5579 | <trans-unit id="264068562357780835"> |
5229 | <source>New email</source> | 5580 | <source>New email</source> |
5230 | <target>Nieuwe e-mail</target> | 5581 | <target>Nieuwe e-mail</target> |
5231 | 5582 | <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">17</context></context-group> | |
5232 | <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">17</context></context-group></trans-unit> | 5583 | </trans-unit> |
5233 | <trans-unit id="3000005804987112527"> | 5584 | <trans-unit id="3000005804987112527"> |
5234 | <source>Change email</source> | 5585 | <source>Change email</source> |
5235 | <target>Verander e-mail</target> | 5586 | <target>Verander e-mail</target> |
5236 | 5587 | <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">36</context></context-group> | |
5237 | <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">36</context></context-group></trans-unit> | 5588 | </trans-unit> |
5238 | <trans-unit id="7103588127254721505"> | 5589 | <trans-unit id="7103588127254721505"> |
5239 | <source>Theme</source> | 5590 | <source>Theme</source> |
5240 | <target>Thema</target> | 5591 | <target>Thema</target> |
5241 | 5592 | <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">14</context></context-group> | |
5242 | 5593 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.html</context><context context-type="linenumber">4</context></context-group> | |
5243 | <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">14</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">4</context></context-group></trans-unit> | 5594 | </trans-unit> |
5244 | <trans-unit id="4541462271161741535"> | 5595 | <trans-unit id="4541462271161741535"> |
5245 | <source>instance default</source> | 5596 | <source>instance default</source> |
5246 | <target>standaard voor exemplaar van PeerTube</target> | 5597 | <target>standaard voor exemplaar van PeerTube</target> |
@@ -5254,29 +5605,39 @@ color: red; | |||
5254 | <trans-unit id="4844578664427956129"> | 5605 | <trans-unit id="4844578664427956129"> |
5255 | <source>Change ownership</source> | 5606 | <source>Change ownership</source> |
5256 | <target>Verander eigenaar</target> | 5607 | <target>Verander eigenaar</target> |
5257 | 5608 | <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> | |
5258 | <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">180</context></context-group></trans-unit> | 5609 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">180</context></context-group> |
5610 | </trans-unit> | ||
5259 | <trans-unit id="4561174610228620528"> | 5611 | <trans-unit id="4561174610228620528"> |
5260 | <source>Select the next owner</source> | 5612 | <source>Select the next owner</source> |
5261 | <target>Selecteer de volgende eigenaar</target> | 5613 | <target>Selecteer de volgende eigenaar</target> |
5262 | <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> | 5614 | <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> |
5263 | </trans-unit> | 5615 | </trans-unit> |
5264 | <trans-unit id="1788875035518441092" datatype="html"> | 5616 | <trans-unit id="1788875035518441092" datatype="html"> |
5265 | <source>Last published first</source><target state="new">Last published first</target> | 5617 | <source>Last published first</source> |
5266 | 5618 | <target state="new">Last published first</target> | |
5267 | <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"> | 5619 | <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> |
5268 | <source>Last created first</source><target state="new">Last created first</target> | 5620 | </trans-unit> |
5269 | 5621 | <trans-unit id="4541072509002204177" datatype="html"> | |
5270 | <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"> | 5622 | <source>Last created first</source> |
5271 | <source>Most viewed first</source><target state="new">Most viewed first</target> | 5623 | <target state="new">Last created first</target> |
5272 | 5624 | <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> | |
5273 | <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"> | 5625 | </trans-unit> |
5274 | <source>Most liked first</source><target state="new">Most liked first</target> | 5626 | <trans-unit id="1142493792593089647" datatype="html"> |
5275 | 5627 | <source>Most viewed first</source> | |
5276 | <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"> | 5628 | <target state="new">Most viewed first</target> |
5277 | <source>Longest first</source><target state="new">Longest first</target> | 5629 | <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> |
5278 | 5630 | </trans-unit> | |
5279 | <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> | 5631 | <trans-unit id="8108088952881606566" datatype="html"> |
5632 | <source>Most liked first</source> | ||
5633 | <target state="new">Most liked first</target> | ||
5634 | <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> | ||
5635 | </trans-unit> | ||
5636 | <trans-unit id="2782422473180760140" datatype="html"> | ||
5637 | <source>Longest first</source> | ||
5638 | <target state="new">Longest first</target> | ||
5639 | <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> | ||
5640 | </trans-unit> | ||
5280 | <trans-unit id="8714145624854863455"> | 5641 | <trans-unit id="8714145624854863455"> |
5281 | <source>Accept ownership</source> | 5642 | <source>Accept ownership</source> |
5282 | <target>Accepteer eigenaar</target> | 5643 | <target>Accepteer eigenaar</target> |
@@ -5287,7 +5648,6 @@ color: red; | |||
5287 | <target state="translated">Een kanaal selecteren om de video te ontvangen</target> | 5648 | <target state="translated">Een kanaal selecteren om de video te ontvangen</target> |
5288 | <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> | 5649 | <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> |
5289 | </trans-unit> | 5650 | </trans-unit> |
5290 | |||
5291 | <trans-unit id="3610344835750059476" datatype="html"> | 5651 | <trans-unit id="3610344835750059476" datatype="html"> |
5292 | <source>My ownership changes</source> | 5652 | <source>My ownership changes</source> |
5293 | <target state="translated">Mijn wijzigingen van eigenaar</target> | 5653 | <target state="translated">Mijn wijzigingen van eigenaar</target> |
@@ -5311,29 +5671,29 @@ color: red; | |||
5311 | <trans-unit id="5417361655914085905" datatype="html"> | 5671 | <trans-unit id="5417361655914085905" datatype="html"> |
5312 | <source>Account page</source> | 5672 | <source>Account page</source> |
5313 | <target state="translated">Accountpagina</target> | 5673 | <target state="translated">Accountpagina</target> |
5314 | 5674 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">70</context></context-group> | |
5315 | 5675 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">76</context></context-group> | |
5316 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">70</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">76</context></context-group></trans-unit> | 5676 | </trans-unit> |
5317 | <trans-unit id="187187500641108332" datatype="html"> | 5677 | <trans-unit id="187187500641108332" datatype="html"> |
5318 | <source><x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> </source> | 5678 | <source><x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> </source> |
5319 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> </target> | 5679 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ video.byAccount }}"/> </target> |
5320 | 5680 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">196</context></context-group> | |
5321 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context><context context-type="linenumber">196</context></context-group></trans-unit> | 5681 | </trans-unit> |
5322 | <trans-unit id="2000373220662583633" datatype="html"> | 5682 | <trans-unit id="2000373220662583633" datatype="html"> |
5323 | <source>No ownership change request found.</source> | 5683 | <source>No ownership change request found.</source> |
5324 | <target state="translated">Geen verzoek tot wijziging van eigenaar gevonden.</target> | 5684 | <target state="translated">Geen verzoek tot wijziging van eigenaar gevonden.</target> |
5325 | 5685 | <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> | |
5326 | <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> | 5686 | </trans-unit> |
5327 | <trans-unit id="4247400351982331798" datatype="html"> | 5687 | <trans-unit id="4247400351982331798" datatype="html"> |
5328 | <source>Account settings</source> | 5688 | <source>Account settings</source> |
5329 | <target state="translated">Account-instellingen</target> | 5689 | <target state="translated">Account-instellingen</target> |
5330 | 5690 | <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> | |
5331 | <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> | 5691 | </trans-unit> |
5332 | <trans-unit id="2864486939135008600" datatype="html"> | 5692 | <trans-unit id="2864486939135008600" datatype="html"> |
5333 | <source>Playlist elements</source> | 5693 | <source>Playlist elements</source> |
5334 | <target state="translated">Elementen afspeellijst</target> | 5694 | <target state="translated">Elementen afspeellijst</target> |
5335 | 5695 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">57</context></context-group> | |
5336 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">57</context></context-group></trans-unit> | 5696 | </trans-unit> |
5337 | <trans-unit id="7801453816697513153" datatype="html"> | 5697 | <trans-unit id="7801453816697513153" datatype="html"> |
5338 | <source>My imports</source> | 5698 | <source>My imports</source> |
5339 | <target state="translated">Mijn imports</target> | 5699 | <target state="translated">Mijn imports</target> |
@@ -5343,31 +5703,35 @@ color: red; | |||
5343 | <trans-unit id="7000850040589508423" datatype="html"> | 5703 | <trans-unit id="7000850040589508423" datatype="html"> |
5344 | <source>Create video channel</source> | 5704 | <source>Create video channel</source> |
5345 | <target state="translated">Videokanaal aanmaken</target> | 5705 | <target state="translated">Videokanaal aanmaken</target> |
5346 | 5706 | <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> | |
5347 | <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"> | 5707 | </trans-unit> |
5348 | <source>No channel found.</source><target state="new">No channel found.</target> | 5708 | <trans-unit id="5700655611297335752" datatype="html"> |
5349 | 5709 | <source>No channel found.</source> | |
5350 | <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> | 5710 | <target state="new">No channel found.</target> |
5711 | <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> | ||
5712 | </trans-unit> | ||
5351 | <trans-unit id="5500467336262464724"> | 5713 | <trans-unit id="5500467336262464724"> |
5352 | <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers </source> | 5714 | <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers </source> |
5353 | <target> | 5715 | <target> |
5354 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> abonnees | 5716 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> abonnees |
5355 | </target> | 5717 | </target> |
5356 | 5718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">25</context></context-group> | |
5357 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 5719 | </trans-unit> |
5358 | <trans-unit id="626184983378002054"> | 5720 | <trans-unit id="626184983378002054"> |
5359 | <source>Example: my_channel</source> | 5721 | <source>Example: my_channel</source> |
5360 | <target>Voorbeeld: mijn_kanaal</target> | 5722 | <target>Voorbeeld: mijn_kanaal</target> |
5361 | 5723 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">47</context></context-group> | |
5362 | 5724 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">47</context></context-group> | |
5363 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> | 5725 | </trans-unit> |
5364 | <trans-unit id="5871023634125368211" datatype="html"> | 5726 | <trans-unit id="5871023634125368211" datatype="html"> |
5365 | <source>CHANNEL</source> | 5727 | <source>CHANNEL</source> |
5366 | <target state="translated">KANAAL</target> | 5728 | <target state="translated">KANAAL</target> |
5367 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">26</context></context-group> | 5729 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">26</context></context-group> |
5368 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">26</context></context-group> | 5730 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">26</context></context-group> |
5369 | </trans-unit><trans-unit id="3582855804901374179" datatype="html"> | 5731 | </trans-unit> |
5370 | <source>Banner image of your channel</source><target state="new">Banner image of your channel</target> | 5732 | <trans-unit id="3582855804901374179" datatype="html"> |
5733 | <source>Banner image of your channel</source> | ||
5734 | <target state="new">Banner image of your channel</target> | ||
5371 | <context-group purpose="location"> | 5735 | <context-group purpose="location"> |
5372 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context> | 5736 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context> |
5373 | <context context-type="linenumber">30</context> | 5737 | <context context-type="linenumber">30</context> |
@@ -5381,26 +5745,28 @@ color: red; | |||
5381 | <source>Short text to tell people how they can support your channel (membership platform...).<br /><br /> | 5745 | <source>Short text to tell people how they can support your channel (membership platform...).<br /><br /> |
5382 | When you will upload a video in this channel, the video support field will be automatically filled by this text.</source> | 5746 | When you will upload a video in this channel, the video support field will be automatically filled by this text.</source> |
5383 | <target state="translated">Korte tekst om mensen te vertellen hoe ze je kanaal kunnen ondersteunen (ledenplatform...).<br /><br /> Wanneer je een video uploadt in dit kanaal komt deze tekst automatisch in het video-ondersteuningsveld terecht.</target> | 5747 | <target state="translated">Korte tekst om mensen te vertellen hoe ze je kanaal kunnen ondersteunen (ledenplatform...).<br /><br /> Wanneer je een video uploadt in dit kanaal komt deze tekst automatisch in het video-ondersteuningsveld terecht.</target> |
5384 | 5748 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">84</context></context-group> | |
5385 | 5749 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">84</context></context-group> | |
5386 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">84</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> | 5750 | </trans-unit> |
5387 | <trans-unit id="5278589041647101772"> | 5751 | <trans-unit id="5278589041647101772"> |
5388 | <source>Overwrite support field of all videos of this channel</source> | 5752 | <source>Overwrite support field of all videos of this channel</source> |
5389 | <target>Overschrijf support invoerveld van alle video's van dit kanaal</target> | 5753 | <target>Overschrijf support invoerveld van alle video's van dit kanaal</target> |
5390 | 5754 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">99</context></context-group> | |
5391 | 5755 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">99</context></context-group> | |
5392 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">99</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context><context context-type="linenumber">99</context></context-group></trans-unit> | 5756 | </trans-unit> |
5393 | <trans-unit id="5500467336262464724"> | 5757 | <trans-unit id="5500467336262464724"> |
5394 | <source><x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> subscribers </source> | 5758 | <source><x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> subscribers </source> |
5395 | <target> | 5759 | <target> |
5396 | <x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> abonnees | 5760 | <x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> abonnees |
5397 | </target> | 5761 | </target> |
5398 | 5762 | <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> | |
5399 | <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><trans-unit id="31472093355465024" datatype="html"> | 5763 | </trans-unit> |
5400 | <source>Upload a new avatar</source><target state="new">Upload a new avatar</target> | 5764 | <trans-unit id="31472093355465024" datatype="html"> |
5401 | 5765 | <source>Upload a new avatar</source> | |
5402 | 5766 | <target state="new">Upload a new avatar</target> | |
5403 | <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> | 5767 | <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> |
5768 | <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> | ||
5769 | </trans-unit> | ||
5404 | <trans-unit id="4854396465510517671"> | 5770 | <trans-unit id="4854396465510517671"> |
5405 | <source>Target</source> | 5771 | <source>Target</source> |
5406 | <target>Doelwit</target> | 5772 | <target>Doelwit</target> |
@@ -5409,9 +5775,8 @@ color: red; | |||
5409 | <trans-unit id="5352255295652969301" datatype="html"> | 5775 | <trans-unit id="5352255295652969301" datatype="html"> |
5410 | <source>See the error</source> | 5776 | <source>See the error</source> |
5411 | <target state="translated">De fout bekijken</target> | 5777 | <target state="translated">De fout bekijken</target> |
5412 | 5778 | <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">26</context></context-group> | |
5413 | 5779 | </trans-unit> | |
5414 | <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">26</context></context-group></trans-unit> | ||
5415 | <trans-unit id="6376690302059877029" datatype="html"> | 5780 | <trans-unit id="6376690302059877029" datatype="html"> |
5416 | <source>This video was deleted</source> | 5781 | <source>This video was deleted</source> |
5417 | <target state="translated">Deze video is verwijderd</target> | 5782 | <target state="translated">Deze video is verwijderd</target> |
@@ -5430,37 +5795,36 @@ color: red; | |||
5430 | <trans-unit id="3122895472333547524"> | 5795 | <trans-unit id="3122895472333547524"> |
5431 | <source>Delete your account</source> | 5796 | <source>Delete your account</source> |
5432 | <target>Je account verwijderen</target> | 5797 | <target>Je account verwijderen</target> |
5433 | 5798 | <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> | |
5434 | <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">26</context></context-group></trans-unit> | 5799 | <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">26</context></context-group> |
5435 | 5800 | </trans-unit> | |
5436 | <trans-unit id="4000980858407872649" datatype="html"> | 5801 | <trans-unit id="4000980858407872649" datatype="html"> |
5437 | <source>Channel page</source> | 5802 | <source>Channel page</source> |
5438 | <target state="translated">Kanaalpagina</target> | 5803 | <target state="translated">Kanaalpagina</target> |
5439 | 5804 | <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> | |
5440 | 5805 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">20</context></context-group> | |
5441 | 5806 | <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> | |
5442 | <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-subscriptions/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">67</context></context-group></trans-unit> | 5807 | </trans-unit> |
5443 | <trans-unit id="9131836378905533756"> | 5808 | <trans-unit id="9131836378905533756"> |
5444 | <source>Created by <x id="INTERPOLATION"/></source> | 5809 | <source>Created by <x id="INTERPOLATION"/></source> |
5445 | <target>Aangemaakt door <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target> | 5810 | <target>Aangemaakt door <x id="INTERPOLATION" equiv-text="{{ videoChannel.ownerBy }}"/></target> |
5446 | 5811 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">28</context></context-group> | |
5447 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 5812 | </trans-unit> |
5448 | <trans-unit id="228548407872312756" datatype="html"> | 5813 | <trans-unit id="228548407872312756" datatype="html"> |
5449 | <source>Owner account page</source> | 5814 | <source>Owner account page</source> |
5450 | <target state="translated">Accountpagina eigenaar</target> | 5815 | <target state="translated">Accountpagina eigenaar</target> |
5451 | 5816 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">27</context></context-group> | |
5452 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit> | 5817 | </trans-unit> |
5453 | |||
5454 | |||
5455 | <trans-unit id="2204625138753484173"> | 5818 | <trans-unit id="2204625138753484173"> |
5456 | <source><x id="START_TAG_MY_GLOBAL_ICON"/><x id="CLOSE_TAG_MY_GLOBAL_ICON"/> Delete history </source> | 5819 | <source><x id="START_TAG_MY_GLOBAL_ICON"/><x id="CLOSE_TAG_MY_GLOBAL_ICON"/> Delete history </source> |
5457 | <target><x id="START_TAG_MY-GLOBAL-ICON" ctype="x-my-global-icon" equiv-text="<my-global-icon>"/> <x id="CLOSE_TAG_MY-GLOBAL-ICON" ctype="x-my-global-icon" equiv-text="</my-global-icon>"/> Geschiedenis verwijderen </target> | 5820 | <target><x id="START_TAG_MY-GLOBAL-ICON" ctype="x-my-global-icon" equiv-text="<my-global-icon>"/> <x id="CLOSE_TAG_MY-GLOBAL-ICON" ctype="x-my-global-icon" equiv-text="</my-global-icon>"/> Geschiedenis verwijderen </target> |
5458 | 5821 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">17</context></context-group> | |
5459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit><trans-unit id="4781078006040259916" datatype="html"> | 5822 | </trans-unit> |
5460 | <source>You don't have any video in your watch history yet.</source><target state="new">You don't have any video in your watch history yet.</target> | 5823 | <trans-unit id="4781078006040259916" datatype="html"> |
5461 | 5824 | <source>You don't have any video in your watch history yet.</source> | |
5462 | <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> | 5825 | <target state="new">You don't have any video in your watch history yet.</target> |
5463 | 5826 | <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> | |
5827 | </trans-unit> | ||
5464 | <trans-unit id="687236465759862933" datatype="html"> | 5828 | <trans-unit id="687236465759862933" datatype="html"> |
5465 | <source>Open syndication dropdown</source> | 5829 | <source>Open syndication dropdown</source> |
5466 | <target state="new">Open syndication dropdown</target> | 5830 | <target state="new">Open syndication dropdown</target> |
@@ -5472,14 +5836,18 @@ color: red; | |||
5472 | <context context-type="sourcefile">src/app/shared/shared-main/feeds/feed.component.html</context> | 5836 | <context context-type="sourcefile">src/app/shared/shared-main/feeds/feed.component.html</context> |
5473 | <context context-type="linenumber">3</context> | 5837 | <context context-type="linenumber">3</context> |
5474 | </context-group> | 5838 | </context-group> |
5475 | </trans-unit><trans-unit id="5511928240200239994" datatype="html"> | 5839 | </trans-unit> |
5476 | <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> | 5840 | <trans-unit id="5511928240200239994" datatype="html"> |
5841 | <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> | ||
5842 | <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> | ||
5477 | <context-group purpose="location"> | 5843 | <context-group purpose="location"> |
5478 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> | 5844 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> |
5479 | <context context-type="linenumber">5</context> | 5845 | <context context-type="linenumber">5</context> |
5480 | </context-group> | 5846 | </context-group> |
5481 | </trans-unit><trans-unit id="5339945526545410198" datatype="html"> | 5847 | </trans-unit> |
5482 | <source>Set up my channels</source><target state="new">Set up my channels</target> | 5848 | <trans-unit id="5339945526545410198" datatype="html"> |
5849 | <source>Set up my channels</source> | ||
5850 | <target state="new">Set up my channels</target> | ||
5483 | <context-group purpose="location"> | 5851 | <context-group purpose="location"> |
5484 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> | 5852 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> |
5485 | <context context-type="linenumber">6</context> | 5853 | <context context-type="linenumber">6</context> |
@@ -5541,8 +5909,8 @@ color: red; | |||
5541 | <trans-unit id="3438686710205841496" datatype="html"> | 5909 | <trans-unit id="3438686710205841496" datatype="html"> |
5542 | <source>Create playlist</source> | 5910 | <source>Create playlist</source> |
5543 | <target state="translated">Afspeellijst maken</target> | 5911 | <target state="translated">Afspeellijst maken</target> |
5544 | 5912 | <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> | |
5545 | <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> | 5913 | </trans-unit> |
5546 | <trans-unit id="7040375308762081154" datatype="html"> | 5914 | <trans-unit id="7040375308762081154" datatype="html"> |
5547 | <source>My video channels</source> | 5915 | <source>My video channels</source> |
5548 | <target state="translated">Mijn videokanalen</target> | 5916 | <target state="translated">Mijn videokanalen</target> |
@@ -5556,15 +5924,14 @@ color: red; | |||
5556 | <trans-unit id="8828123061564507501" datatype="html"> | 5924 | <trans-unit id="8828123061564507501" datatype="html"> |
5557 | <source>Playlist <x id="PH"/>} deleted.</source> | 5925 | <source>Playlist <x id="PH"/>} deleted.</source> |
5558 | <target state="translated">Afspeellijst <x id="PH"/>} verwijderd.</target> | 5926 | <target state="translated">Afspeellijst <x id="PH"/>} verwijderd.</target> |
5559 | 5927 | <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> | |
5560 | <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> | 5928 | </trans-unit> |
5561 | <trans-unit id="3943893855105372623"> | 5929 | <trans-unit id="3943893855105372623"> |
5562 | <source>Playlist thumbnail</source> | 5930 | <source>Playlist thumbnail</source> |
5563 | <target>Afspeellijst thumbnail</target> | 5931 | <target>Afspeellijst thumbnail</target> |
5564 | <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> | 5932 | <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> |
5565 | <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> | 5933 | <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> |
5566 | </trans-unit> | 5934 | </trans-unit> |
5567 | |||
5568 | <trans-unit id="7743343997362363486"> | 5935 | <trans-unit id="7743343997362363486"> |
5569 | <source>No videos in this playlist.</source> | 5936 | <source>No videos in this playlist.</source> |
5570 | <target>Geen video's in deze afspeellijst.</target> | 5937 | <target>Geen video's in deze afspeellijst.</target> |
@@ -5589,20 +5956,26 @@ color: red; | |||
5589 | <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> | 5956 | <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> |
5590 | <target state="translated">Als je help nodig hebt bij het gebruik van PeerTube, dan kan je de <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>documentatie <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> bekijken. </target> | 5957 | <target state="translated">Als je help nodig hebt bij het gebruik van PeerTube, dan kan je de <x id="START_LINK" ctype="x-a" equiv-text="<a>"/>documentatie <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> bekijken. </target> |
5591 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">14</context></context-group> | 5958 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">14</context></context-group> |
5592 | </trans-unit><trans-unit id="8844610145426272276" datatype="html"> | 5959 | </trans-unit> |
5593 | <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> | 5960 | <trans-unit id="8844610145426272276" datatype="html"> |
5961 | <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> | ||
5962 | <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> | ||
5594 | <context-group purpose="location"> | 5963 | <context-group purpose="location"> |
5595 | <context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context> | 5964 | <context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context> |
5596 | <context context-type="linenumber">18,19</context> | 5965 | <context context-type="linenumber">18,19</context> |
5597 | </context-group> | 5966 | </context-group> |
5598 | </trans-unit><trans-unit id="3030338154442300172" datatype="html"> | 5967 | </trans-unit> |
5599 | <source> Created <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {1 playlist} other {{{ pagination.totalItems }} playlists}}"/> </source><target state="new"> Created <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {1 playlist} other {{{ pagination.totalItems }} playlists}}"/> </target> | 5968 | <trans-unit id="3030338154442300172" datatype="html"> |
5969 | <source>Created <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {1 playlist} other {{{ pagination.totalItems }} playlists}}"/> </source> | ||
5970 | <target state="new"> Created <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {1 playlist} other {{{ pagination.totalItems }} playlists}}"/> </target> | ||
5600 | <context-group purpose="location"> | 5971 | <context-group purpose="location"> |
5601 | <context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context> | 5972 | <context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context> |
5602 | <context context-type="linenumber">3,4</context> | 5973 | <context context-type="linenumber">3,4</context> |
5603 | </context-group> | 5974 | </context-group> |
5604 | </trans-unit><trans-unit id="3505845886770923767" datatype="html"> | 5975 | </trans-unit> |
5605 | <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> | 5976 | <trans-unit id="3505845886770923767" datatype="html"> |
5977 | <source>{VAR_PLURAL, plural, =1 {1 playlist} other {<x id="INTERPOLATION"/> playlists}}</source> | ||
5978 | <target state="new">{VAR_PLURAL, plural, =1 {1 playlist} other {<x id="INTERPOLATION"/> playlists}}</target> | ||
5606 | <context-group purpose="location"> | 5979 | <context-group purpose="location"> |
5607 | <context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context> | 5980 | <context context-type="sourcefile">src/app/+video-channels/video-channel-playlists/video-channel-playlists.component.html</context> |
5608 | <context context-type="linenumber">3</context> | 5981 | <context context-type="linenumber">3</context> |
@@ -5629,20 +6002,21 @@ Verifieer e-mailbevestiging van account</target> | |||
5629 | <trans-unit id="9128669621822125729" datatype="html"> | 6002 | <trans-unit id="9128669621822125729" datatype="html"> |
5630 | <source>Video channel videos</source> | 6003 | <source>Video channel videos</source> |
5631 | <target state="translated">Video's in dit videokanaal</target> | 6004 | <target state="translated">Video's in dit videokanaal</target> |
5632 | 6005 | <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> | |
5633 | <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> | 6006 | </trans-unit> |
5634 | <trans-unit id="3193822049276963401" datatype="html"> | 6007 | <trans-unit id="3193822049276963401" datatype="html"> |
5635 | <source>Video channel playlists</source> | 6008 | <source>Video channel playlists</source> |
5636 | <target state="translated">Afspeellijsten in dit videokanaal</target> | 6009 | <target state="translated">Afspeellijsten in dit videokanaal</target> |
5637 | 6010 | <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> | |
5638 | <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"> | 6011 | </trans-unit> |
5639 | <source> Manage channel </source><target state="new"> Manage channel </target> | 6012 | <trans-unit id="1949999959792821767" datatype="html"> |
6013 | <source>Manage channel</source> | ||
6014 | <target state="new"> Manage channel </target> | ||
5640 | <context-group purpose="location"> | 6015 | <context-group purpose="location"> |
5641 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> | 6016 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context> |
5642 | <context context-type="linenumber">10,11</context> | 6017 | <context context-type="linenumber">10,11</context> |
5643 | </context-group> | 6018 | </context-group> |
5644 | </trans-unit> | 6019 | </trans-unit> |
5645 | |||
5646 | <trans-unit id="4302331889176439801"> | 6020 | <trans-unit id="4302331889176439801"> |
5647 | <source>Request email for account verification</source> | 6021 | <source>Request email for account verification</source> |
5648 | <target> | 6022 | <target> |
@@ -5662,106 +6036,135 @@ Vraag e-mail voor accountverificatie aan</target> | |||
5662 | <trans-unit id="248731258067914565" datatype="html"> | 6036 | <trans-unit id="248731258067914565" datatype="html"> |
5663 | <source>Verify account via email</source> | 6037 | <source>Verify account via email</source> |
5664 | <target state="translated">Verifieer account via e-mail</target> | 6038 | <target state="translated">Verifieer account via e-mail</target> |
5665 | 6039 | <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> | |
5666 | <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> | 6040 | </trans-unit> |
5667 | <trans-unit id="9197112111252826229" datatype="html"> | 6041 | <trans-unit id="9197112111252826229" datatype="html"> |
5668 | <source>Ask to send an email to verify you account</source> | 6042 | <source>Ask to send an email to verify you account</source> |
5669 | <target state="translated">Vraag om een e-mail te sturen om uw account te verifiëren</target> | 6043 | <target state="translated">Vraag om een e-mail te sturen om uw account te verifiëren</target> |
5670 | 6044 | <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> | |
5671 | <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> | 6045 | </trans-unit> |
5672 | <trans-unit id="2999492056553212422"> | 6046 | <trans-unit id="2999492056553212422"> |
5673 | <source>Banned</source> | 6047 | <source>Banned</source> |
5674 | <target>Verbannen</target> | 6048 | <target>Verbannen</target> |
5675 | 6049 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">21</context></context-group> | |
5676 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit> | 6050 | </trans-unit> |
5677 | <trans-unit id="4572885137800697555"> | 6051 | <trans-unit id="4572885137800697555"> |
5678 | <source>Instance muted</source> | 6052 | <source>Instance muted</source> |
5679 | <target>Exemplaar van PeerTube gedempt</target> | 6053 | <target>Exemplaar van PeerTube gedempt</target> |
5680 | 6054 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">23</context></context-group> | |
5681 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">23</context></context-group></trans-unit> | 6055 | </trans-unit> |
5682 | <trans-unit id="302022805144581075"> | 6056 | <trans-unit id="302022805144581075"> |
5683 | <source>Muted by your instance</source> | 6057 | <source>Muted by your instance</source> |
5684 | <target>Gedempt door jouw exemplaar van PeerTube</target> | 6058 | <target>Gedempt door jouw exemplaar van PeerTube</target> |
5685 | 6059 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">24</context></context-group> | |
5686 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">24</context></context-group></trans-unit> | 6060 | </trans-unit> |
5687 | <trans-unit id="6860866645734090311"> | 6061 | <trans-unit id="6860866645734090311"> |
5688 | <source>Instance muted by your instance</source> | 6062 | <source>Instance muted by your instance</source> |
5689 | <target>Exemplaar gedempt door jouw exemplaar van PeerTube</target> | 6063 | <target>Exemplaar gedempt door jouw exemplaar van PeerTube</target> |
5690 | 6064 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">25</context></context-group> | |
5691 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit><trans-unit id="8661266239199665830" datatype="html"> | 6065 | </trans-unit> |
5692 | <source>Copy account handle</source><target state="new">Copy account handle</target> | 6066 | <trans-unit id="8661266239199665830" datatype="html"> |
6067 | <source>Copy account handle</source> | ||
6068 | <target state="new">Copy account handle</target> | ||
5693 | <context-group purpose="location"> | 6069 | <context-group purpose="location"> |
5694 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> | 6070 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> |
5695 | <context context-type="linenumber">31</context> | 6071 | <context context-type="linenumber">31</context> |
5696 | </context-group> | 6072 | </context-group> |
5697 | </trans-unit><trans-unit id="403587185492002456" datatype="html"> | 6073 | </trans-unit> |
5698 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source><target state="new">{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</target> | 6074 | <trans-unit id="403587185492002456" datatype="html"> |
5699 | 6075 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> | |
5700 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">23</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">30</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">73</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"> | 6076 | <target state="new">{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</target> |
5701 | <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> | 6077 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">23</context></context-group> |
6078 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">38</context></context-group> | ||
6079 | <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">30</context></context-group> | ||
6080 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">73</context></context-group> | ||
6081 | <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> | ||
6082 | </trans-unit> | ||
6083 | <trans-unit id="3068011377000255023" datatype="html"> | ||
6084 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> | ||
6085 | <target state="new">{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</target> | ||
5702 | <context-group purpose="location"> | 6086 | <context-group purpose="location"> |
5703 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> | 6087 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> |
5704 | <context context-type="linenumber">41</context> | 6088 | <context context-type="linenumber">41</context> |
5705 | </context-group> | 6089 | </context-group> |
5706 | </trans-unit><trans-unit id="8856905278208146821" datatype="html"> | 6090 | </trans-unit> |
5707 | <source> <x id="ICU" equiv-text="{accountVideosCount, plural, =1 {1 videos} other {{{ accountVideosCount }} videos}}"/> </source><target state="new"> <x id="ICU" equiv-text="{accountVideosCount, plural, =1 {1 videos} other {{{ accountVideosCount }} videos}}"/> </target> | 6091 | <trans-unit id="8856905278208146821" datatype="html"> |
6092 | <source><x id="ICU" equiv-text="{accountVideosCount, plural, =1 {1 videos} other {{{ accountVideosCount }} videos}}"/> </source> | ||
6093 | <target state="new"> <x id="ICU" equiv-text="{accountVideosCount, plural, =1 {1 videos} other {{{ accountVideosCount }} videos}}"/> </target> | ||
5708 | <context-group purpose="location"> | 6094 | <context-group purpose="location"> |
5709 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> | 6095 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> |
5710 | <context context-type="linenumber">41,42</context> | 6096 | <context context-type="linenumber">41,42</context> |
5711 | </context-group> | 6097 | </context-group> |
5712 | </trans-unit><trans-unit id="3061133792040537550" datatype="html"> | 6098 | </trans-unit> |
5713 | <source>Show the complete description</source><target state="new">Show the complete description</target> | 6099 | <trans-unit id="3061133792040537550" datatype="html"> |
5714 | 6100 | <source>Show the complete description</source> | |
5715 | 6101 | <target state="new">Show the complete description</target> | |
5716 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">94</context></context-group></trans-unit><trans-unit id="9098920722959201547" datatype="html"> | 6102 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">55</context></context-group> |
5717 | <source> Show more... </source><target state="new"> Show more... </target> | 6103 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">94</context></context-group> |
5718 | 6104 | </trans-unit> | |
5719 | 6105 | <trans-unit id="9098920722959201547" datatype="html"> | |
5720 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">57</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="6808894347744915561" datatype="html"> | 6106 | <source>Show more...</source> |
5721 | <source> Manage account </source><target state="new"> Manage account </target> | 6107 | <target state="new"> Show more... </target> |
5722 | 6108 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">57</context></context-group> | |
5723 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit><trans-unit id="1311667768861466464" datatype="html"> | 6109 | <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> |
5724 | <source>Search account videos</source><target state="new">Search account videos</target> | 6110 | </trans-unit> |
5725 | 6111 | <trans-unit id="6808894347744915561" datatype="html"> | |
5726 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">80</context></context-group></trans-unit><trans-unit id="5512878593724620692" datatype="html"> | 6112 | <source>Manage account</source> |
5727 | <source>CHANNELS</source><target state="new">CHANNELS</target> | 6113 | <target state="new"> Manage account </target> |
5728 | 6114 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">62</context></context-group> | |
5729 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 6115 | </trans-unit> |
5730 | 6116 | <trans-unit id="1311667768861466464" datatype="html"> | |
6117 | <source>Search account videos</source> | ||
6118 | <target state="new">Search account videos</target> | ||
6119 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.html</context><context context-type="linenumber">80</context></context-group> | ||
6120 | </trans-unit> | ||
6121 | <trans-unit id="5512878593724620692" datatype="html"> | ||
6122 | <source>CHANNELS</source> | ||
6123 | <target state="new">CHANNELS</target> | ||
6124 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">81</context></context-group> | ||
6125 | </trans-unit> | ||
5731 | <trans-unit id="3666829335406793239"> | 6126 | <trans-unit id="3666829335406793239"> |
5732 | <source>This account does not have channels.</source> | 6127 | <source>This account does not have channels.</source> |
5733 | <target>Dit account heeft geen kanalen.</target> | 6128 | <target>Dit account heeft geen kanalen.</target> |
5734 | 6129 | <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> | |
5735 | <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> | 6130 | </trans-unit> |
5736 | <trans-unit id="403587185492002456" datatype="html"> | 6131 | <trans-unit id="403587185492002456" datatype="html"> |
5737 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> | 6132 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> |
5738 | <target state="translated">{VAR_PLURAL, plural, =1 {1 abonnee} other { <x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> abonnees} }</target> | 6133 | <target state="translated">{VAR_PLURAL, plural, =1 {1 abonnee} other { <x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> abonnees} }</target> |
5739 | 6134 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">23</context></context-group> | |
5740 | 6135 | <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">28</context></context-group> | |
5741 | 6136 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">73</context></context-group> | |
5742 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">23</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">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">73</context></context-group></trans-unit><trans-unit id="3068011377000255023" datatype="html"> | 6137 | </trans-unit> |
5743 | <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> | 6138 | <trans-unit id="3068011377000255023" datatype="html"> |
5744 | 6139 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> | |
5745 | <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></trans-unit><trans-unit id="8856905278208146821" datatype="html"> | 6140 | <target state="new">{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</target> |
5746 | <source> <x id="ICU" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 videos} other {{{ getTotalVideosOf(videoChannel) }} videos}}"/> </source><target state="new"> <x id="ICU" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 videos} other {{{ getTotalVideosOf(videoChannel) }} videos}}"/> </target> | 6141 | <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> |
5747 | 6142 | </trans-unit> | |
5748 | <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></trans-unit><trans-unit id="4071627711041975501" datatype="html"> | 6143 | <trans-unit id="8856905278208146821" datatype="html"> |
5749 | <source>Show this channel</source><target state="new">Show this channel</target> | 6144 | <source><x id="ICU" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 videos} other {{{ getTotalVideosOf(videoChannel) }} videos}}"/> </source> |
5750 | 6145 | <target state="new"> <x id="ICU" equiv-text="{getTotalVideosOf(videoChannel), plural, =1 {1 videos} other {{{ getTotalVideosOf(videoChannel) }} videos}}"/> </target> | |
5751 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 6146 | <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> |
6147 | </trans-unit> | ||
6148 | <trans-unit id="4071627711041975501" datatype="html"> | ||
6149 | <source>Show this channel</source> | ||
6150 | <target state="new">Show this channel</target> | ||
6151 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">35</context></context-group> | ||
6152 | </trans-unit> | ||
5752 | <trans-unit id="7766488542631150871" datatype="html"> | 6153 | <trans-unit id="7766488542631150871" datatype="html"> |
5753 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | 6154 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> |
5754 | <target state="translated">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { <x id="INTERPOLATION" equiv-text="{{ videoChannel.videosCount }}"/> video\'s} }</target> | 6155 | <target state="translated">{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { <x id="INTERPOLATION" equiv-text="{{ videoChannel.videosCount }}"/> video\'s} }</target> |
5755 | 6156 | <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">30</context></context-group> | |
5756 | <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">30</context></context-group></trans-unit> | 6157 | </trans-unit> |
5757 | <trans-unit id="7152797255397280410" datatype="html"> | 6158 | <trans-unit id="7152797255397280410" datatype="html"> |
5758 | <source>Do you really want to delete <x id="PH" equiv-text="videoChannel.displayName"/>? | 6159 | <source>Do you really want to delete <x id="PH" equiv-text="videoChannel.displayName"/>? |
5759 | 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 | 6160 | 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 |
5760 | channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</source> | 6161 | channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</source> |
5761 | <target state="translated">Wil je echt <x id="PH"/> verwijderen? Dat verwijdert <x id="PH_1"/> video's die in dit kanaal geüpload zijn. Je kan ook geen nieuw kanaal meer maken met dezelfde naam. (<x id="PH_2"/>)!</target> | 6162 | <target state="translated">Wil je echt <x id="PH"/> verwijderen? Dat verwijdert <x id="PH_1"/> video's die in dit kanaal geüpload zijn. Je kan ook geen nieuw kanaal meer maken met dezelfde naam. (<x id="PH_2"/>)!</target> |
5762 | 6163 | <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> | |
5763 | <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"> | 6164 | </trans-unit> |
5764 | <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> | 6165 | <trans-unit id="4433306639366959484" datatype="html"> |
6166 | <source>Please type the name of the video channel (<x id="PH" equiv-text="videoChannel.name"/>) to confirm</source> | ||
6167 | <target state="new">Please type the name of the video channel (<x id="PH" equiv-text="videoChannel.name"/>) to confirm</target> | ||
5765 | <context-group purpose="location"> | 6168 | <context-group purpose="location"> |
5766 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context> | 6169 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context> |
5767 | <context context-type="linenumber">48</context> | 6170 | <context context-type="linenumber">48</context> |
@@ -5782,32 +6185,26 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5782 | <trans-unit id="7828153032795614080"> | 6185 | <trans-unit id="7828153032795614080"> |
5783 | <source>See this video channel</source> | 6186 | <source>See this video channel</source> |
5784 | <target>Dit videokanaal bekijken</target> | 6187 | <target>Dit videokanaal bekijken</target> |
5785 | 6188 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">13</context></context-group> | |
5786 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">13</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">17</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> | 6189 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">17</context></context-group> |
6190 | <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> | ||
6191 | <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> | ||
6192 | </trans-unit> | ||
5787 | <trans-unit id="1545109431751219382" datatype="html"> | 6193 | <trans-unit id="1545109431751219382" datatype="html"> |
5788 | <source>This channel doesn't have any videos.</source> | 6194 | <source>This channel doesn't have any videos.</source> |
5789 | <target state="translated">Er zijn geen video's in dit kanaal.</target> | 6195 | <target state="translated">Er zijn geen video's in dit kanaal.</target> |
5790 | 6196 | <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> | |
5791 | <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><trans-unit id="2705478076887104088" datatype="html"> | 6197 | </trans-unit> |
5792 | <source>SHOW THIS CHANNEL ></source><target state="new">SHOW THIS CHANNEL ></target> | 6198 | <trans-unit id="2705478076887104088" datatype="html"> |
5793 | 6199 | <source>SHOW THIS CHANNEL ></source> | |
5794 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> | 6200 | <target state="new">SHOW THIS CHANNEL ></target> |
5795 | 6201 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">46</context></context-group> | |
5796 | 6202 | </trans-unit> | |
5797 | |||
5798 | <trans-unit id="4088311569349098646"> | 6203 | <trans-unit id="4088311569349098646"> |
5799 | <source>Stats</source> | 6204 | <source>Stats</source> |
5800 | <target>Statistieken</target> | 6205 | <target>Statistieken</target> |
5801 | 6206 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">139</context></context-group> | |
5802 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.html</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6207 | </trans-unit> |
5803 | |||
5804 | |||
5805 | |||
5806 | |||
5807 | |||
5808 | |||
5809 | |||
5810 | |||
5811 | <trans-unit id="4068658588793749132"> | 6208 | <trans-unit id="4068658588793749132"> |
5812 | <source>This channel does not have playlists.</source> | 6209 | <source>This channel does not have playlists.</source> |
5813 | <target>Dit kanaal heeft geen afspeellijsten.</target> | 6210 | <target>Dit kanaal heeft geen afspeellijsten.</target> |
@@ -5827,22 +6224,23 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5827 | <source>Follows</source> | 6224 | <source>Follows</source> |
5828 | <target>Volgers</target> | 6225 | <target>Volgers</target> |
5829 | <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> | 6226 | <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> |
5830 | </trans-unit><trans-unit id="400578776928464905" datatype="html"> | 6227 | </trans-unit> |
5831 | <source>Follower instances (<x id="INTERPOLATION" equiv-text="{{ followersPagination.totalItems }}"/>)</source><target state="new">Follower instances (<x id="INTERPOLATION" equiv-text="{{ followersPagination.totalItems }}"/>)</target> | 6228 | <trans-unit id="400578776928464905" datatype="html"> |
6229 | <source>Follower instances (<x id="INTERPOLATION" equiv-text="{{ followersPagination.totalItems }}"/>)</source> | ||
6230 | <target state="new">Follower instances (<x id="INTERPOLATION" equiv-text="{{ followersPagination.totalItems }}"/>)</target> | ||
5832 | <context-group purpose="location"> | 6231 | <context-group purpose="location"> |
5833 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> | 6232 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> |
5834 | <context context-type="linenumber">4</context> | 6233 | <context context-type="linenumber">4</context> |
5835 | </context-group> | 6234 | </context-group> |
5836 | </trans-unit> | 6235 | </trans-unit> |
5837 | <trans-unit id="2081837971167498893" datatype="html"> | 6236 | <trans-unit id="2081837971167498893" datatype="html"> |
5838 | <source>Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</source><target state="new">Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</target> | 6237 | <source>Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</source> |
6238 | <target state="new">Following instances (<x id="INTERPOLATION" equiv-text="{{ followingsPagination.totalItems }}"/>)</target> | ||
5839 | <context-group purpose="location"> | 6239 | <context-group purpose="location"> |
5840 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> | 6240 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> |
5841 | <context context-type="linenumber">16</context> | 6241 | <context context-type="linenumber">16</context> |
5842 | </context-group> | 6242 | </context-group> |
5843 | </trans-unit> | 6243 | </trans-unit> |
5844 | |||
5845 | |||
5846 | <trans-unit id="8203367621031610680"> | 6244 | <trans-unit id="8203367621031610680"> |
5847 | <source>Your name</source> | 6245 | <source>Your name</source> |
5848 | <target>Jouw naam</target> | 6246 | <target>Jouw naam</target> |
@@ -5867,8 +6265,10 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5867 | <source>About <x id="INTERPOLATION"/></source> | 6265 | <source>About <x id="INTERPOLATION"/></source> |
5868 | <target state="translated">Over <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/></target> | 6266 | <target state="translated">Over <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/></target> |
5869 | <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> | 6267 | <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> |
5870 | </trans-unit><trans-unit id="8525213662266893834" datatype="html"> | 6268 | </trans-unit> |
5871 | <source>Contact us</source><target state="new">Contact us</target> | 6269 | <trans-unit id="8525213662266893834" datatype="html"> |
6270 | <source>Contact us</source> | ||
6271 | <target state="new">Contact us</target> | ||
5872 | <context-group purpose="location"> | 6272 | <context-group purpose="location"> |
5873 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> | 6273 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> |
5874 | <context context-type="linenumber">7</context> | 6274 | <context context-type="linenumber">7</context> |
@@ -5878,7 +6278,6 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5878 | <context context-type="linenumber">3</context> | 6278 | <context context-type="linenumber">3</context> |
5879 | </context-group> | 6279 | </context-group> |
5880 | </trans-unit> | 6280 | </trans-unit> |
5881 | |||
5882 | <trans-unit id="19872047295276660" datatype="html"> | 6281 | <trans-unit id="19872047295276660" datatype="html"> |
5883 | <source>This instance is dedicated to sensitive/NSFW content.</source> | 6282 | <source>This instance is dedicated to sensitive/NSFW content.</source> |
5884 | <target state="translated">Dit exemplaar van PeerTube is gewijd aan gevoelige/niet voor een werkomgeving geschikte inhoud.</target> | 6283 | <target state="translated">Dit exemplaar van PeerTube is gewijd aan gevoelige/niet voor een werkomgeving geschikte inhoud.</target> |
@@ -5903,14 +6302,15 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
5903 | <source>How long we plan to maintain this instance</source> | 6302 | <source>How long we plan to maintain this instance</source> |
5904 | <target state="translated">Hoe lang we dit exemplaar van PeerTube plannen te onderhouden</target> | 6303 | <target state="translated">Hoe lang we dit exemplaar van PeerTube plannen te onderhouden</target> |
5905 | <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> | 6304 | <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> |
5906 | </trans-unit><trans-unit id="8765504394950427814" datatype="html"> | 6305 | </trans-unit> |
5907 | <source>How we will pay for keeping our instance running</source><target state="new">How we will pay for keeping our instance running</target> | 6306 | <trans-unit id="8765504394950427814" datatype="html"> |
6307 | <source>How we will pay for keeping our instance running</source> | ||
6308 | <target state="new">How we will pay for keeping our instance running</target> | ||
5908 | <context-group purpose="location"> | 6309 | <context-group purpose="location"> |
5909 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> | 6310 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> |
5910 | <context context-type="linenumber">86</context> | 6311 | <context context-type="linenumber">86</context> |
5911 | </context-group> | 6312 | </context-group> |
5912 | </trans-unit> | 6313 | </trans-unit> |
5913 | |||
5914 | <trans-unit id="7707185552909365717" datatype="html"> | 6314 | <trans-unit id="7707185552909365717" datatype="html"> |
5915 | <source>INFORMATION</source> | 6315 | <source>INFORMATION</source> |
5916 | <target state="translated">INFORMATIE</target> | 6316 | <target state="translated">INFORMATIE</target> |
@@ -6007,8 +6407,10 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6007 | <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> | 6407 | <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> |
6008 | <target state="translated">PeerTube gebruikt standaard het BitTorrent-protocol om bandbreedte te delen tussen gebruikers. Zo vermindert de druk op de server. Je hebt wel de keuze om but terug te schakelen naar normaal video aanbieden enkel vanaf de server. Het volgende is enkel van toepasinng als je de P2P-modus van PeerTube wil blijven gebruiken.</target> | 6408 | <target state="translated">PeerTube gebruikt standaard het BitTorrent-protocol om bandbreedte te delen tussen gebruikers. Zo vermindert de druk op de server. Je hebt wel de keuze om but terug te schakelen naar normaal video aanbieden enkel vanaf de server. Het volgende is enkel van toepasinng als je de P2P-modus van PeerTube wil blijven gebruiken.</target> |
6009 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">75</context></context-group> | 6409 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">75</context></context-group> |
6010 | </trans-unit><trans-unit id="6314880288843792309" datatype="html"> | 6410 | </trans-unit> |
6011 | <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><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> | 6411 | <trans-unit id="6314880288843792309" datatype="html"> |
6412 | <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> | ||
6413 | <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> | ||
6012 | <context-group purpose="location"> | 6414 | <context-group purpose="location"> |
6013 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> | 6415 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> |
6014 | <context context-type="linenumber">81,83</context> | 6416 | <context context-type="linenumber">81,83</context> |
@@ -6048,69 +6450,70 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6048 | <source>The IP address is a vague information: usually, it regularly changes and can represent many persons or entities</source> | 6450 | <source>The IP address is a vague information: usually, it regularly changes and can represent many persons or entities</source> |
6049 | <target state="translated">Het ip-adres is vage informatie: gewoonlijk verandert het regelmatig en kan het meerdere mensen of entiteiten vertegenwoordigen</target> | 6451 | <target state="translated">Het ip-adres is vage informatie: gewoonlijk verandert het regelmatig en kan het meerdere mensen of entiteiten vertegenwoordigen</target> |
6050 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">114</context></context-group> | 6452 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">114</context></context-group> |
6051 | </trans-unit><trans-unit id="1120376809358109718" datatype="html"> | 6453 | </trans-unit> |
6052 | <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><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> | 6454 | <trans-unit id="1120376809358109718" datatype="html"> |
6455 | <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> | ||
6456 | <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> | ||
6053 | <context-group purpose="location"> | 6457 | <context-group purpose="location"> |
6054 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> | 6458 | <context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context> |
6055 | <context context-type="linenumber">118,122</context> | 6459 | <context context-type="linenumber">118,122</context> |
6056 | </context-group> | 6460 | </context-group> |
6057 | </trans-unit> | 6461 | </trans-unit> |
6058 | |||
6059 | <trans-unit id="7812408733559506009" datatype="html"> | 6462 | <trans-unit id="7812408733559506009" datatype="html"> |
6060 | <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> | 6463 | <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> |
6061 | <target state="translated">Het nachtmerriescenario van iemand die zijn vrienden bespioneert is eerder onwaarschijnlijk. Er zijn veel efficiëntere manieren om dat soort informatie te verkrijgen.</target> | 6464 | <target state="translated">Het nachtmerriescenario van iemand die zijn vrienden bespioneert is eerder onwaarschijnlijk. Er zijn veel efficiëntere manieren om dat soort informatie te verkrijgen.</target> |
6062 | 6465 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">126</context></context-group> | |
6063 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 6466 | </trans-unit> |
6064 | <trans-unit id="8484650229450883706"> | 6467 | <trans-unit id="8484650229450883706"> |
6065 | <source>How does PeerTube compare with YouTube?</source> | 6468 | <source>How does PeerTube compare with YouTube?</source> |
6066 | <target>Hoe is PeerTube vergeleken met YouTube?</target> | 6469 | <target>Hoe is PeerTube vergeleken met YouTube?</target> |
6067 | 6470 | <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> | |
6068 | <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> | 6471 | </trans-unit> |
6069 | <trans-unit id="6213340208914097303" datatype="html"> | 6472 | <trans-unit id="6213340208914097303" datatype="html"> |
6070 | <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> | 6473 | <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> |
6071 | <target state="translated">De gevaren voor je privacy liggen anders bij YouTube dan bij PeerTube. YouTube verzamelt een grote hoeveelheid persoonlijke informatie over jou - niet enkel je ip-adres- , analyseert deze en volgt je. Daarenboven is YouTube eigendom van Google/Alphabet, een bedrijf dat je op vele websites volgt via AdSense of Google Analytics.</target> | 6474 | <target state="translated">De gevaren voor je privacy liggen anders bij YouTube dan bij PeerTube. YouTube verzamelt een grote hoeveelheid persoonlijke informatie over jou - niet enkel je ip-adres- , analyseert deze en volgt je. Daarenboven is YouTube eigendom van Google/Alphabet, een bedrijf dat je op vele websites volgt via AdSense of Google Analytics.</target> |
6072 | 6475 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">133</context></context-group> | |
6073 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">133</context></context-group></trans-unit> | 6476 | </trans-unit> |
6074 | <trans-unit id="2676074687792256808"> | 6477 | <trans-unit id="2676074687792256808"> |
6075 | <source>What can I do to limit the exposure of my IP address?</source> | 6478 | <source>What can I do to limit the exposure of my IP address?</source> |
6076 | <target>Wat kan ik doen om de blootstelling van mijn IP adress te verminderen?</target> | 6479 | <target>Wat kan ik doen om de blootstelling van mijn IP adress te verminderen?</target> |
6077 | 6480 | <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> | |
6078 | <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> | 6481 | </trans-unit> |
6079 | <trans-unit id="8804946818315976118" datatype="html"> | 6482 | <trans-unit id="8804946818315976118" datatype="html"> |
6080 | <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> | 6483 | <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> |
6081 | <target state="translated">Je ip-adres is publiek, dus telkens je een website bezoekt zien een aantal actoren (naast de bezochte website) je ip-adres in hun verbindingslogboeken: internetproviders/routers/trackers/CDN's enzovoort. PeerTube is er open in: we waarschuwen je dat je een VPN of de Tor-browser moet gebruiken als je je ip-adres wil afschermen. Het is zinloos te denken dat p2p uit PeerTube verwijderen je anonimiteit zal teruggeven.</target> | 6484 | <target state="translated">Je ip-adres is publiek, dus telkens je een website bezoekt zien een aantal actoren (naast de bezochte website) je ip-adres in hun verbindingslogboeken: internetproviders/routers/trackers/CDN's enzovoort. PeerTube is er open in: we waarschuwen je dat je een VPN of de Tor-browser moet gebruiken als je je ip-adres wil afschermen. Het is zinloos te denken dat p2p uit PeerTube verwijderen je anonimiteit zal teruggeven.</target> |
6082 | 6485 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">141</context></context-group> | |
6083 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">141</context></context-group></trans-unit> | 6486 | </trans-unit> |
6084 | <trans-unit id="401806741040118292"> | 6487 | <trans-unit id="401806741040118292"> |
6085 | <source>What will be done to mitigate this problem?</source> | 6488 | <source>What will be done to mitigate this problem?</source> |
6086 | <target>Wat zal worden gedaan om dit probleem te verminderen?</target> | 6489 | <target>Wat zal worden gedaan om dit probleem te verminderen?</target> |
6087 | 6490 | <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> | |
6088 | <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> | 6491 | </trans-unit> |
6089 | <trans-unit id="7404776804526394585" datatype="html"> | 6492 | <trans-unit id="7404776804526394585" datatype="html"> |
6090 | <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> | 6493 | <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> |
6091 | <target state="translated">PeerTube wil de best mogelijke tegenmaatregelen nemen. Dat geeft je meer keuze en maakt aanvallen minder waarschijnlijk. Dit hebben we tot nu toe gebouwd:</target> | 6494 | <target state="translated">PeerTube wil de best mogelijke tegenmaatregelen nemen. Dat geeft je meer keuze en maakt aanvallen minder waarschijnlijk. Dit hebben we tot nu toe gebouwd:</target> |
6092 | 6495 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">150</context></context-group> | |
6093 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">150</context></context-group></trans-unit> | 6496 | </trans-unit> |
6094 | <trans-unit id="8635362984201852982" datatype="html"> | 6497 | <trans-unit id="8635362984201852982" datatype="html"> |
6095 | <source>We set a limit to the number of peers sent by the tracker</source> | 6498 | <source>We set a limit to the number of peers sent by the tracker</source> |
6096 | <target state="translated">We stellen een limiet in op het aantal peers, veerstuurd door de tracker</target> | 6499 | <target state="translated">We stellen een limiet in op het aantal peers, veerstuurd door de tracker</target> |
6097 | 6500 | <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> | |
6098 | <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> | 6501 | </trans-unit> |
6099 | <trans-unit id="8903417899533541365" datatype="html"> | 6502 | <trans-unit id="8903417899533541365" datatype="html"> |
6100 | <source>We set a limit on the request frequency received by the tracker</source> | 6503 | <source>We set a limit on the request frequency received by the tracker</source> |
6101 | <target state="translated">We stellen een limiet in op de aanvraagfrequentie zoals ontvangen door de tracker</target> | 6504 | <target state="translated">We stellen een limiet in op de aanvraagfrequentie zoals ontvangen door de tracker</target> |
6102 | 6505 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">156</context></context-group> | |
6103 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 6506 | </trans-unit> |
6104 | <trans-unit id="2470460396724373169" datatype="html"> | 6507 | <trans-unit id="2470460396724373169" datatype="html"> |
6105 | <source>Allow instance admins to disable P2P from the administration interface</source> | 6508 | <source>Allow instance admins to disable P2P from the administration interface</source> |
6106 | <target state="translated">Beheerders van exemplaren van PeerTube toelaten P2P uit te schakelen uit de beheersinterface</target> | 6509 | <target state="translated">Beheerders van exemplaren van PeerTube toelaten P2P uit te schakelen uit de beheersinterface</target> |
6107 | 6510 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">157</context></context-group> | |
6108 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">157</context></context-group></trans-unit> | 6511 | </trans-unit> |
6109 | <trans-unit id="5991790391344625653" datatype="html"> | 6512 | <trans-unit id="5991790391344625653" datatype="html"> |
6110 | <source>Ultimately, remember you can always disable P2P by toggling it in the video player, or just by disabling WebRTC in your browser.</source> | 6513 | <source>Ultimately, remember you can always disable P2P by toggling it in the video player, or just by disabling WebRTC in your browser.</source> |
6111 | <target state="translated">Wees je ervan bewust dat je uiteindelijk steeds P2P kan uitschakelen in de videospeler of door WebRTC uit te schakelen in je browser.</target> | 6514 | <target state="translated">Wees je ervan bewust dat je uiteindelijk steeds P2P kan uitschakelen in de videospeler of door WebRTC uit te schakelen in je browser.</target> |
6112 | 6515 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">161</context></context-group> | |
6113 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-peertube/about-peertube.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 6516 | </trans-unit> |
6114 | <trans-unit id="3857357852909495917" datatype="html"> | 6517 | <trans-unit id="3857357852909495917" datatype="html"> |
6115 | <source>This instance does not have instances followers.</source> | 6518 | <source>This instance does not have instances followers.</source> |
6116 | <target state="translated">Geen enkel exemplaar van PeerTube volgt dit exemplaar.</target> | 6519 | <target state="translated">Geen enkel exemplaar van PeerTube volgt dit exemplaar.</target> |
@@ -6136,24 +6539,26 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6136 | <trans-unit id="4195286790385468087" datatype="html"> | 6539 | <trans-unit id="4195286790385468087" datatype="html"> |
6137 | <source>About this instance</source> | 6540 | <source>About this instance</source> |
6138 | <target state="translated">Over dit exemplaar van PeerTube</target> | 6541 | <target state="translated">Over dit exemplaar van PeerTube</target> |
6139 | 6542 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">24</context></context-group> | |
6140 | <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> | 6543 | </trans-unit> |
6141 | <trans-unit id="8773846522957677259" datatype="html"> | 6544 | <trans-unit id="8773846522957677259" datatype="html"> |
6142 | <source>About PeerTube</source> | 6545 | <source>About PeerTube</source> |
6143 | <target state="translated">Over PeerTube</target> | 6546 | <target state="translated">Over PeerTube</target> |
6144 | 6547 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">49</context></context-group> | |
6145 | <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> | 6548 | </trans-unit> |
6146 | <trans-unit id="1812900507515561988" datatype="html"> | 6549 | <trans-unit id="1812900507515561988" datatype="html"> |
6147 | <source>About this instance's network</source> | 6550 | <source>About this instance's network</source> |
6148 | <target state="translated">Over het netwerk van dit exemplaar van PeerTube</target> | 6551 | <target state="translated">Over het netwerk van dit exemplaar van PeerTube</target> |
6149 | 6552 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-routing.module.ts</context><context context-type="linenumber">58</context></context-group> | |
6150 | <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> | 6553 | </trans-unit> |
6151 | <trans-unit id="892073694820881630" datatype="html"> | 6554 | <trans-unit id="892073694820881630" datatype="html"> |
6152 | <source>Link copied</source> | 6555 | <source>Link copied</source> |
6153 | <target state="translated">Verwijzing gekopieerd</target> | 6556 | <target state="translated">Verwijzing gekopieerd</target> |
6154 | 6557 | <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> | |
6155 | <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"> | 6558 | </trans-unit> |
6156 | <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> | 6559 | <trans-unit id="4807161697338135032" datatype="html"> |
6560 | <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> | ||
6561 | <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> | ||
6157 | <context-group purpose="location"> | 6562 | <context-group purpose="location"> |
6158 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> | 6563 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> |
6159 | <context context-type="linenumber">3</context> | 6564 | <context context-type="linenumber">3</context> |
@@ -6180,18 +6585,18 @@ Account aanmaken</target> | |||
6180 | <target> | 6585 | <target> |
6181 | Maak mijn account | 6586 | Maak mijn account |
6182 | </target> | 6587 | </target> |
6183 | 6588 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">39</context></context-group> | |
6184 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 6589 | </trans-unit> |
6185 | <trans-unit id="220345070199640496"> | 6590 | <trans-unit id="220345070199640496"> |
6186 | <source>PeerTube is creating your account...</source> | 6591 | <source>PeerTube is creating your account...</source> |
6187 | <target>PeerTube maakt uw account aan ...</target> | 6592 | <target>PeerTube maakt uw account aan ...</target> |
6188 | 6593 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">47</context></context-group> | |
6189 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> | 6594 | </trans-unit> |
6190 | <trans-unit id="397098723873502323"> | 6595 | <trans-unit id="397098723873502323"> |
6191 | <source>Done</source> | 6596 | <source>Done</source> |
6192 | <target>Klaar</target> | 6597 | <target>Klaar</target> |
6193 | 6598 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">43</context></context-group> | |
6194 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit> | 6599 | </trans-unit> |
6195 | <trans-unit id="6294302495409052693" datatype="html"> | 6600 | <trans-unit id="6294302495409052693" datatype="html"> |
6196 | <source>Who are we?</source> | 6601 | <source>Who are we?</source> |
6197 | <target state="translated">Wie zijn wij?</target> | 6602 | <target state="translated">Wie zijn wij?</target> |
@@ -6260,8 +6665,10 @@ Account aanmaken</target> | |||
6260 | <source>Channel name cannot be the same as your account name. You can click on the first step to update your account name.</source> | 6665 | <source>Channel name cannot be the same as your account name. You can click on the first step to update your account name.</source> |
6261 | <target state="translated">De kanaalnaam mag niet hetzelfde zijn als uw accountnaam. U kunt op de eerste stap klikken om uw accountnaam bij te werken.</target> | 6666 | <target state="translated">De kanaalnaam mag niet hetzelfde zijn als uw accountnaam. U kunt op de eerste stap klikken om uw accountnaam bij te werken.</target> |
6262 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">51</context></context-group> | 6667 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">51</context></context-group> |
6263 | </trans-unit><trans-unit id="7440807341905682986" datatype="html"> | 6668 | </trans-unit> |
6264 | <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> | 6669 | <trans-unit id="7440807341905682986" datatype="html"> |
6670 | <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> | ||
6671 | <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> | ||
6265 | <context-group purpose="location"> | 6672 | <context-group purpose="location"> |
6266 | <context context-type="sourcefile">src/app/+signup/+register/register-step-terms.component.html</context> | 6673 | <context context-type="sourcefile">src/app/+signup/+register/register-step-terms.component.html</context> |
6267 | <context context-type="linenumber">5,10</context> | 6674 | <context context-type="linenumber">5,10</context> |
@@ -6280,29 +6687,29 @@ Account aanmaken</target> | |||
6280 | <context context-type="linenumber">4,5</context> | 6687 | <context context-type="linenumber">4,5</context> |
6281 | </context-group> | 6688 | </context-group> |
6282 | </trans-unit> | 6689 | </trans-unit> |
6283 | |||
6284 | <trans-unit id="3301086086650990787" datatype="html"> | 6690 | <trans-unit id="3301086086650990787" datatype="html"> |
6285 | <source>Register</source> | 6691 | <source>Register</source> |
6286 | <target state="translated">Registreren</target> | 6692 | <target state="translated">Registreren</target> |
6287 | 6693 | <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> | |
6288 | <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> | 6694 | </trans-unit> |
6289 | <trans-unit id="6979021199788941693"> | 6695 | <trans-unit id="6979021199788941693"> |
6290 | <source>Your message has been sent.</source> | 6696 | <source>Your message has been sent.</source> |
6291 | <target>Jouw bericht is verstuurd.</target> | 6697 | <target>Jouw bericht is verstuurd.</target> |
6292 | 6698 | <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> | |
6293 | <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> | 6699 | </trans-unit> |
6294 | <trans-unit id="2072135752262464360"> | 6700 | <trans-unit id="2072135752262464360"> |
6295 | <source>You already sent this form recently</source> | 6701 | <source>You already sent this form recently</source> |
6296 | <target>U hebt dit formulier onlangs al verzonden</target> | 6702 | <target>U hebt dit formulier onlangs al verzonden</target> |
6297 | 6703 | <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> | |
6298 | <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> | 6704 | </trans-unit> |
6299 | |||
6300 | <trans-unit id="819067926858619041" datatype="html"> | 6705 | <trans-unit id="819067926858619041" datatype="html"> |
6301 | <source>Account videos</source> | 6706 | <source>Account videos</source> |
6302 | <target state="translated">Video's account</target> | 6707 | <target state="translated">Video's account</target> |
6303 | 6708 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">35</context></context-group> | |
6304 | <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><trans-unit id="4605517634011438234" datatype="html"> | 6709 | </trans-unit> |
6305 | <source>ACCOUNT</source><target state="new">ACCOUNT</target> | 6710 | <trans-unit id="4605517634011438234" datatype="html"> |
6711 | <source>ACCOUNT</source> | ||
6712 | <target state="new">ACCOUNT</target> | ||
6306 | <context-group purpose="location"> | 6713 | <context-group purpose="location"> |
6307 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> | 6714 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> |
6308 | <context context-type="linenumber">8</context> | 6715 | <context context-type="linenumber">8</context> |
@@ -6311,139 +6718,153 @@ Account aanmaken</target> | |||
6311 | <trans-unit id="6823616469362610020" datatype="html"> | 6718 | <trans-unit id="6823616469362610020" datatype="html"> |
6312 | <source>Account video channels</source> | 6719 | <source>Account video channels</source> |
6313 | <target state="translated">Videokanalen account</target> | 6720 | <target state="translated">Videokanalen account</target> |
6314 | 6721 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts-routing.module.ts</context><context context-type="linenumber">26</context></context-group> | |
6315 | <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> | 6722 | </trans-unit> |
6316 | |||
6317 | |||
6318 | <trans-unit id="807777065817324789" datatype="html"> | 6723 | <trans-unit id="807777065817324789" datatype="html"> |
6319 | <source>Display all videos (private, unlisted or not yet published)</source> | 6724 | <source>Display all videos (private, unlisted or not yet published)</source> |
6320 | <target state="translated">Alle video's weergeven (privé, onvermeld of nog niet gepublicerd)</target> | 6725 | <target state="translated">Alle video's weergeven (privé, onvermeld of nog niet gepublicerd)</target> |
6321 | 6726 | <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> | |
6322 | 6727 | </trans-unit> | |
6323 | 6728 | <trans-unit id="784681343382270982" datatype="html"> | |
6324 | 6729 | <source>Remove this filter</source> | |
6325 | 6730 | <target state="new">Remove this filter</target> | |
6326 | 6731 | <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> | |
6327 | 6732 | </trans-unit> | |
6328 | <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"> | 6733 | <trans-unit id="5254305728396198887" datatype="html"> |
6329 | <source>Remove this filter</source><target state="new">Remove this filter</target> | 6734 | <source>Sensitive content</source> |
6330 | 6735 | <target state="new">Sensitive content</target> | |
6331 | <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"> | 6736 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">115</context></context-group> |
6332 | <source>Sensitive content</source><target state="new">Sensitive content</target> | 6737 | </trans-unit> |
6333 | 6738 | <trans-unit id="5590086849807274701" datatype="html"> | |
6334 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">115</context></context-group></trans-unit><trans-unit id="5590086849807274701" datatype="html"> | 6739 | <source>Scope</source> |
6335 | <source>Scope</source><target state="new">Scope</target> | 6740 | <target state="new">Scope</target> |
6336 | 6741 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">122</context></context-group> | |
6337 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">122</context></context-group></trans-unit><trans-unit id="5019568087038659501" datatype="html"> | 6742 | </trans-unit> |
6338 | <source>Federated</source><target state="new">Federated</target> | 6743 | <trans-unit id="5019568087038659501" datatype="html"> |
6339 | 6744 | <source>Federated</source> | |
6340 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">124</context></context-group></trans-unit><trans-unit id="1949800099101277248" datatype="html"> | 6745 | <target state="new">Federated</target> |
6341 | <source>Languages</source><target state="new">Languages</target> | 6746 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">124</context></context-group> |
6342 | 6747 | </trans-unit> | |
6343 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">132</context></context-group></trans-unit><trans-unit id="1902100407096396858" datatype="html"> | 6748 | <trans-unit id="1949800099101277248" datatype="html"> |
6344 | <source>Categories</source><target state="new">Categories</target> | 6749 | <source>Languages</source> |
6345 | 6750 | <target state="new">Languages</target> | |
6346 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">141</context></context-group></trans-unit><trans-unit id="3599150758014724057" datatype="html"> | 6751 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">132</context></context-group> |
6347 | <source>All videos</source><target state="new">All videos</target> | 6752 | </trans-unit> |
6348 | 6753 | <trans-unit id="1902100407096396858" datatype="html"> | |
6349 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">150</context></context-group></trans-unit><trans-unit id="8466337030143068285" datatype="html"> | 6754 | <source>Categories</source> |
6350 | <source>Blurred</source><target state="new">Blurred</target> | 6755 | <target state="new">Categories</target> |
6351 | 6756 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">141</context></context-group> | |
6352 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">225</context></context-group></trans-unit><trans-unit id="7054829409324166420" datatype="html"> | 6757 | </trans-unit> |
6353 | <source>hidden</source><target state="new">hidden</target> | 6758 | <trans-unit id="3599150758014724057" datatype="html"> |
6354 | 6759 | <source>All videos</source> | |
6355 | <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="5766954855630346873" datatype="html"> | 6760 | <target state="new">All videos</target> |
6356 | <source>blurred</source><target state="new">blurred</target> | 6761 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">150</context></context-group> |
6357 | 6762 | </trans-unit> | |
6358 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">232</context></context-group></trans-unit><trans-unit id="1833483831276078393" datatype="html"> | 6763 | <trans-unit id="8466337030143068285" datatype="html"> |
6359 | <source>displayed</source><target state="new">displayed</target> | 6764 | <source>Blurred</source> |
6360 | 6765 | <target state="new">Blurred</target> | |
6361 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">234</context></context-group></trans-unit> | 6766 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">225</context></context-group> |
6767 | </trans-unit> | ||
6768 | <trans-unit id="7054829409324166420" datatype="html"> | ||
6769 | <source>hidden</source> | ||
6770 | <target state="new">hidden</target> | ||
6771 | <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> | ||
6772 | </trans-unit> | ||
6773 | <trans-unit id="5766954855630346873" datatype="html"> | ||
6774 | <source>blurred</source> | ||
6775 | <target state="new">blurred</target> | ||
6776 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">232</context></context-group> | ||
6777 | </trans-unit> | ||
6778 | <trans-unit id="1833483831276078393" datatype="html"> | ||
6779 | <source>displayed</source> | ||
6780 | <target state="new">displayed</target> | ||
6781 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">234</context></context-group> | ||
6782 | </trans-unit> | ||
6362 | <trans-unit id="4856575356061361269" datatype="html"> | 6783 | <trans-unit id="4856575356061361269" datatype="html"> |
6363 | <source><x id="PH"/> direct account followers </source> | 6784 | <source><x id="PH"/> direct account followers </source> |
6364 | <target state="translated"><x id="PH"/> directe accountvolgers </target> | 6785 | <target state="translated"><x id="PH"/> directe accountvolgers </target> |
6365 | 6786 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">152</context></context-group> | |
6366 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">152</context></context-group></trans-unit> | 6787 | </trans-unit> |
6367 | <trans-unit id="6250999352462648289" datatype="html"> | 6788 | <trans-unit id="6250999352462648289" datatype="html"> |
6368 | <source>Report this account</source> | 6789 | <source>Report this account</source> |
6369 | <target state="translated">Deze account melden</target> | 6790 | <target state="translated">Deze account melden</target> |
6370 | 6791 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">196</context></context-group> | |
6371 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> | 6792 | </trans-unit> |
6372 | |||
6373 | <trans-unit id="1504521795586863905" datatype="html"> | 6793 | <trans-unit id="1504521795586863905" datatype="html"> |
6374 | <source>VIDEOS</source> | 6794 | <source>VIDEOS</source> |
6375 | <target state="translated">VIDEO'S</target> | 6795 | <target state="translated">VIDEO'S</target> |
6376 | 6796 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">83</context></context-group> | |
6377 | 6797 | <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> | |
6378 | <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/+video-channels/video-channels.component.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 6798 | </trans-unit> |
6379 | |||
6380 | <trans-unit id="25349740244798533"> | 6799 | <trans-unit id="25349740244798533"> |
6381 | <source>Username copied</source> | 6800 | <source>Username copied</source> |
6382 | <target>Gebruikersnaam gekopieerd</target> | 6801 | <target>Gebruikersnaam gekopieerd</target> |
6383 | 6802 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">120</context></context-group> | |
6384 | 6803 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">103</context></context-group> | |
6385 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">120</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit> | 6804 | </trans-unit> |
6386 | <trans-unit id="9221735175659318025" datatype="html"> | 6805 | <trans-unit id="9221735175659318025" datatype="html"> |
6387 | <source>1 subscriber</source> | 6806 | <source>1 subscriber</source> |
6388 | <target state="translated">1 abonnee</target> | 6807 | <target state="translated">1 abonnee</target> |
6389 | 6808 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">124</context></context-group> | |
6390 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 6809 | </trans-unit> |
6391 | <trans-unit id="4097331874769079975" datatype="html"> | 6810 | <trans-unit id="4097331874769079975" datatype="html"> |
6392 | <source><x id="PH"/> subscribers</source> | 6811 | <source><x id="PH"/> subscribers</source> |
6393 | <target state="translated"><x id="PH"/> abonnees</target> | 6812 | <target state="translated"><x id="PH"/> abonnees</target> |
6394 | 6813 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">126</context></context-group> | |
6395 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 6814 | </trans-unit> |
6396 | |||
6397 | |||
6398 | <trans-unit id="1035838766454786107" datatype="html"> | 6815 | <trans-unit id="1035838766454786107" datatype="html"> |
6399 | <source>Audio-only</source> | 6816 | <source>Audio-only</source> |
6400 | <target state="translated">Enkel audio</target> | 6817 | <target state="translated">Enkel audio</target> |
6401 | 6818 | <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> | |
6402 | <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></trans-unit> | 6819 | </trans-unit> |
6403 | <trans-unit id="8011855989482474311" datatype="html"> | 6820 | <trans-unit id="8011855989482474311" datatype="html"> |
6404 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> | 6821 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> |
6405 | <target state="translated">Een <code>.mp4</code> die de originele audiotrack behoudt, zonder video</target> | 6822 | <target state="translated">Een <code>.mp4</code> die de originele audiotrack behoudt, zonder video</target> |
6406 | 6823 | <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> | |
6407 | <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></trans-unit> | 6824 | </trans-unit> |
6408 | <trans-unit id="3768852440495368591"> | 6825 | <trans-unit id="3768852440495368591"> |
6409 | <source>240p</source> | 6826 | <source>240p</source> |
6410 | <target>240p</target> | 6827 | <target>240p</target> |
6411 | 6828 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">22</context></context-group> | |
6412 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">22</context></context-group></trans-unit> | 6829 | </trans-unit> |
6413 | <trans-unit id="6824490596490222280"> | 6830 | <trans-unit id="6824490596490222280"> |
6414 | <source>360p</source> | 6831 | <source>360p</source> |
6415 | <target>360p</target> | 6832 | <target>360p</target> |
6416 | 6833 | <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> | |
6417 | <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> | 6834 | </trans-unit> |
6418 | <trans-unit id="4039682741786530029"> | 6835 | <trans-unit id="4039682741786530029"> |
6419 | <source>480p</source> | 6836 | <source>480p</source> |
6420 | <target>480p</target> | 6837 | <target>480p</target> |
6421 | 6838 | <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> | |
6422 | <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> | 6839 | </trans-unit> |
6423 | <trans-unit id="5165245100010036661"> | 6840 | <trans-unit id="5165245100010036661"> |
6424 | <source>720p</source> | 6841 | <source>720p</source> |
6425 | <target>720p</target> | 6842 | <target>720p</target> |
6426 | 6843 | <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> | |
6427 | <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> | 6844 | </trans-unit> |
6428 | <trans-unit id="7709767791012306261"> | 6845 | <trans-unit id="7709767791012306261"> |
6429 | <source>1080p</source> | 6846 | <source>1080p</source> |
6430 | <target>1080p</target> | 6847 | <target>1080p</target> |
6431 | 6848 | <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> | |
6432 | <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><trans-unit id="3671005503070777897" datatype="html"> | 6849 | </trans-unit> |
6433 | <source>1440p</source><target state="new">1440p</target> | 6850 | <trans-unit id="3671005503070777897" datatype="html"> |
6434 | 6851 | <source>1440p</source> | |
6435 | <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> | 6852 | <target state="new">1440p</target> |
6853 | <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> | ||
6854 | </trans-unit> | ||
6436 | <trans-unit id="597839553814574067"> | 6855 | <trans-unit id="597839553814574067"> |
6437 | <source>2160p</source> | 6856 | <source>2160p</source> |
6438 | <target>2160p</target> | 6857 | <target>2160p</target> |
6439 | 6858 | <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> | |
6440 | <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> | 6859 | </trans-unit> |
6441 | <trans-unit id="3957742085471141221"> | 6860 | <trans-unit id="3957742085471141221"> |
6442 | <source>Auto (via ffmpeg)</source> | 6861 | <source>Auto (via ffmpeg)</source> |
6443 | <target>Automatisch (via ffmpeg)</target> | 6862 | <target>Automatisch (via ffmpeg)</target> |
6444 | 6863 | <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> | |
6445 | <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></trans-unit><trans-unit id="3642770981085338761" datatype="html"> | 6864 | </trans-unit> |
6446 | <source>Followers of your instance</source><target state="new">Followers of your instance</target> | 6865 | <trans-unit id="3642770981085338761" datatype="html"> |
6866 | <source>Followers of your instance</source> | ||
6867 | <target state="new">Followers of your instance</target> | ||
6447 | <context-group purpose="location"> | 6868 | <context-group purpose="location"> |
6448 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> | 6869 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> |
6449 | <context context-type="linenumber">3</context> | 6870 | <context context-type="linenumber">3</context> |
@@ -6452,51 +6873,61 @@ Account aanmaken</target> | |||
6452 | <trans-unit id="931255636742351800" datatype="html"> | 6873 | <trans-unit id="931255636742351800" datatype="html"> |
6453 | <source>No limit</source> | 6874 | <source>No limit</source> |
6454 | <target state="translated">Onbeperkt</target> | 6875 | <target state="translated">Onbeperkt</target> |
6455 | 6876 | <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> | |
6456 | <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> | 6877 | </trans-unit> |
6457 | <trans-unit id="5250062810079582285" datatype="html"> | 6878 | <trans-unit id="5250062810079582285" datatype="html"> |
6458 | <source>1 hour</source> | 6879 | <source>1 hour</source> |
6459 | <target state="translated">1 uur</target> | 6880 | <target state="translated">1 uur</target> |
6460 | 6881 | <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> | |
6461 | <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> | 6882 | </trans-unit> |
6462 | <trans-unit id="8662356672298904015" datatype="html"> | 6883 | <trans-unit id="8662356672298904015" datatype="html"> |
6463 | <source>3 hours</source> | 6884 | <source>3 hours</source> |
6464 | <target state="translated">3 uur</target> | 6885 | <target state="translated">3 uur</target> |
6465 | 6886 | <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> | |
6466 | <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> | 6887 | </trans-unit> |
6467 | <trans-unit id="1794624538833178491" datatype="html"> | 6888 | <trans-unit id="1794624538833178491" datatype="html"> |
6468 | <source>5 hours</source> | 6889 | <source>5 hours</source> |
6469 | <target state="translated">5 uur</target> | 6890 | <target state="translated">5 uur</target> |
6470 | 6891 | <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> | |
6471 | <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> | 6892 | </trans-unit> |
6472 | <trans-unit id="4941148355486671862" datatype="html"> | 6893 | <trans-unit id="4941148355486671862" datatype="html"> |
6473 | <source>10 hours</source> | 6894 | <source>10 hours</source> |
6474 | <target state="translated">10 uur</target> | 6895 | <target state="translated">10 uur</target> |
6475 | 6896 | <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> | |
6476 | <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><trans-unit id="6659155428791414865" datatype="html"> | 6897 | </trans-unit> |
6477 | <source>x264, targeting maximum device compatibility</source><target state="new">x264, targeting maximum device compatibility</target> | 6898 | <trans-unit id="6659155428791414865" datatype="html"> |
6478 | 6899 | <source>x264, targeting maximum device compatibility</source> | |
6479 | 6900 | <target state="new">x264, targeting maximum device compatibility</target> | |
6480 | <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><trans-unit id="1473738049081128420" datatype="html"> | 6901 | <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> |
6481 | <source> Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. </source><target state="new"> Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. </target> | 6902 | <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> |
6903 | </trans-unit> | ||
6904 | <trans-unit id="1473738049081128420" datatype="html"> | ||
6905 | <source>Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically.</source> | ||
6906 | <target state="new"> Estimating a server's capacity to transcode and stream videos isn't easy and we can't tune PeerTube automatically. </target> | ||
6482 | <context-group purpose="location"> | 6907 | <context-group purpose="location"> |
6483 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 6908 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
6484 | <context context-type="linenumber">9,10</context> | 6909 | <context context-type="linenumber">9,10</context> |
6485 | </context-group> | 6910 | </context-group> |
6486 | </trans-unit><trans-unit id="9122600735711449044" datatype="html"> | 6911 | </trans-unit> |
6487 | <source> However, you may want to read our guidelines before tweaking the following values. </source><target state="new"> However, you may want to read our guidelines before tweaking the following values. </target> | 6912 | <trans-unit id="9122600735711449044" datatype="html"> |
6913 | <source>However, you may want to read our guidelines before tweaking the following values.</source> | ||
6914 | <target state="new"> However, you may want to read our guidelines before tweaking the following values. </target> | ||
6488 | <context-group purpose="location"> | 6915 | <context-group purpose="location"> |
6489 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 6916 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
6490 | <context context-type="linenumber">12,13</context> | 6917 | <context context-type="linenumber">12,13</context> |
6491 | </context-group> | 6918 | </context-group> |
6492 | </trans-unit><trans-unit id="9035429011363248302" datatype="html"> | 6919 | </trans-unit> |
6493 | <source> Read guidelines </source><target state="new"> Read guidelines </target> | 6920 | <trans-unit id="9035429011363248302" datatype="html"> |
6921 | <source>Read guidelines</source> | ||
6922 | <target state="new"> Read guidelines </target> | ||
6494 | <context-group purpose="location"> | 6923 | <context-group purpose="location"> |
6495 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 6924 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
6496 | <context context-type="linenumber">17,18</context> | 6925 | <context context-type="linenumber">17,18</context> |
6497 | </context-group> | 6926 | </context-group> |
6498 | </trans-unit><trans-unit id="2384409178337534505" datatype="html"> | 6927 | </trans-unit> |
6499 | <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><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> | 6928 | <trans-unit id="2384409178337534505" datatype="html"> |
6929 | <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> | ||
6930 | <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> | ||
6500 | <context-group purpose="location"> | 6931 | <context-group purpose="location"> |
6501 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> | 6932 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-vod-transcoding.component.html</context> |
6502 | <context context-type="linenumber">28,30</context> | 6933 | <context context-type="linenumber">28,30</context> |
@@ -6505,14 +6936,16 @@ Account aanmaken</target> | |||
6505 | <trans-unit id="1618463615802675111" datatype="html"> | 6936 | <trans-unit id="1618463615802675111" datatype="html"> |
6506 | <source>threads</source> | 6937 | <source>threads</source> |
6507 | <target state="new">threads</target> | 6938 | <target state="new">threads</target> |
6508 | 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">86</context></context-group> | |
6509 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">86</context></context-group></trans-unit> | 6940 | </trans-unit> |
6510 | <trans-unit id="593234948551881507" datatype="html"> | 6941 | <trans-unit id="593234948551881507" datatype="html"> |
6511 | <source>thread</source> | 6942 | <source>thread</source> |
6512 | <target state="new">thread</target> | 6943 | <target state="new">thread</target> |
6513 | 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">87</context></context-group> | |
6514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">87</context></context-group></trans-unit><trans-unit id="1305357231288135414" datatype="html"> | 6945 | </trans-unit> |
6515 | <source>Homepage</source><target state="new">Homepage</target> | 6946 | <trans-unit id="1305357231288135414" datatype="html"> |
6947 | <source>Homepage</source> | ||
6948 | <target state="new">Homepage</target> | ||
6516 | <context-group purpose="location"> | 6949 | <context-group purpose="location"> |
6517 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 6950 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
6518 | <context context-type="linenumber">7</context> | 6951 | <context context-type="linenumber">7</context> |
@@ -6521,14 +6954,18 @@ Account aanmaken</target> | |||
6521 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-homepage.component.html</context> | 6954 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-homepage.component.html</context> |
6522 | <context context-type="linenumber">13</context> | 6955 | <context context-type="linenumber">13</context> |
6523 | </context-group> | 6956 | </context-group> |
6524 | </trans-unit><trans-unit id="5037437391296624618" datatype="html"> | 6957 | </trans-unit> |
6525 | <source>Information</source><target state="new">Information</target> | 6958 | <trans-unit id="5037437391296624618" datatype="html"> |
6959 | <source>Information</source> | ||
6960 | <target state="new">Information</target> | ||
6526 | <context-group purpose="location"> | 6961 | <context-group purpose="location"> |
6527 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 6962 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
6528 | <context context-type="linenumber">15</context> | 6963 | <context context-type="linenumber">15</context> |
6529 | </context-group> | 6964 | </context-group> |
6530 | </trans-unit><trans-unit id="8643289769990675407" datatype="html"> | 6965 | </trans-unit> |
6531 | <source>Basic</source><target state="new">Basic</target> | 6966 | <trans-unit id="8643289769990675407" datatype="html"> |
6967 | <source>Basic</source> | ||
6968 | <target state="new">Basic</target> | ||
6532 | <context-group purpose="location"> | 6969 | <context-group purpose="location"> |
6533 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 6970 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
6534 | <context context-type="linenumber">24</context> | 6971 | <context context-type="linenumber">24</context> |
@@ -6537,9 +6974,11 @@ Account aanmaken</target> | |||
6537 | <trans-unit id="2060042292048624940"> | 6974 | <trans-unit id="2060042292048624940"> |
6538 | <source>Configuration updated.</source> | 6975 | <source>Configuration updated.</source> |
6539 | <target>Configuratie bijgewerkt.</target> | 6976 | <target>Configuratie bijgewerkt.</target> |
6540 | 6977 | <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">286</context></context-group> | |
6541 | <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">286</context></context-group></trans-unit><trans-unit id="6920964195632624609" datatype="html"> | 6978 | </trans-unit> |
6542 | <source>INSTANCE HOMEPAGE</source><target state="new">INSTANCE HOMEPAGE</target> | 6979 | <trans-unit id="6920964195632624609" datatype="html"> |
6980 | <source>INSTANCE HOMEPAGE</source> | ||
6981 | <target state="new">INSTANCE HOMEPAGE</target> | ||
6543 | <context-group purpose="location"> | 6982 | <context-group purpose="location"> |
6544 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-homepage.component.html</context> | 6983 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-homepage.component.html</context> |
6545 | <context context-type="linenumber">7</context> | 6984 | <context context-type="linenumber">7</context> |
@@ -6548,8 +6987,8 @@ Account aanmaken</target> | |||
6548 | <trans-unit id="3203902538239082422" datatype="html"> | 6987 | <trans-unit id="3203902538239082422" datatype="html"> |
6549 | <source>You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</source> | 6988 | <source>You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.</source> |
6550 | <target state="translated">Inschrijven ingeschakeld: we hebben in het onderdeel "Video's" hieronder automatisch het selectievakje "Nieuwe video's automatisch blokkeren" aangevinkt.</target> | 6989 | <target state="translated">Inschrijven ingeschakeld: we hebben in het onderdeel "Video's" hieronder automatisch het selectievakje "Nieuwe video's automatisch blokkeren" aangevinkt.</target> |
6551 | 6990 | <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">101</context></context-group> | |
6552 | <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">101</context></context-group></trans-unit> | 6991 | </trans-unit> |
6553 | <trans-unit id="6284468333579755406" datatype="html"> | 6992 | <trans-unit id="6284468333579755406" datatype="html"> |
6554 | <source>Edit custom configuration</source> | 6993 | <source>Edit custom configuration</source> |
6555 | <target state="translated">Aangepaste configuratie bewerken</target> | 6994 | <target state="translated">Aangepaste configuratie bewerken</target> |
@@ -6578,62 +7017,69 @@ Account aanmaken</target> | |||
6578 | <trans-unit id="2127446333083057097" datatype="html"> | 7017 | <trans-unit id="2127446333083057097" datatype="html"> |
6579 | <source>Domain is required.</source> | 7018 | <source>Domain is required.</source> |
6580 | <target state="translated">Domein is vereist.</target> | 7019 | <target state="translated">Domein is vereist.</target> |
6581 | 7020 | <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> | |
6582 | <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"> | 7021 | <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> |
6583 | <source>Hosts entered are invalid.</source><target state="new">Hosts entered are invalid.</target> | 7022 | </trans-unit> |
7023 | <trans-unit id="7951488350851416577" datatype="html"> | ||
7024 | <source>Hosts entered are invalid.</source> | ||
7025 | <target state="new">Hosts entered are invalid.</target> | ||
6584 | <context-group purpose="location"> | 7026 | <context-group purpose="location"> |
6585 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 7027 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
6586 | <context context-type="linenumber">93</context> | 7028 | <context context-type="linenumber">93</context> |
6587 | </context-group> | 7029 | </context-group> |
6588 | </trans-unit><trans-unit id="1469559036084108672" datatype="html"> | 7030 | </trans-unit> |
6589 | <source>Hosts entered contain duplicates.</source><target state="new">Hosts entered contain duplicates.</target> | 7031 | <trans-unit id="1469559036084108672" datatype="html"> |
7032 | <source>Hosts entered contain duplicates.</source> | ||
7033 | <target state="new">Hosts entered contain duplicates.</target> | ||
6590 | <context-group purpose="location"> | 7034 | <context-group purpose="location"> |
6591 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 7035 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
6592 | <context context-type="linenumber">94</context> | 7036 | <context context-type="linenumber">94</context> |
6593 | </context-group> | 7037 | </context-group> |
6594 | </trans-unit><trans-unit id="5991533283446904296" datatype="html"> | 7038 | </trans-unit> |
6595 | <source>Hosts or handles are invalid.</source><target state="new">Hosts or handles are invalid.</target> | 7039 | <trans-unit id="5991533283446904296" datatype="html"> |
7040 | <source>Hosts or handles are invalid.</source> | ||
7041 | <target state="new">Hosts or handles are invalid.</target> | ||
6596 | <context-group purpose="location"> | 7042 | <context-group purpose="location"> |
6597 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 7043 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
6598 | <context context-type="linenumber">102</context> | 7044 | <context context-type="linenumber">102</context> |
6599 | </context-group> | 7045 | </context-group> |
6600 | </trans-unit><trans-unit id="6759198394434886237" datatype="html"> | 7046 | </trans-unit> |
6601 | <source>Hosts or handles contain duplicates.</source><target state="new">Hosts or handles contain duplicates.</target> | 7047 | <trans-unit id="6759198394434886237" datatype="html"> |
7048 | <source>Hosts or handles contain duplicates.</source> | ||
7049 | <target state="new">Hosts or handles contain duplicates.</target> | ||
6602 | <context-group purpose="location"> | 7050 | <context-group purpose="location"> |
6603 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 7051 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
6604 | <context context-type="linenumber">103</context> | 7052 | <context context-type="linenumber">103</context> |
6605 | </context-group> | 7053 | </context-group> |
6606 | </trans-unit> | 7054 | </trans-unit> |
6607 | |||
6608 | |||
6609 | <trans-unit id="240806681889331244"> | 7055 | <trans-unit id="240806681889331244"> |
6610 | <source>Unlimited</source> | 7056 | <source>Unlimited</source> |
6611 | <target>Oneindig</target> | 7057 | <target>Oneindig</target> |
6612 | 7058 | <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> | |
6613 | 7059 | <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> | |
6614 | 7060 | <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> | |
6615 | 7061 | <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> | |
6616 | 7062 | <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> | |
6617 | 7063 | <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> | |
6618 | <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> | 7064 | </trans-unit> |
6619 | <trans-unit id="5504952199515017930" datatype="html"> | 7065 | <trans-unit id="5504952199515017930" datatype="html"> |
6620 | <source>None - no upload possible</source> | 7066 | <source>None - no upload possible</source> |
6621 | <target state="translated">Geen -geen upload mogelijk</target> | 7067 | <target state="translated">Geen -geen upload mogelijk</target> |
6622 | 7068 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">23</context></context-group> | |
6623 | 7069 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">37</context></context-group> | |
6624 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">23</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">37</context></context-group></trans-unit> | 7070 | </trans-unit> |
6625 | <trans-unit id="616370606803836610"> | 7071 | <trans-unit id="616370606803836610"> |
6626 | <source>100MB</source> | 7072 | <source>100MB</source> |
6627 | <target>100MB</target> | 7073 | <target>100MB</target> |
6628 | 7074 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">24</context></context-group> | |
6629 | 7075 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">40</context></context-group> | |
6630 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">40</context></context-group></trans-unit> | 7076 | </trans-unit> |
6631 | <trans-unit id="9162997081789455476"> | 7077 | <trans-unit id="9162997081789455476"> |
6632 | <source>500MB</source> | 7078 | <source>500MB</source> |
6633 | <target>500MB</target> | 7079 | <target>500MB</target> |
6634 | 7080 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">25</context></context-group> | |
6635 | 7081 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">41</context></context-group> | |
6636 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">25</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">41</context></context-group></trans-unit> | 7082 | </trans-unit> |
6637 | <trans-unit id="1541266817985876981"> | 7083 | <trans-unit id="1541266817985876981"> |
6638 | <source>1GB</source> | 7084 | <source>1GB</source> |
6639 | <target>1GB</target> | 7085 | <target>1GB</target> |
@@ -6642,32 +7088,40 @@ Account aanmaken</target> | |||
6642 | <trans-unit id="6075751004411938819"> | 7088 | <trans-unit id="6075751004411938819"> |
6643 | <source>5GB</source> | 7089 | <source>5GB</source> |
6644 | <target>5GB</target> | 7090 | <target>5GB</target> |
6645 | 7091 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">27</context></context-group> | |
6646 | 7092 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">43</context></context-group> | |
6647 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">43</context></context-group></trans-unit> | 7093 | </trans-unit> |
6648 | <trans-unit id="246811372655482890"> | 7094 | <trans-unit id="246811372655482890"> |
6649 | <source>20GB</source> | 7095 | <source>20GB</source> |
6650 | <target>20GB</target> | 7096 | <target>20GB</target> |
6651 | 7097 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">28</context></context-group> | |
6652 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">28</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7098 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">45</context></context-group> |
7099 | </trans-unit> | ||
6653 | <trans-unit id="2491910291056632032"> | 7100 | <trans-unit id="2491910291056632032"> |
6654 | <source>50GB</source> | 7101 | <source>50GB</source> |
6655 | <target>50GB</target> | 7102 | <target>50GB</target> |
6656 | 7103 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">29</context></context-group> | |
6657 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">29</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">46</context></context-group></trans-unit><trans-unit id="5514849824631859021" datatype="html"> | 7104 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">46</context></context-group> |
6658 | <source>100GB</source><target state="new">100GB</target> | 7105 | </trans-unit> |
7106 | <trans-unit id="5514849824631859021" datatype="html"> | ||
7107 | <source>100GB</source> | ||
7108 | <target state="new">100GB</target> | ||
6659 | <context-group purpose="location"> | 7109 | <context-group purpose="location"> |
6660 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> | 7110 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> |
6661 | <context context-type="linenumber">30</context> | 7111 | <context context-type="linenumber">30</context> |
6662 | </context-group> | 7112 | </context-group> |
6663 | </trans-unit><trans-unit id="8245180845645676506" datatype="html"> | 7113 | </trans-unit> |
6664 | <source>200GB</source><target state="new">200GB</target> | 7114 | <trans-unit id="8245180845645676506" datatype="html"> |
7115 | <source>200GB</source> | ||
7116 | <target state="new">200GB</target> | ||
6665 | <context-group purpose="location"> | 7117 | <context-group purpose="location"> |
6666 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> | 7118 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> |
6667 | <context context-type="linenumber">31</context> | 7119 | <context context-type="linenumber">31</context> |
6668 | </context-group> | 7120 | </context-group> |
6669 | </trans-unit><trans-unit id="5468089754278798237" datatype="html"> | 7121 | </trans-unit> |
6670 | <source>500GB</source><target state="new">500GB</target> | 7122 | <trans-unit id="5468089754278798237" datatype="html"> |
7123 | <source>500GB</source> | ||
7124 | <target state="new">500GB</target> | ||
6671 | <context-group purpose="location"> | 7125 | <context-group purpose="location"> |
6672 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> | 7126 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> |
6673 | <context context-type="linenumber">32</context> | 7127 | <context context-type="linenumber">32</context> |
@@ -6676,19 +7130,21 @@ Account aanmaken</target> | |||
6676 | <trans-unit id="3977630500122496087"> | 7130 | <trans-unit id="3977630500122496087"> |
6677 | <source>10MB</source> | 7131 | <source>10MB</source> |
6678 | <target>10MB</target> | 7132 | <target>10MB</target> |
6679 | 7133 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">38</context></context-group> | |
6680 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 7134 | </trans-unit> |
6681 | <trans-unit id="2060593120571755546"> | 7135 | <trans-unit id="2060593120571755546"> |
6682 | <source>50MB</source> | 7136 | <source>50MB</source> |
6683 | <target>50MB</target> | 7137 | <target>50MB</target> |
6684 | 7138 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">39</context></context-group> | |
6685 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">39</context></context-group></trans-unit> | 7139 | </trans-unit> |
6686 | <trans-unit id="7653028819867308249"> | 7140 | <trans-unit id="7653028819867308249"> |
6687 | <source>2GB</source> | 7141 | <source>2GB</source> |
6688 | <target>2GB</target> | 7142 | <target>2GB</target> |
6689 | 7143 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">42</context></context-group> | |
6690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">42</context></context-group></trans-unit><trans-unit id="7641416475804061087" datatype="html"> | 7144 | </trans-unit> |
6691 | <source>10GB</source><target state="new">10GB</target> | 7145 | <trans-unit id="7641416475804061087" datatype="html"> |
7146 | <source>10GB</source> | ||
7147 | <target state="new">10GB</target> | ||
6692 | <context-group purpose="location"> | 7148 | <context-group purpose="location"> |
6693 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> | 7149 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> |
6694 | <context context-type="linenumber">44</context> | 7150 | <context context-type="linenumber">44</context> |
@@ -6722,45 +7178,47 @@ Account aanmaken</target> | |||
6722 | <trans-unit id="7022070615528435141" datatype="html"> | 7178 | <trans-unit id="7022070615528435141" datatype="html"> |
6723 | <source>Delete</source> | 7179 | <source>Delete</source> |
6724 | <target state="translated">Verwijderen</target> | 7180 | <target state="translated">Verwijderen</target> |
6725 | 7181 | <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> | |
6726 | 7182 | <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">87</context></context-group> | |
6727 | 7183 | <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> | |
6728 | 7184 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">95</context></context-group> | |
6729 | 7185 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">163</context></context-group> | |
6730 | 7186 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">85</context></context-group> | |
6731 | 7187 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">199</context></context-group> | |
6732 | 7188 | <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> | |
6733 | 7189 | <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> | |
6734 | 7190 | <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> | |
6735 | 7191 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">115</context></context-group> | |
6736 | 7192 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">142</context></context-group> | |
6737 | 7193 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">183</context></context-group> | |
6738 | 7194 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group> | |
6739 | 7195 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">144</context></context-group> | |
6740 | 7196 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">386</context></context-group> | |
6741 | 7197 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">421</context></context-group> | |
6742 | 7198 | <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> | |
6743 | 7199 | <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> | |
6744 | 7200 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">92</context></context-group> | |
6745 | 7201 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">208</context></context-group> | |
6746 | 7202 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">308</context></context-group> | |
6747 | <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">87</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-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">95</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.ts</context><context context-type="linenumber">163</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">85</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">199</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.ts</context><context context-type="linenumber">115</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">142</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">183</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/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">144</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">386</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">421</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-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">92</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">208</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">308</context></context-group></trans-unit> | 7203 | </trans-unit> |
6748 | <trans-unit id="8312101634344200207" datatype="html"> | 7204 | <trans-unit id="8312101634344200207" datatype="html"> |
6749 | <source><x id="PH" equiv-text="this.views"/> viewers</source> | 7205 | <source><x id="PH" equiv-text="this.views"/> viewers</source> |
6750 | <target state="translated"><x id="PH" equiv-text="this.views"/> kijkers</target> | 7206 | <target state="translated"><x id="PH" equiv-text="this.views"/> kijkers</target> |
6751 | 7207 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">216</context></context-group> | |
6752 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">216</context></context-group></trans-unit> | 7208 | </trans-unit> |
6753 | <trans-unit id="7756087706411154095" datatype="html"> | 7209 | <trans-unit id="7756087706411154095" datatype="html"> |
6754 | <source><x id="PH" equiv-text="this.views"/> views</source> | 7210 | <source><x id="PH" equiv-text="this.views"/> views</source> |
6755 | <target state="translated"><x id="PH" equiv-text="this.views"/> keer bekeken</target> | 7211 | <target state="translated"><x id="PH" equiv-text="this.views"/> keer bekeken</target> |
6756 | 7212 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">219</context></context-group> | |
6757 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.model.ts</context><context context-type="linenumber">219</context></context-group></trans-unit> | 7213 | </trans-unit> |
6758 | <trans-unit id="2452034338905853167"> | 7214 | <trans-unit id="2452034338905853167"> |
6759 | <source><x id="PH"/> removed from instance followers </source> | 7215 | <source><x id="PH"/> removed from instance followers </source> |
6760 | <target><x id="PH"/> verwijderd uit volgers van dit exemplaar van PeerTube </target> | 7216 | <target><x id="PH"/> verwijderd uit volgers van dit exemplaar van PeerTube </target> |
6761 | <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> | 7217 | <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> |
6762 | </trans-unit><trans-unit id="6018246591673612412" datatype="html"> | 7218 | </trans-unit> |
6763 | <source>Follow</source><target state="new">Follow</target> | 7219 | <trans-unit id="6018246591673612412" datatype="html"> |
7220 | <source>Follow</source> | ||
7221 | <target state="new">Follow</target> | ||
6764 | <context-group purpose="location"> | 7222 | <context-group purpose="location"> |
6765 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> | 7223 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> |
6766 | <context context-type="linenumber">3</context> | 7224 | <context context-type="linenumber">3</context> |
@@ -6773,8 +7231,10 @@ Account aanmaken</target> | |||
6773 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | 7231 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> |
6774 | <context context-type="linenumber">18</context> | 7232 | <context context-type="linenumber">18</context> |
6775 | </context-group> | 7233 | </context-group> |
6776 | </trans-unit><trans-unit id="3596798855644241001" datatype="html"> | 7234 | </trans-unit> |
6777 | <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> | 7235 | <trans-unit id="3596798855644241001" datatype="html"> |
7236 | <source>1 host (without "http://"), account handle or channel handle per line</source> | ||
7237 | <target state="new">1 host (without "http://"), account handle or channel handle per line</target> | ||
6778 | <context-group purpose="location"> | 7238 | <context-group purpose="location"> |
6779 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> | 7239 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> |
6780 | <context context-type="linenumber">11</context> | 7240 | <context context-type="linenumber">11</context> |
@@ -6785,14 +7245,17 @@ Account aanmaken</target> | |||
6785 | <target> | 7245 | <target> |
6786 | <x id="PH"/> is niet valide | 7246 | <x id="PH"/> is niet valide |
6787 | </target> | 7247 | </target> |
6788 | 7248 | <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> | |
6789 | <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> | 7249 | <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> |
7250 | </trans-unit> | ||
6790 | <trans-unit id="2355066641781598196"> | 7251 | <trans-unit id="2355066641781598196"> |
6791 | <source>Follow request(s) sent!</source> | 7252 | <source>Follow request(s) sent!</source> |
6792 | <target>Volgverzoek(en) verstuurd!</target> | 7253 | <target>Volgverzoek(en) verstuurd!</target> |
6793 | 7254 | <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> | |
6794 | <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"> | 7255 | </trans-unit> |
6795 | <source>Your instance subscriptions</source><target state="new">Your instance subscriptions</target> | 7256 | <trans-unit id="3459358413436264734" datatype="html"> |
7257 | <source>Your instance subscriptions</source> | ||
7258 | <target state="new">Your instance subscriptions</target> | ||
6796 | <context-group purpose="location"> | 7259 | <context-group purpose="location"> |
6797 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | 7260 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> |
6798 | <context context-type="linenumber">3</context> | 7261 | <context context-type="linenumber">3</context> |
@@ -6801,8 +7264,8 @@ Account aanmaken</target> | |||
6801 | <trans-unit id="4245720728052819482"> | 7264 | <trans-unit id="4245720728052819482"> |
6802 | <source>Do you really want to unfollow <x id="PH"/>?</source> | 7265 | <source>Do you really want to unfollow <x id="PH"/>?</source> |
6803 | <target>Wil je echt <x id="PH"/> niet meer volgen?</target> | 7266 | <target>Wil je echt <x id="PH"/> niet meer volgen?</target> |
6804 | 7267 | <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> | |
6805 | <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> | 7268 | </trans-unit> |
6806 | <trans-unit id="9160510009013134726"> | 7269 | <trans-unit id="9160510009013134726"> |
6807 | <source>Unfollow</source> | 7270 | <source>Unfollow</source> |
6808 | <target>Onvolgen</target> | 7271 | <target>Onvolgen</target> |
@@ -6811,8 +7274,8 @@ Account aanmaken</target> | |||
6811 | <trans-unit id="3935234189109112926"> | 7274 | <trans-unit id="3935234189109112926"> |
6812 | <source>You are not following <x id="PH"/> anymore.</source> | 7275 | <source>You are not following <x id="PH"/> anymore.</source> |
6813 | <target>Je volgt <x id="PH"/> niet meer.</target> | 7276 | <target>Je volgt <x id="PH"/> niet meer.</target> |
6814 | 7277 | <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> | |
6815 | <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> | 7278 | </trans-unit> |
6816 | <trans-unit id="2593763089859685916"> | 7279 | <trans-unit id="2593763089859685916"> |
6817 | <source>enabled</source> | 7280 | <source>enabled</source> |
6818 | <target>ingeschakeld</target> | 7281 | <target>ingeschakeld</target> |
@@ -6831,33 +7294,33 @@ Account aanmaken</target> | |||
6831 | <trans-unit id="81585474102700882" datatype="html"> | 7294 | <trans-unit id="81585474102700882" datatype="html"> |
6832 | <source>Used</source> | 7295 | <source>Used</source> |
6833 | <target state="translated">Gebruikt</target> | 7296 | <target state="translated">Gebruikt</target> |
6834 | 7297 | <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">102</context></context-group> | |
6835 | <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">102</context></context-group></trans-unit> | 7298 | </trans-unit> |
6836 | <trans-unit id="3955868613858648955" datatype="html"> | 7299 | <trans-unit id="3955868613858648955" datatype="html"> |
6837 | <source>Available</source> | 7300 | <source>Available</source> |
6838 | <target state="translated">Beschikbaar</target> | 7301 | <target state="translated">Beschikbaar</target> |
6839 | 7302 | <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">102</context></context-group> | |
6840 | <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">102</context></context-group></trans-unit> | 7303 | </trans-unit> |
6841 | <trans-unit id="5875705095657098468" datatype="html"> | 7304 | <trans-unit id="5875705095657098468" datatype="html"> |
6842 | <source>Do you really want to remove this video redundancy?</source> | 7305 | <source>Do you really want to remove this video redundancy?</source> |
6843 | <target state="translated">Wil je echt de superpluskopie van deze video verwijderen?</target> | 7306 | <target state="translated">Wil je echt de superpluskopie van deze video verwijderen?</target> |
6844 | 7307 | <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">142</context></context-group> | |
6845 | <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">142</context></context-group></trans-unit> | 7308 | </trans-unit> |
6846 | <trans-unit id="9098272570113000349" datatype="html"> | 7309 | <trans-unit id="9098272570113000349" datatype="html"> |
6847 | <source>Remove redundancy</source> | 7310 | <source>Remove redundancy</source> |
6848 | <target state="translated">Surpluskopie verwijderen</target> | 7311 | <target state="translated">Surpluskopie verwijderen</target> |
6849 | 7312 | <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">143</context></context-group> | |
6850 | <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">143</context></context-group></trans-unit> | 7313 | </trans-unit> |
6851 | <trans-unit id="6537102123107780785" datatype="html"> | 7314 | <trans-unit id="6537102123107780785" datatype="html"> |
6852 | <source>Video redundancies removed!</source> | 7315 | <source>Video redundancies removed!</source> |
6853 | <target state="translated">Surpluskopies van video verwijderd!</target> | 7316 | <target state="translated">Surpluskopies van video verwijderd!</target> |
6854 | 7317 | <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> | |
6855 | <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> | 7318 | </trans-unit> |
6856 | <trans-unit id="8639315630141911544"> | 7319 | <trans-unit id="8639315630141911544"> |
6857 | <source>Account <x id="PH"/> unmuted by your instance.</source> | 7320 | <source>Account <x id="PH"/> unmuted by your instance.</source> |
6858 | <target>Account <x id="PH"/> niet meer gedempt door je exemplaar van PeerTube.</target> | 7321 | <target>Account <x id="PH"/> niet meer gedempt door je exemplaar van PeerTube.</target> |
6859 | 7322 | <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> | |
6860 | <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> | 7323 | </trans-unit> |
6861 | <trans-unit id="3371601176452094961"> | 7324 | <trans-unit id="3371601176452094961"> |
6862 | <source>Instance <x id="PH"/> unmuted by your instance.</source> | 7325 | <source>Instance <x id="PH"/> unmuted by your instance.</source> |
6863 | <target>Exemplaar <x id="PH"/> niet meer gedempt door jouw exemplaar van PeerTube.</target> | 7326 | <target>Exemplaar <x id="PH"/> niet meer gedempt door jouw exemplaar van PeerTube.</target> |
@@ -6866,9 +7329,9 @@ Account aanmaken</target> | |||
6866 | <trans-unit id="1598375456114200087" datatype="html"> | 7329 | <trans-unit id="1598375456114200087" datatype="html"> |
6867 | <source>Instance <x id="PH"/> muted.</source> | 7330 | <source>Instance <x id="PH"/> muted.</source> |
6868 | <target state="translated">Exemplaar <x id="PH"/> van PeerTube gedempt.</target> | 7331 | <target state="translated">Exemplaar <x id="PH"/> van PeerTube gedempt.</target> |
6869 | 7332 | <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> | |
6870 | 7333 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">145</context></context-group> | |
6871 | <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">145</context></context-group></trans-unit> | 7334 | </trans-unit> |
6872 | <trans-unit id="3096398988891996621" datatype="html"> | 7335 | <trans-unit id="3096398988891996621" datatype="html"> |
6873 | <source>Instance <x id="PH"/> muted by your instance.</source> | 7336 | <source>Instance <x id="PH"/> muted by your instance.</source> |
6874 | <target state="translated">Exemplaar <x id="PH"/> gedempt door jouw exemplaar van PeerTube.</target> | 7337 | <target state="translated">Exemplaar <x id="PH"/> gedempt door jouw exemplaar van PeerTube.</target> |
@@ -6882,158 +7345,158 @@ Account aanmaken</target> | |||
6882 | <trans-unit id="149121389669248117" datatype="html"> | 7345 | <trans-unit id="149121389669248117" datatype="html"> |
6883 | <source>Violent or Repulsive</source> | 7346 | <source>Violent or Repulsive</source> |
6884 | <target state="translated">Gewelddadig of Weerzinwekkend</target> | 7347 | <target state="translated">Gewelddadig of Weerzinwekkend</target> |
6885 | 7348 | <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> | |
6886 | <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> | 7349 | </trans-unit> |
6887 | <trans-unit id="2493388551376623687" datatype="html"> | 7350 | <trans-unit id="2493388551376623687" datatype="html"> |
6888 | <source>Hateful or Abusive</source> | 7351 | <source>Hateful or Abusive</source> |
6889 | <target state="translated">Haatdragend of Krenkend</target> | 7352 | <target state="translated">Haatdragend of Krenkend</target> |
6890 | 7353 | <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> | |
6891 | <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> | 7354 | </trans-unit> |
6892 | <trans-unit id="5124757565683866220" datatype="html"> | 7355 | <trans-unit id="5124757565683866220" datatype="html"> |
6893 | <source>Spam or Misleading</source> | 7356 | <source>Spam or Misleading</source> |
6894 | <target state="translated">Spam of Misleidend</target> | 7357 | <target state="translated">Spam of Misleidend</target> |
6895 | 7358 | <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> | |
6896 | <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> | 7359 | </trans-unit> |
6897 | <trans-unit id="8440128775129354214" datatype="html"> | 7360 | <trans-unit id="8440128775129354214" datatype="html"> |
6898 | <source>Privacy</source> | 7361 | <source>Privacy</source> |
6899 | <target state="translated">Privacy</target> | 7362 | <target state="translated">Privacy</target> |
6900 | 7363 | <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> | |
6901 | <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> | 7364 | </trans-unit> |
6902 | <trans-unit id="8768506950499277937" datatype="html"> | 7365 | <trans-unit id="8768506950499277937" datatype="html"> |
6903 | <source>Copyright</source> | 7366 | <source>Copyright</source> |
6904 | <target state="translated">Copyright</target> | 7367 | <target state="translated">Copyright</target> |
6905 | 7368 | <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> | |
6906 | 7369 | <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> | |
6907 | <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">161</context></context-group></trans-unit> | 7370 | </trans-unit> |
6908 | <trans-unit id="3776575731053010580" datatype="html"> | 7371 | <trans-unit id="3776575731053010580" datatype="html"> |
6909 | <source>Server rules</source> | 7372 | <source>Server rules</source> |
6910 | <target state="translated">Serverregels</target> | 7373 | <target state="translated">Serverregels</target> |
6911 | 7374 | <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> | |
6912 | <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> | 7375 | </trans-unit> |
6913 | <trans-unit id="6907161397537530258" datatype="html"> | 7376 | <trans-unit id="6907161397537530258" datatype="html"> |
6914 | <source>Thumbnails</source> | 7377 | <source>Thumbnails</source> |
6915 | <target state="translated">Miniaturen</target> | 7378 | <target state="translated">Miniaturen</target> |
6916 | 7379 | <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> | |
6917 | 7380 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">176</context></context-group> | |
6918 | <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">176</context></context-group></trans-unit> | 7381 | </trans-unit> |
6919 | <trans-unit id="6473213678768782133" datatype="html"> | 7382 | <trans-unit id="6473213678768782133" datatype="html"> |
6920 | <source>Internal actions</source> | 7383 | <source>Internal actions</source> |
6921 | <target state="translated">Interne acties</target> | 7384 | <target state="translated">Interne acties</target> |
6922 | 7385 | <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">56</context></context-group> | |
6923 | 7386 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">256</context></context-group> | |
6924 | <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">56</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">256</context></context-group></trans-unit> | 7387 | </trans-unit> |
6925 | <trans-unit id="4559872264406386913" datatype="html"> | 7388 | <trans-unit id="4559872264406386913" datatype="html"> |
6926 | <source>Delete report</source> | 7389 | <source>Delete report</source> |
6927 | <target state="translated">Rapport verwijderen</target> | 7390 | <target state="translated">Rapport verwijderen</target> |
6928 | 7391 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">287</context></context-group> | |
6929 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">287</context></context-group></trans-unit> | 7392 | </trans-unit> |
6930 | <trans-unit id="5793550984155962433" datatype="html"> | 7393 | <trans-unit id="5793550984155962433" datatype="html"> |
6931 | <source>Actions for the flagged account</source> | 7394 | <source>Actions for the flagged account</source> |
6932 | <target state="translated">Acties op de gemarkeerde account</target> | 7395 | <target state="translated">Acties op de gemarkeerde account</target> |
6933 | 7396 | <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> | |
6934 | <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> | 7397 | </trans-unit> |
6935 | <trans-unit id="1679841953757186358"> | 7398 | <trans-unit id="1679841953757186358"> |
6936 | <source>Mark as accepted</source> | 7399 | <source>Mark as accepted</source> |
6937 | <target>Markeer als geaccepteerd</target> | 7400 | <target>Markeer als geaccepteerd</target> |
6938 | 7401 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">272</context></context-group> | |
6939 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">272</context></context-group></trans-unit> | 7402 | </trans-unit> |
6940 | <trans-unit id="7993358694073742566"> | 7403 | <trans-unit id="7993358694073742566"> |
6941 | <source>Mark as rejected</source> | 7404 | <source>Mark as rejected</source> |
6942 | <target>Markeer als afgewezen</target> | 7405 | <target>Markeer als afgewezen</target> |
6943 | 7406 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">277</context></context-group> | |
6944 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">277</context></context-group></trans-unit> | 7407 | </trans-unit> |
6945 | <trans-unit id="4175703770051343108" datatype="html"> | 7408 | <trans-unit id="4175703770051343108" datatype="html"> |
6946 | <source>Add internal note</source> | 7409 | <source>Add internal note</source> |
6947 | <target state="translated">Interne nota toevoegen</target> | 7410 | <target state="translated">Interne nota toevoegen</target> |
6948 | 7411 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">282</context></context-group> | |
6949 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">282</context></context-group></trans-unit> | 7412 | </trans-unit> |
6950 | <trans-unit id="296166371893775555" datatype="html"> | 7413 | <trans-unit id="296166371893775555" datatype="html"> |
6951 | <source>Actions for the video</source> | 7414 | <source>Actions for the video</source> |
6952 | <target state="translated">Acties voor de video</target> | 7415 | <target state="translated">Acties voor de video</target> |
6953 | 7416 | <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">79</context></context-group> | |
6954 | 7417 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">346</context></context-group> | |
6955 | <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">79</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">346</context></context-group></trans-unit> | 7418 | </trans-unit> |
6956 | <trans-unit id="3924877328520650445" datatype="html"> | 7419 | <trans-unit id="3924877328520650445" datatype="html"> |
6957 | <source>Block video</source> | 7420 | <source>Block video</source> |
6958 | <target state="translated">Video blokkeren</target> | 7421 | <target state="translated">Video blokkeren</target> |
6959 | 7422 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">351</context></context-group> | |
6960 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">351</context></context-group></trans-unit> | 7423 | </trans-unit> |
6961 | <trans-unit id="4762794934098378428" datatype="html"> | 7424 | <trans-unit id="4762794934098378428" datatype="html"> |
6962 | <source>Video blocked.</source> | 7425 | <source>Video blocked.</source> |
6963 | <target state="translated">Video geblokkeerd.</target> | 7426 | <target state="translated">Video geblokkeerd.</target> |
6964 | 7427 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">357</context></context-group> | |
6965 | 7428 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context><context context-type="linenumber">60</context></context-group> | |
6966 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">357</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> | 7429 | </trans-unit> |
6967 | <trans-unit id="4328862996304258770" datatype="html"> | 7430 | <trans-unit id="4328862996304258770" datatype="html"> |
6968 | <source>Unblock video</source> | 7431 | <source>Unblock video</source> |
6969 | <target state="translated">Video deblokkeren</target> | 7432 | <target state="translated">Video deblokkeren</target> |
6970 | 7433 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">367</context></context-group> | |
6971 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">367</context></context-group></trans-unit> | 7434 | </trans-unit> |
6972 | <trans-unit id="9065327551191479877" datatype="html"> | 7435 | <trans-unit id="9065327551191479877" datatype="html"> |
6973 | <source>Video unblocked.</source> | 7436 | <source>Video unblocked.</source> |
6974 | <target state="translated">Video gedeblokkeerd.</target> | 7437 | <target state="translated">Video gedeblokkeerd.</target> |
6975 | 7438 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">373</context></context-group> | |
6976 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">373</context></context-group></trans-unit> | 7439 | </trans-unit> |
6977 | <trans-unit id="1250415136605923486"> | 7440 | <trans-unit id="1250415136605923486"> |
6978 | <source>Do you really want to delete this abuse report?</source> | 7441 | <source>Do you really want to delete this abuse report?</source> |
6979 | <target>Wil je echt deze misbruikmelding verwijderen?</target> | 7442 | <target>Wil je echt deze misbruikmelding verwijderen?</target> |
6980 | 7443 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">145</context></context-group> | |
6981 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">145</context></context-group></trans-unit> | 7444 | </trans-unit> |
6982 | <trans-unit id="3482559157143817408"> | 7445 | <trans-unit id="3482559157143817408"> |
6983 | <source>Abuse deleted.</source> | 7446 | <source>Abuse deleted.</source> |
6984 | <target>Misbruik verwijderdt.</target> | 7447 | <target>Misbruik verwijderdt.</target> |
6985 | 7448 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">151</context></context-group> | |
6986 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">151</context></context-group></trans-unit> | 7449 | </trans-unit> |
6987 | <trans-unit id="6282990098351939529" datatype="html"> | 7450 | <trans-unit id="6282990098351939529" datatype="html"> |
6988 | <source>Deleted comment</source> | 7451 | <source>Deleted comment</source> |
6989 | <target state="translated">Reactie verwijderd</target> | 7452 | <target state="translated">Reactie verwijderd</target> |
6990 | 7453 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">227</context></context-group> | |
6991 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">227</context></context-group></trans-unit> | 7454 | </trans-unit> |
6992 | <trans-unit id="9196775343330824083" datatype="html"> | 7455 | <trans-unit id="9196775343330824083" datatype="html"> |
6993 | <source>Messages with reporter</source> | 7456 | <source>Messages with reporter</source> |
6994 | <target state="translated">Conversaties met aangever</target> | 7457 | <target state="translated">Conversaties met aangever</target> |
6995 | 7458 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">261</context></context-group> | |
6996 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">261</context></context-group></trans-unit> | 7459 | </trans-unit> |
6997 | <trans-unit id="8770468575924421391" datatype="html"> | 7460 | <trans-unit id="8770468575924421391" datatype="html"> |
6998 | <source>Messages with moderators</source> | 7461 | <source>Messages with moderators</source> |
6999 | <target state="translated">Conversaties met moderatoren</target> | 7462 | <target state="translated">Conversaties met moderatoren</target> |
7000 | 7463 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">262</context></context-group> | |
7001 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">262</context></context-group></trans-unit> | 7464 | </trans-unit> |
7002 | <trans-unit id="8528549800795985099" datatype="html"> | 7465 | <trans-unit id="8528549800795985099" datatype="html"> |
7003 | <source>Update internal note</source> | 7466 | <source>Update internal note</source> |
7004 | <target state="translated">Interne nota bijwerken</target> | 7467 | <target state="translated">Interne nota bijwerken</target> |
7005 | 7468 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">267</context></context-group> | |
7006 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">267</context></context-group></trans-unit> | 7469 | </trans-unit> |
7007 | <trans-unit id="3962242315365992494" datatype="html"> | 7470 | <trans-unit id="3962242315365992494" datatype="html"> |
7008 | <source>Switch video block to manual</source> | 7471 | <source>Switch video block to manual</source> |
7009 | <target state="translated">Videoblokkering naar manueel schakelen</target> | 7472 | <target state="translated">Videoblokkering naar manueel schakelen</target> |
7010 | 7473 | <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">61</context></context-group> | |
7011 | <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">61</context></context-group></trans-unit> | 7474 | </trans-unit> |
7012 | <trans-unit id="6906423861055262169" datatype="html"> | 7475 | <trans-unit id="6906423861055262169" datatype="html"> |
7013 | <source>Video <x id="PH"/> switched to manual block.</source> | 7476 | <source>Video <x id="PH"/> switched to manual block.</source> |
7014 | <target state="translated">Video <x id="PH"/> gewijzigd naar blokkering.</target> | 7477 | <target state="translated">Video <x id="PH"/> gewijzigd naar blokkering.</target> |
7015 | 7478 | <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">67</context></context-group> | |
7016 | <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">67</context></context-group></trans-unit> | 7479 | </trans-unit> |
7017 | <trans-unit id="7293356040886494773" datatype="html"> | 7480 | <trans-unit id="7293356040886494773" datatype="html"> |
7018 | <source>Do you really want to unblock this video? It will be available again in the videos list.</source> | 7481 | <source>Do you really want to unblock this video? It will be available again in the videos list.</source> |
7019 | <target state="translated">Wil je echt deze video deblokkeren? Hij wordt dan opnieuw beschikbaar in de lijst van video's.</target> | 7482 | <target state="translated">Wil je echt deze video deblokkeren? Hij wordt dan opnieuw beschikbaar in de lijst van video's.</target> |
7020 | 7483 | <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">132</context></context-group> | |
7021 | 7484 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">180</context></context-group> | |
7022 | <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">132</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">180</context></context-group></trans-unit> | 7485 | </trans-unit> |
7023 | <trans-unit id="4859202148272511129" datatype="html"> | 7486 | <trans-unit id="4859202148272511129" datatype="html"> |
7024 | <source>Unblock</source> | 7487 | <source>Unblock</source> |
7025 | <target state="translated">Deblokkeren</target> | 7488 | <target state="translated">Deblokkeren</target> |
7026 | 7489 | <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">83</context></context-group> | |
7027 | 7490 | <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">134</context></context-group> | |
7028 | 7491 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">182</context></context-group> | |
7029 | 7492 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">296</context></context-group> | |
7030 | <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">83</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">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">182</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">296</context></context-group></trans-unit> | 7493 | </trans-unit> |
7031 | <trans-unit id="4922469417589203720" datatype="html"> | 7494 | <trans-unit id="4922469417589203720" datatype="html"> |
7032 | <source>Video <x id="PH"/> unblocked.</source> | 7495 | <source>Video <x id="PH"/> unblocked.</source> |
7033 | <target state="translated">Video <x id="PH"/> gedeblokkeerd.</target> | 7496 | <target state="translated">Video <x id="PH"/> gedeblokkeerd.</target> |
7034 | 7497 | <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">140</context></context-group> | |
7035 | 7498 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">188</context></context-group> | |
7036 | <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">140</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">188</context></context-group></trans-unit> | 7499 | </trans-unit> |
7037 | <trans-unit id="6286037250766429054"> | 7500 | <trans-unit id="6286037250766429054"> |
7038 | <source>yes</source> | 7501 | <source>yes</source> |
7039 | <target>ja</target> | 7502 | <target>ja</target> |
@@ -7049,53 +7512,59 @@ Account aanmaken</target> | |||
7049 | <trans-unit id="212615365039028546"> | 7512 | <trans-unit id="212615365039028546"> |
7050 | <source>You don't have plugins installed yet.</source> | 7513 | <source>You don't have plugins installed yet.</source> |
7051 | <target>Je hebt nog geen plugins geïnstalleerd.</target> | 7514 | <target>Je hebt nog geen plugins geïnstalleerd.</target> |
7052 | 7515 | <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">86</context></context-group> | |
7053 | <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">86</context></context-group></trans-unit> | 7516 | </trans-unit> |
7054 | <trans-unit id="1710094819987243777"> | 7517 | <trans-unit id="1710094819987243777"> |
7055 | <source>You don't have themes installed yet.</source> | 7518 | <source>You don't have themes installed yet.</source> |
7056 | <target>Je hebt nog geen themas geïnstalleerd.</target> | 7519 | <target>Je hebt nog geen themas geïnstalleerd.</target> |
7057 | 7520 | <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">89</context></context-group> | |
7058 | <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">89</context></context-group></trans-unit> | 7521 | </trans-unit> |
7059 | <trans-unit id="931472057457682240"> | 7522 | <trans-unit id="931472057457682240"> |
7060 | <source>Update to <x id="PH"/> </source> | 7523 | <source>Update to <x id="PH"/> </source> |
7061 | <target>Bijwerken naar | 7524 | <target>Bijwerken naar |
7062 | <x id="PH"/> | 7525 | <x id="PH"/> |
7063 | </target> | 7526 | </target> |
7064 | 7527 | <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">97</context></context-group> | |
7065 | <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">97</context></context-group></trans-unit> | 7528 | </trans-unit> |
7066 | <trans-unit id="9107383323119159110"> | 7529 | <trans-unit id="9107383323119159110"> |
7067 | <source>Do you really want to uninstall <x id="PH"/>?</source> | 7530 | <source>Do you really want to uninstall <x id="PH"/>?</source> |
7068 | <target>Wil je echt <x id="PH"/> verwijderen?</target> | 7531 | <target>Wil je echt <x id="PH"/> verwijderen?</target> |
7069 | 7532 | <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">110</context></context-group> | |
7070 | <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">110</context></context-group></trans-unit> | 7533 | </trans-unit> |
7071 | <trans-unit id="4474510732215437338" datatype="html"> | 7534 | <trans-unit id="4474510732215437338" datatype="html"> |
7072 | <source>Uninstall</source> | 7535 | <source>Uninstall</source> |
7073 | <target state="translated">Installatie verwijderen</target> | 7536 | <target state="translated">Installatie verwijderen</target> |
7074 | 7537 | <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> | |
7075 | <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> | 7538 | </trans-unit> |
7076 | <trans-unit id="3773378957693174719"> | 7539 | <trans-unit id="3773378957693174719"> |
7077 | <source><x id="PH"/> uninstalled. </source> | 7540 | <source><x id="PH"/> uninstalled. </source> |
7078 | <target> | 7541 | <target> |
7079 | <x id="PH"/> verwijderd. | 7542 | <x id="PH"/> verwijderd. |
7080 | </target> | 7543 | </target> |
7081 | 7544 | <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">118</context></context-group> | |
7082 | <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">118</context></context-group></trans-unit><trans-unit id="7914215986085479339" datatype="html"> | 7545 | </trans-unit> |
7083 | <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> | 7546 | <trans-unit id="7914215986085479339" datatype="html"> |
7084 | 7547 | <source>This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes.</source> | |
7085 | <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">134</context></context-group></trans-unit><trans-unit id="2849750161085431718" datatype="html"> | 7548 | <target state="new">This is a major plugin upgrade. Please go on the plugin homepage to check potential release notes.</target> |
7086 | <source>Upgrade</source><target state="new">Upgrade</target> | 7549 | <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">134</context></context-group> |
7087 | 7550 | </trans-unit> | |
7088 | <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="7686590072950686188" datatype="html"> | 7551 | <trans-unit id="2849750161085431718" datatype="html"> |
7089 | <source>Proceed upgrade</source><target state="new">Proceed upgrade</target> | 7552 | <source>Upgrade</source> |
7090 | 7553 | <target state="new">Upgrade</target> | |
7091 | <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> | 7554 | <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> |
7555 | </trans-unit> | ||
7556 | <trans-unit id="7686590072950686188" datatype="html"> | ||
7557 | <source>Proceed upgrade</source> | ||
7558 | <target state="new">Proceed upgrade</target> | ||
7559 | <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> | ||
7560 | </trans-unit> | ||
7092 | <trans-unit id="7830308409197461339"> | 7561 | <trans-unit id="7830308409197461339"> |
7093 | <source><x id="PH"/> updated. </source> | 7562 | <source><x id="PH"/> updated. </source> |
7094 | <target> | 7563 | <target> |
7095 | <x id="PH"/> bijgewerkt. | 7564 | <x id="PH"/> bijgewerkt. |
7096 | </target> | 7565 | </target> |
7097 | 7566 | <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">150</context></context-group> | |
7098 | <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">150</context></context-group></trans-unit> | 7567 | </trans-unit> |
7099 | <trans-unit id="3229595422546554334" datatype="html"> | 7568 | <trans-unit id="3229595422546554334" datatype="html"> |
7100 | <source>Jobs</source> | 7569 | <source>Jobs</source> |
7101 | <target state="translated">Taken</target> | 7570 | <target state="translated">Taken</target> |
@@ -7109,99 +7578,117 @@ Account aanmaken</target> | |||
7109 | <trans-unit id="3150704904301058778"> | 7578 | <trans-unit id="3150704904301058778"> |
7110 | <source>The plugin index is not available. Please retry later.</source> | 7579 | <source>The plugin index is not available. Please retry later.</source> |
7111 | <target>De plugin index is niet beschikbaar. Probeer later alstublieft weer.</target> | 7580 | <target>De plugin index is niet beschikbaar. Probeer later alstublieft weer.</target> |
7112 | 7581 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">100</context></context-group> | |
7113 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">100</context></context-group></trans-unit> | 7582 | </trans-unit> |
7114 | <trans-unit id="1387301493234848481"> | 7583 | <trans-unit id="1387301493234848481"> |
7115 | <source>Please only install plugins or themes you trust, since they can execute any code on your instance.</source> | 7584 | <source>Please only install plugins or themes you trust, since they can execute any code on your instance.</source> |
7116 | <target>Installeer alleen plugins of thema's die u vertrouwt, aangezien deze hun code op jouw exemplaar van PeerTube kunnen uitvoeren.</target> | 7585 | <target>Installeer alleen plugins of thema's die u vertrouwt, aangezien deze hun code op jouw exemplaar van PeerTube kunnen uitvoeren.</target> |
7117 | 7586 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">134</context></context-group> | |
7118 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">134</context></context-group></trans-unit> | 7587 | </trans-unit> |
7119 | <trans-unit id="2994182849694226596"> | 7588 | <trans-unit id="2994182849694226596"> |
7120 | <source>Install <x id="PH"/>?</source> | 7589 | <source>Install <x id="PH"/>?</source> |
7121 | <target><x id="PH"/> installeren?</target> | 7590 | <target><x id="PH"/> installeren?</target> |
7122 | 7591 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">135</context></context-group> | |
7123 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit> | 7592 | </trans-unit> |
7124 | <trans-unit id="6703720397495603345"> | 7593 | <trans-unit id="6703720397495603345"> |
7125 | <source><x id="PH"/> installed. </source> | 7594 | <source><x id="PH"/> installed. </source> |
7126 | <target> | 7595 | <target> |
7127 | <x id="PH"/> geïnstalleerd. | 7596 | <x id="PH"/> geïnstalleerd. |
7128 | </target> | 7597 | </target> |
7129 | 7598 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">147</context></context-group> | |
7130 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">147</context></context-group></trans-unit> | 7599 | </trans-unit> |
7131 | <trans-unit id="1875025899004073421"> | 7600 | <trans-unit id="1875025899004073421"> |
7132 | <source>Settings updated.</source> | 7601 | <source>Settings updated.</source> |
7133 | <target>Instellingen bijgewerkt.</target> | 7602 | <target>Instellingen bijgewerkt.</target> |
7134 | 7603 | <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> | |
7135 | <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> | 7604 | </trans-unit> |
7136 | <trans-unit id="6901018060567164184"> | 7605 | <trans-unit id="6901018060567164184"> |
7137 | <source>Plugins</source> | 7606 | <source>Plugins</source> |
7138 | <target>Plugins</target> | 7607 | <target>Plugins</target> |
7139 | 7608 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">31</context></context-group> | |
7140 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">31</context></context-group></trans-unit> | 7609 | </trans-unit> |
7141 | <trans-unit id="2798270190074840767"> | 7610 | <trans-unit id="2798270190074840767"> |
7142 | <source>Themes</source> | 7611 | <source>Themes</source> |
7143 | <target>Themas</target> | 7612 | <target>Themas</target> |
7144 | 7613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">35</context></context-group> | |
7145 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">35</context></context-group></trans-unit> | 7614 | </trans-unit> |
7146 | <trans-unit id="2941409202780782189"> | 7615 | <trans-unit id="2941409202780782189"> |
7147 | <source>plugin</source> | 7616 | <source>plugin</source> |
7148 | <target>plugin</target> | 7617 | <target>plugin</target> |
7149 | 7618 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">43</context></context-group> | |
7150 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">43</context></context-group></trans-unit> | 7619 | </trans-unit> |
7151 | <trans-unit id="840045833311458646"> | 7620 | <trans-unit id="840045833311458646"> |
7152 | <source>theme</source> | 7621 | <source>theme</source> |
7153 | <target>thema</target> | 7622 | <target>thema</target> |
7154 | 7623 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">46</context></context-group> | |
7155 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">46</context></context-group></trans-unit><trans-unit id="2483018961011868950" datatype="html"> | 7624 | </trans-unit> |
7156 | <source>IP address</source><target state="new">IP address</target> | 7625 | <trans-unit id="2483018961011868950" datatype="html"> |
7626 | <source>IP address</source> | ||
7627 | <target state="new">IP address</target> | ||
7157 | <context-group purpose="location"> | 7628 | <context-group purpose="location"> |
7158 | <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> |
7159 | <context context-type="linenumber">2</context> | 7630 | <context context-type="linenumber">2</context> |
7160 | </context-group> | 7631 | </context-group> |
7161 | </trans-unit><trans-unit id="7223931053738621590" datatype="html"> | 7632 | </trans-unit> |
7162 | <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> | 7633 | <trans-unit id="7223931053738621590" datatype="html"> |
7634 | <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> | ||
7635 | <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> | ||
7163 | <context-group purpose="location"> | 7636 | <context-group purpose="location"> |
7164 | <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> |
7165 | <context context-type="linenumber">4</context> | 7638 | <context context-type="linenumber">4</context> |
7166 | </context-group> | 7639 | </context-group> |
7167 | </trans-unit><trans-unit id="722088235348685072" datatype="html"> | 7640 | </trans-unit> |
7168 | <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> | 7641 | <trans-unit id="722088235348685072" datatype="html"> |
7642 | <source>If this is not your correct public IP, please consider fixing it because:</source> | ||
7643 | <target state="new">If this is not your correct public IP, please consider fixing it because:</target> | ||
7169 | <context-group purpose="location"> | 7644 | <context-group purpose="location"> |
7170 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 7645 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7171 | <context context-type="linenumber">6</context> | 7646 | <context context-type="linenumber">6</context> |
7172 | </context-group> | 7647 | </context-group> |
7173 | </trans-unit><trans-unit id="8079826195972333513" datatype="html"> | 7648 | </trans-unit> |
7174 | <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> | 7649 | <trans-unit id="8079826195972333513" datatype="html"> |
7650 | <source>Views may not be counted correctly (reduced compared to what they should be)</source> | ||
7651 | <target state="new">Views may not be counted correctly (reduced compared to what they should be)</target> | ||
7175 | <context-group purpose="location"> | 7652 | <context-group purpose="location"> |
7176 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 7653 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7177 | <context context-type="linenumber">8</context> | 7654 | <context context-type="linenumber">8</context> |
7178 | </context-group> | 7655 | </context-group> |
7179 | </trans-unit><trans-unit id="565435193934699740" datatype="html"> | 7656 | </trans-unit> |
7180 | <source>Anti brute force system could be overzealous</source><target state="new">Anti brute force system could be overzealous</target> | 7657 | <trans-unit id="565435193934699740" datatype="html"> |
7658 | <source>Anti brute force system could be overzealous</source> | ||
7659 | <target state="new">Anti brute force system could be overzealous</target> | ||
7181 | <context-group purpose="location"> | 7660 | <context-group purpose="location"> |
7182 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 7661 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7183 | <context context-type="linenumber">9</context> | 7662 | <context context-type="linenumber">9</context> |
7184 | </context-group> | 7663 | </context-group> |
7185 | </trans-unit><trans-unit id="4468853448271686046" datatype="html"> | 7664 | </trans-unit> |
7186 | <source>P2P system could not work correctly</source><target state="new">P2P system could not work correctly</target> | 7665 | <trans-unit id="4468853448271686046" datatype="html"> |
7666 | <source>P2P system could not work correctly</source> | ||
7667 | <target state="new">P2P system could not work correctly</target> | ||
7187 | <context-group purpose="location"> | 7668 | <context-group purpose="location"> |
7188 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 7669 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7189 | <context context-type="linenumber">10</context> | 7670 | <context context-type="linenumber">10</context> |
7190 | </context-group> | 7671 | </context-group> |
7191 | </trans-unit><trans-unit id="5743050350352753869" datatype="html"> | 7672 | </trans-unit> |
7192 | <source>To fix it:</source><target state="new">To fix it:</target> | 7673 | <trans-unit id="5743050350352753869" datatype="html"> |
7674 | <source>To fix it:</source> | ||
7675 | <target state="new">To fix it:</target> | ||
7193 | <context-group purpose="location"> | 7676 | <context-group purpose="location"> |
7194 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 7677 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7195 | <context context-type="linenumber">13</context> | 7678 | <context context-type="linenumber">13</context> |
7196 | </context-group> | 7679 | </context-group> |
7197 | </trans-unit><trans-unit id="1285026053775066761" datatype="html"> | 7680 | </trans-unit> |
7198 | <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> | 7681 | <trans-unit id="1285026053775066761" datatype="html"> |
7682 | <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> | ||
7683 | <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> | ||
7199 | <context-group purpose="location"> | 7684 | <context-group purpose="location"> |
7200 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 7685 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7201 | <context context-type="linenumber">15</context> | 7686 | <context context-type="linenumber">15</context> |
7202 | </context-group> | 7687 | </context-group> |
7203 | </trans-unit><trans-unit id="7014275542536964627" datatype="html"> | 7688 | </trans-unit> |
7204 | <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> | 7689 | <trans-unit id="7014275542536964627" datatype="html"> |
7690 | <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> | ||
7691 | <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> | ||
7205 | <context-group purpose="location"> | 7692 | <context-group purpose="location"> |
7206 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 7693 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7207 | <context context-type="linenumber">16,17</context> | 7694 | <context context-type="linenumber">16,17</context> |
@@ -7210,38 +7697,38 @@ Account aanmaken</target> | |||
7210 | <trans-unit id="7591870443991978948"> | 7697 | <trans-unit id="7591870443991978948"> |
7211 | <source>Last week</source> | 7698 | <source>Last week</source> |
7212 | <target>Laatste week</target> | 7699 | <target>Laatste week</target> |
7213 | 7700 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">87</context></context-group> | |
7214 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">87</context></context-group></trans-unit> | 7701 | </trans-unit> |
7215 | <trans-unit id="4981709795568846080"> | 7702 | <trans-unit id="4981709795568846080"> |
7216 | <source>Last day</source> | 7703 | <source>Last day</source> |
7217 | <target>Laatste dag</target> | 7704 | <target>Laatste dag</target> |
7218 | 7705 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">92</context></context-group> | |
7219 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">92</context></context-group></trans-unit> | 7706 | </trans-unit> |
7220 | <trans-unit id="9178360613965745088"> | 7707 | <trans-unit id="9178360613965745088"> |
7221 | <source>Last hour</source> | 7708 | <source>Last hour</source> |
7222 | <target>Laatste uur</target> | 7709 | <target>Laatste uur</target> |
7223 | 7710 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">97</context></context-group> | |
7224 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">97</context></context-group></trans-unit> | 7711 | </trans-unit> |
7225 | <trans-unit id="3164845764519833078" datatype="html"> | 7712 | <trans-unit id="3164845764519833078" datatype="html"> |
7226 | <source>debug</source> | 7713 | <source>debug</source> |
7227 | <target state="translated">debuggen</target> | 7714 | <target state="translated">debuggen</target> |
7228 | 7715 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">109</context></context-group> | |
7229 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">109</context></context-group></trans-unit> | 7716 | </trans-unit> |
7230 | <trans-unit id="4279081882680795350" datatype="html"> | 7717 | <trans-unit id="4279081882680795350" datatype="html"> |
7231 | <source>info</source> | 7718 | <source>info</source> |
7232 | <target state="translated">info</target> | 7719 | <target state="translated">info</target> |
7233 | 7720 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">113</context></context-group> | |
7234 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">113</context></context-group></trans-unit> | 7721 | </trans-unit> |
7235 | <trans-unit id="3379167598974960777" datatype="html"> | 7722 | <trans-unit id="3379167598974960777" datatype="html"> |
7236 | <source>warning</source> | 7723 | <source>warning</source> |
7237 | <target state="translated">waarschuwing</target> | 7724 | <target state="translated">waarschuwing</target> |
7238 | 7725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">117</context></context-group> | |
7239 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">117</context></context-group></trans-unit> | 7726 | </trans-unit> |
7240 | <trans-unit id="8772116786769251214" datatype="html"> | 7727 | <trans-unit id="8772116786769251214" datatype="html"> |
7241 | <source>error</source> | 7728 | <source>error</source> |
7242 | <target state="translated">fout</target> | 7729 | <target state="translated">fout</target> |
7243 | 7730 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">121</context></context-group> | |
7244 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7731 | </trans-unit> |
7245 | <trans-unit id="3422890808980876594" datatype="html"> | 7732 | <trans-unit id="3422890808980876594" datatype="html"> |
7246 | <source>Debug</source> | 7733 | <source>Debug</source> |
7247 | <target state="translated">Debuggen</target> | 7734 | <target state="translated">Debuggen</target> |
@@ -7260,24 +7747,24 @@ Account aanmaken</target> | |||
7260 | <trans-unit id="1519954996184640001"> | 7747 | <trans-unit id="1519954996184640001"> |
7261 | <source>Error</source> | 7748 | <source>Error</source> |
7262 | <target>Fout</target> | 7749 | <target>Fout</target> |
7263 | 7750 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">103</context></context-group> | |
7264 | 7751 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">18</context></context-group> | |
7265 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">103</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> | 7752 | </trans-unit> |
7266 | <trans-unit id="5076187961693950167" datatype="html"> | 7753 | <trans-unit id="5076187961693950167" datatype="html"> |
7267 | <source>Standard logs</source> | 7754 | <source>Standard logs</source> |
7268 | <target state="translated">Standaardlogboeken</target> | 7755 | <target state="translated">Standaardlogboeken</target> |
7269 | 7756 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">132</context></context-group> | |
7270 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">132</context></context-group></trans-unit> | 7757 | </trans-unit> |
7271 | <trans-unit id="4737341634746310376" datatype="html"> | 7758 | <trans-unit id="4737341634746310376" datatype="html"> |
7272 | <source>Audit logs</source> | 7759 | <source>Audit logs</source> |
7273 | <target state="translated">Nazichtlogboeken</target> | 7760 | <target state="translated">Nazichtlogboeken</target> |
7274 | 7761 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">136</context></context-group> | |
7275 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">136</context></context-group></trans-unit> | 7762 | </trans-unit> |
7276 | <trans-unit id="1886888801485703107"> | 7763 | <trans-unit id="1886888801485703107"> |
7277 | <source>User <x id="PH"/> created.</source> | 7764 | <source>User <x id="PH"/> created.</source> |
7278 | <target>Gebruiker <x id="PH"/> verwijderd.</target> | 7765 | <target>Gebruiker <x id="PH"/> verwijderd.</target> |
7279 | 7766 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">77</context></context-group> | |
7280 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-create.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 7767 | </trans-unit> |
7281 | <trans-unit id="8286337167859377104" datatype="html"> | 7768 | <trans-unit id="8286337167859377104" datatype="html"> |
7282 | <source>Create user</source> | 7769 | <source>Create user</source> |
7283 | <target state="translated">Gebruiker aanmaken</target> | 7770 | <target state="translated">Gebruiker aanmaken</target> |
@@ -7301,25 +7788,23 @@ Account aanmaken</target> | |||
7301 | <trans-unit id="149953821752893163"> | 7788 | <trans-unit id="149953821752893163"> |
7302 | <source>Update user password</source> | 7789 | <source>Update user password</source> |
7303 | <target>Update gebruikerswachtwoord</target> | 7790 | <target>Update gebruikerswachtwoord</target> |
7304 | 7791 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">53</context></context-group> | |
7305 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">53</context></context-group></trans-unit> | 7792 | </trans-unit> |
7306 | |||
7307 | |||
7308 | <trans-unit id="780323526182667308" datatype="html"> | 7793 | <trans-unit id="780323526182667308" datatype="html"> |
7309 | <source>User <x id="PH"/> updated.</source> | 7794 | <source>User <x id="PH"/> updated.</source> |
7310 | <target state="translated">Gebruiker <x id="PH"/> bijgewerkt.</target> | 7795 | <target state="translated">Gebruiker <x id="PH"/> bijgewerkt.</target> |
7311 | 7796 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">92</context></context-group> | |
7312 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">92</context></context-group></trans-unit> | 7797 | </trans-unit> |
7313 | <trans-unit id="1349763489797682899"> | 7798 | <trans-unit id="1349763489797682899"> |
7314 | <source>Update user</source> | 7799 | <source>Update user</source> |
7315 | <target>Werk gebruiker bij</target> | 7800 | <target>Werk gebruiker bij</target> |
7316 | 7801 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">111</context></context-group> | |
7317 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">111</context></context-group></trans-unit> | 7802 | </trans-unit> |
7318 | <trans-unit id="8819563010322372715"> | 7803 | <trans-unit id="8819563010322372715"> |
7319 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> | 7804 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> |
7320 | <target>Een e-mail met het verzoek om opnieuw instellen van het wachtwoord is verzonden naar <x id="PH"/>.</target> | 7805 | <target>Een e-mail met het verzoek om opnieuw instellen van het wachtwoord is verzonden naar <x id="PH"/>.</target> |
7321 | 7806 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">118</context></context-group> | |
7322 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7807 | </trans-unit> |
7323 | <trans-unit id="7483807629538115183" datatype="html"> | 7808 | <trans-unit id="7483807629538115183" datatype="html"> |
7324 | <source>Users list</source> | 7809 | <source>Users list</source> |
7325 | <target state="translated">Lijst van gebruikers</target> | 7810 | <target state="translated">Lijst van gebruikers</target> |
@@ -7333,59 +7818,63 @@ Account aanmaken</target> | |||
7333 | <trans-unit id="5552039423287890133" datatype="html"> | 7818 | <trans-unit id="5552039423287890133" datatype="html"> |
7334 | <source>Update a user</source> | 7819 | <source>Update a user</source> |
7335 | <target state="translated">Gebruiker bijwerken</target> | 7820 | <target state="translated">Gebruiker bijwerken</target> |
7336 | 7821 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context><context context-type="linenumber">45</context></context-group> | |
7337 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7822 | </trans-unit> |
7338 | <trans-unit id="8564701209009684429" datatype="html"> | 7823 | <trans-unit id="8564701209009684429" datatype="html"> |
7339 | <source>Federation</source> | 7824 | <source>Federation</source> |
7340 | <target state="translated">Federatie</target> | 7825 | <target state="translated">Federatie</target> |
7341 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</context></context-group> | 7826 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">26</context></context-group> |
7342 | </trans-unit> | 7827 | </trans-unit> |
7343 | |||
7344 | |||
7345 | <trans-unit id="3767259920053407667" datatype="html"> | 7828 | <trans-unit id="3767259920053407667" datatype="html"> |
7346 | <source>Videos will be deleted, comments will be tombstoned.</source> | 7829 | <source>Videos will be deleted, comments will be tombstoned.</source> |
7347 | <target state="translated">Videos zullen worden verwijderd, reacties als verwijderd gemarkeerd.</target> | 7830 | <target state="translated">Videos zullen worden verwijderd, reacties als verwijderd gemarkeerd.</target> |
7348 | 7831 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">82</context></context-group> | |
7349 | 7832 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">267</context></context-group> | |
7350 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">82</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">267</context></context-group></trans-unit> | 7833 | </trans-unit> |
7351 | <trans-unit id="4209525355702493436" datatype="html"> | 7834 | <trans-unit id="4209525355702493436" datatype="html"> |
7352 | <source>Ban</source> | 7835 | <source>Ban</source> |
7353 | <target state="translated">Verbannen</target> | 7836 | <target state="translated">Verbannen</target> |
7354 | 7837 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">91</context></context-group> | |
7355 | 7838 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group> | |
7356 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">91</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">274</context></context-group></trans-unit> | 7839 | </trans-unit> |
7357 | <trans-unit id="3855396975723886053" datatype="html"> | 7840 | <trans-unit id="3855396975723886053" datatype="html"> |
7358 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> | 7841 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> |
7359 | <target state="translated">De gebruiker zal zich niet meer kunnen aanmelden, maar zijn video's en commentaren blijven.</target> | 7842 | <target state="translated">De gebruiker zal zich niet meer kunnen aanmelden, maar zijn video's en commentaren blijven.</target> |
7360 | 7843 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">88</context></context-group> | |
7361 | 7844 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">272</context></context-group> | |
7362 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">88</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">272</context></context-group></trans-unit> | 7845 | </trans-unit> |
7363 | <trans-unit id="4451482225013335720"> | 7846 | <trans-unit id="4451482225013335720"> |
7364 | <source>Unban</source> | 7847 | <source>Unban</source> |
7365 | <target>Onverban</target> | 7848 | <target>Onverban</target> |
7366 | 7849 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">93</context></context-group> | |
7367 | 7850 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">172</context></context-group> | |
7368 | 7851 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">66</context></context-group> | |
7369 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">93</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">172</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">66</context></context-group></trans-unit> | 7852 | </trans-unit> |
7370 | <trans-unit id="7210277223053877333"> | 7853 | <trans-unit id="7210277223053877333"> |
7371 | <source>Set Email as Verified</source> | 7854 | <source>Set Email as Verified</source> |
7372 | <target>Zet E-mail als Geverifieerd</target> | 7855 | <target>Zet E-mail als Geverifieerd</target> |
7373 | 7856 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">100</context></context-group> | |
7374 | 7857 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">283</context></context-group> | |
7375 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">100</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">283</context></context-group></trans-unit><trans-unit id="4207916966377787111" datatype="html"> | 7858 | </trans-unit> |
7376 | <source>Created</source><target state="new">Created</target> | 7859 | <trans-unit id="4207916966377787111" datatype="html"> |
7860 | <source>Created</source> | ||
7861 | <target state="new">Created</target> | ||
7377 | <context-group purpose="location"> | 7862 | <context-group purpose="location"> |
7378 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> | 7863 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> |
7379 | <context context-type="linenumber">115</context> | 7864 | <context context-type="linenumber">115</context> |
7380 | </context-group> | 7865 | </context-group> |
7381 | </trans-unit><trans-unit id="8140268298586972139" datatype="html"> | 7866 | </trans-unit> |
7382 | <source>Daily quota</source><target state="new">Daily quota</target> | 7867 | <trans-unit id="8140268298586972139" datatype="html"> |
7868 | <source>Daily quota</source> | ||
7869 | <target state="new">Daily quota</target> | ||
7383 | <context-group purpose="location"> | 7870 | <context-group purpose="location"> |
7384 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> | 7871 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> |
7385 | <context context-type="linenumber">120</context> | 7872 | <context context-type="linenumber">120</context> |
7386 | </context-group> | 7873 | </context-group> |
7387 | </trans-unit><trans-unit id="7910076708497708162" datatype="html"> | 7874 | </trans-unit> |
7388 | <source>Last login</source><target state="new">Last login</target> | 7875 | <trans-unit id="7910076708497708162" datatype="html"> |
7876 | <source>Last login</source> | ||
7877 | <target state="new">Last login</target> | ||
7389 | <context-group purpose="location"> | 7878 | <context-group purpose="location"> |
7390 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> | 7879 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> |
7391 | <context context-type="linenumber">122</context> | 7880 | <context context-type="linenumber">122</context> |
@@ -7394,96 +7883,99 @@ Account aanmaken</target> | |||
7394 | <trans-unit id="3403978719736970622"> | 7883 | <trans-unit id="3403978719736970622"> |
7395 | <source>You cannot ban root.</source> | 7884 | <source>You cannot ban root.</source> |
7396 | <target>Je kan root niet verbannen.</target> | 7885 | <target>Je kan root niet verbannen.</target> |
7397 | 7886 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">159</context></context-group> | |
7398 | 7887 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">54</context></context-group> | |
7399 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">159</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">54</context></context-group></trans-unit> | 7888 | </trans-unit> |
7400 | <trans-unit id="4884272193574287483"> | 7889 | <trans-unit id="4884272193574287483"> |
7401 | <source>Do you really want to unban <x id="PH"/> users?</source> | 7890 | <source>Do you really want to unban <x id="PH"/> users?</source> |
7402 | <target>Wil je echt <x id="PH"/> gebruikers opnieuw toelaten?</target> | 7891 | <target>Wil je echt <x id="PH"/> gebruikers opnieuw toelaten?</target> |
7403 | 7892 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">172</context></context-group> | |
7404 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">172</context></context-group></trans-unit> | 7893 | </trans-unit> |
7405 | <trans-unit id="8712248120167780385"> | 7894 | <trans-unit id="8712248120167780385"> |
7406 | <source><x id="PH"/> users unbanned. </source> | 7895 | <source><x id="PH"/> users unbanned. </source> |
7407 | <target> | 7896 | <target> |
7408 | <x id="PH"/> gebruikers onverbannen. | 7897 | <x id="PH"/> gebruikers onverbannen. |
7409 | </target> | 7898 | </target> |
7410 | 7899 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">178</context></context-group> | |
7411 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">178</context></context-group></trans-unit> | 7900 | </trans-unit> |
7412 | <trans-unit id="5325873477837320044"> | 7901 | <trans-unit id="5325873477837320044"> |
7413 | <source>You cannot delete root.</source> | 7902 | <source>You cannot delete root.</source> |
7414 | <target>Root kan je niet verwijderen.</target> | 7903 | <target>Root kan je niet verwijderen.</target> |
7415 | 7904 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">189</context></context-group> | |
7416 | 7905 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">82</context></context-group> | |
7417 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">189</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">82</context></context-group></trans-unit> | 7906 | </trans-unit> |
7418 | <trans-unit id="4086135983283545219"> | 7907 | <trans-unit id="4086135983283545219"> |
7419 | <source>If you remove these users, you will not be able to create others with the same username!</source> | 7908 | <source>If you remove these users, you will not be able to create others with the same username!</source> |
7420 | <target>Als jij deze gebruikers verwijdert, kan je niet meer anderen maken met dezelfde gebruikersnaam!</target> | 7909 | <target>Als jij deze gebruikers verwijdert, kan je niet meer anderen maken met dezelfde gebruikersnaam!</target> |
7421 | 7910 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">194</context></context-group> | |
7422 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">194</context></context-group></trans-unit> | 7911 | </trans-unit> |
7423 | <trans-unit id="7166936623843420016"> | 7912 | <trans-unit id="7166936623843420016"> |
7424 | <source><x id="PH"/> users deleted. </source> | 7913 | <source><x id="PH"/> users deleted. </source> |
7425 | <target><x id="PH"/> gebruikers verwijderd. </target> | 7914 | <target><x id="PH"/> gebruikers verwijderd. </target> |
7426 | 7915 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">201</context></context-group> | |
7427 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">201</context></context-group></trans-unit> | 7916 | </trans-unit> |
7428 | <trans-unit id="8360664597512051242"> | 7917 | <trans-unit id="8360664597512051242"> |
7429 | <source><x id="PH"/> users email set as verified. </source> | 7918 | <source><x id="PH"/> users email set as verified. </source> |
7430 | <target> | 7919 | <target> |
7431 | <x id="PH"/> gebruikers'' gezet als geverifieerd. | 7920 | <x id="PH"/> gebruikers'' gezet als geverifieerd. |
7432 | </target> | 7921 | </target> |
7433 | 7922 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">213</context></context-group> | |
7434 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">213</context></context-group></trans-unit> | 7923 | </trans-unit> |
7435 | <trans-unit id="7390990800435887351"> | 7924 | <trans-unit id="7390990800435887351"> |
7436 | <source>Account <x id="PH"/> unmuted.</source> | 7925 | <source>Account <x id="PH"/> unmuted.</source> |
7437 | <target>Account <x id="PH"/> niet meer gedempt.</target> | 7926 | <target>Account <x id="PH"/> niet meer gedempt.</target> |
7438 | 7927 | <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> | |
7439 | 7928 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">131</context></context-group> | |
7440 | <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">131</context></context-group></trans-unit> | 7929 | </trans-unit> |
7441 | <trans-unit id="7246356397085094208"> | 7930 | <trans-unit id="7246356397085094208"> |
7442 | <source>Instance <x id="PH"/> unmuted.</source> | 7931 | <source>Instance <x id="PH"/> unmuted.</source> |
7443 | <target>Exemplaar <x id="PH"/> van PeerTube niet meer gedempt.</target> | 7932 | <target>Exemplaar <x id="PH"/> van PeerTube niet meer gedempt.</target> |
7444 | 7933 | <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> | |
7445 | 7934 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">159</context></context-group> | |
7446 | <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">159</context></context-group></trans-unit> | 7935 | </trans-unit> |
7447 | |||
7448 | <trans-unit id="5551551295632950210"> | 7936 | <trans-unit id="5551551295632950210"> |
7449 | <source>Videos history is enabled</source> | 7937 | <source>Videos history is enabled</source> |
7450 | <target>Video's geschiedenis is ingeschakeld</target> | 7938 | <target>Video's geschiedenis is ingeschakeld</target> |
7451 | 7939 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">114</context></context-group> | |
7452 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">114</context></context-group></trans-unit> | 7940 | </trans-unit> |
7453 | <trans-unit id="9136227503281311926"> | 7941 | <trans-unit id="9136227503281311926"> |
7454 | <source>Videos history is disabled</source> | 7942 | <source>Videos history is disabled</source> |
7455 | <target>Video's geschiedenis is uitgeschakeld</target> | 7943 | <target>Video's geschiedenis is uitgeschakeld</target> |
7456 | 7944 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">115</context></context-group> | |
7457 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">115</context></context-group></trans-unit> | 7945 | </trans-unit> |
7458 | <trans-unit id="8966726118414892732"> | 7946 | <trans-unit id="8966726118414892732"> |
7459 | <source>Delete videos history</source> | 7947 | <source>Delete videos history</source> |
7460 | <target>Videogeschiedenis verwijderen</target> | 7948 | <target>Videogeschiedenis verwijderen</target> |
7461 | 7949 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">127</context></context-group> | |
7462 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | 7950 | </trans-unit> |
7463 | <trans-unit id="2482543433481435105"> | 7951 | <trans-unit id="2482543433481435105"> |
7464 | <source>Are you sure you want to delete all your videos history?</source> | 7952 | <source>Are you sure you want to delete all your videos history?</source> |
7465 | <target>Weet je zeker dat je al je videogeschiedenis wil verwijderen?</target> | 7953 | <target>Weet je zeker dat je al je videogeschiedenis wil verwijderen?</target> |
7466 | 7954 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">128</context></context-group> | |
7467 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> | 7955 | </trans-unit> |
7468 | <trans-unit id="4051606152827088952"> | 7956 | <trans-unit id="4051606152827088952"> |
7469 | <source>Videos history deleted</source> | 7957 | <source>Videos history deleted</source> |
7470 | <target>Videogeschiedenis verwijderd</target> | 7958 | <target>Videogeschiedenis verwijderd</target> |
7471 | 7959 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">136</context></context-group> | |
7472 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">136</context></context-group></trans-unit><trans-unit id="1486537403020619891" datatype="html"> | 7960 | </trans-unit> |
7473 | <source>My watch history</source><target state="new">My watch history</target> | 7961 | <trans-unit id="1486537403020619891" datatype="html"> |
7962 | <source>My watch history</source> | ||
7963 | <target state="translated">Mijn kijkgeschiedenis</target> | ||
7474 | <context-group purpose="location"> | 7964 | <context-group purpose="location"> |
7475 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> | 7965 | <context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.html</context> |
7476 | <context context-type="linenumber">3</context> | 7966 | <context context-type="linenumber">3</context> |
7477 | </context-group> | 7967 | </context-group> |
7478 | </trans-unit><trans-unit id="3656932706364053858" datatype="html"> | 7968 | </trans-unit> |
7479 | <source>Track watch history</source><target state="new">Track watch history</target> | 7969 | <trans-unit id="3656932706364053858" datatype="html"> |
7480 | 7970 | <source>Track watch history</source> | |
7481 | <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> | 7971 | <target state="new">Track watch history</target> |
7972 | <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> | ||
7973 | </trans-unit> | ||
7482 | <trans-unit id="3183245287221165928"> | 7974 | <trans-unit id="3183245287221165928"> |
7483 | <source>Ownership accepted</source> | 7975 | <source>Ownership accepted</source> |
7484 | <target>Eigendom geaccepteerd</target> | 7976 | <target>Eigendom geaccepteerd</target> |
7485 | 7977 | <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> | |
7486 | <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> | 7978 | </trans-unit> |
7487 | <trans-unit id="6012072687166259654"> | 7979 | <trans-unit id="6012072687166259654"> |
7488 | <source>Please check your emails to verify your new email.</source> | 7980 | <source>Please check your emails to verify your new email.</source> |
7489 | <target>Check alstublieft je e-mails om je nieuwe e-mailadres te verifiëren.</target> | 7981 | <target>Check alstublieft je e-mails om je nieuwe e-mailadres te verifiëren.</target> |
@@ -7493,9 +7985,10 @@ Account aanmaken</target> | |||
7493 | <source>Email updated.</source> | 7985 | <source>Email updated.</source> |
7494 | <target>E-mail bijgewerkt.</target> | 7986 | <target>E-mail bijgewerkt.</target> |
7495 | <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> |
7496 | </trans-unit><trans-unit id="8553059323353586765" datatype="html"> | 7988 | </trans-unit> |
7497 | <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. | 7989 | <trans-unit id="8553059323353586765" datatype="html"> |
7498 | </source><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. | 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> |
7991 | <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. | ||
7499 | </target> | 7992 | </target> |
7500 | <context-group purpose="location"> | 7993 | <context-group purpose="location"> |
7501 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> | 7994 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html</context> |
@@ -7505,24 +7998,24 @@ Account aanmaken</target> | |||
7505 | <trans-unit id="853586874765134886"> | 7998 | <trans-unit id="853586874765134886"> |
7506 | <source>You current password is invalid.</source> | 7999 | <source>You current password is invalid.</source> |
7507 | <target>Jouw huide wachtwoord is invalide.</target> | 8000 | <target>Jouw huide wachtwoord is invalide.</target> |
7508 | 8001 | <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> | |
7509 | 8002 | <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> | |
7510 | <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> | 8003 | </trans-unit> |
7511 | <trans-unit id="6159571046971090595"> | 8004 | <trans-unit id="6159571046971090595"> |
7512 | <source>Password updated.</source> | 8005 | <source>Password updated.</source> |
7513 | <target>Wachtwoord bijgewerkt.</target> | 8006 | <target>Wachtwoord bijgewerkt.</target> |
7514 | 8007 | <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> | |
7515 | <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> | 8008 | </trans-unit> |
7516 | <trans-unit id="5179099584732142331" datatype="html"> | 8009 | <trans-unit id="5179099584732142331" datatype="html"> |
7517 | <source>Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</source> | 8010 | <source>Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</source> |
7518 | <target state="translated">Weet je zeker dat je je account wil verwijderen? Dat verwijdert al je gegevens, kanalen, video's en commentaren inbegrepen. Op andere exemplaren van PeerTube en bij andere derden opgeslagen inhoud verwijderen duurt mogelijk langer.</target> | 8011 | <target state="translated">Weet je zeker dat je je account wil verwijderen? Dat verwijdert al je gegevens, kanalen, video's en commentaren inbegrepen. Op andere exemplaren van PeerTube en bij andere derden opgeslagen inhoud verwijderen duurt mogelijk langer.</target> |
7519 | 8012 | <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">23</context></context-group> | |
7520 | <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">23</context></context-group></trans-unit> | 8013 | </trans-unit> |
7521 | <trans-unit id="6897292459203320054"> | 8014 | <trans-unit id="6897292459203320054"> |
7522 | <source>Type your username to confirm</source> | 8015 | <source>Type your username to confirm</source> |
7523 | <target>Typ je gebruikersnaam in om te bevestigen</target> | 8016 | <target>Typ je gebruikersnaam in om te bevestigen</target> |
7524 | 8017 | <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">24</context></context-group> | |
7525 | <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">24</context></context-group></trans-unit> | 8018 | </trans-unit> |
7526 | <trans-unit id="3122895472333547524" datatype="html"> | 8019 | <trans-unit id="3122895472333547524" datatype="html"> |
7527 | <source>Delete your account</source> | 8020 | <source>Delete your account</source> |
7528 | <target state="translated">Je account verwijderen</target> | 8021 | <target state="translated">Je account verwijderen</target> |
@@ -7531,19 +8024,19 @@ Account aanmaken</target> | |||
7531 | <trans-unit id="2520605306994744004"> | 8024 | <trans-unit id="2520605306994744004"> |
7532 | <source>Delete my account</source> | 8025 | <source>Delete my account</source> |
7533 | <target>Mijn account verwijderen</target> | 8026 | <target>Mijn account verwijderen</target> |
7534 | 8027 | <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">27</context></context-group> | |
7535 | <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">27</context></context-group></trans-unit> | 8028 | </trans-unit> |
7536 | <trans-unit id="3902597758945766483"> | 8029 | <trans-unit id="3902597758945766483"> |
7537 | <source>Your account is deleted.</source> | 8030 | <source>Your account is deleted.</source> |
7538 | <target>Jouw account is verwijderd.</target> | 8031 | <target>Jouw account is verwijderd.</target> |
7539 | 8032 | <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">34</context></context-group> | |
7540 | <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">34</context></context-group></trans-unit> | 8033 | </trans-unit> |
7541 | <trans-unit id="4776289814033837037"> | 8034 | <trans-unit id="4776289814033837037"> |
7542 | <source>Interface settings updated.</source> | 8035 | <source>Interface settings updated.</source> |
7543 | <target>Interface instellingen bijgewerkt.</target> | 8036 | <target>Interface instellingen bijgewerkt.</target> |
7544 | 8037 | <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> | |
7545 | 8038 | <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> | |
7546 | <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> | 8039 | </trans-unit> |
7547 | <trans-unit id="77907918814566205"> | 8040 | <trans-unit id="77907918814566205"> |
7548 | <source>New video from your subscriptions</source> | 8041 | <source>New video from your subscriptions</source> |
7549 | <target>Nieuwe video van je abonnementen</target> | 8042 | <target>Nieuwe video van je abonnementen</target> |
@@ -7613,14 +8106,18 @@ Account aanmaken</target> | |||
7613 | <source>One of your abuse reports has been accepted or rejected by moderators</source> | 8106 | <source>One of your abuse reports has been accepted or rejected by moderators</source> |
7614 | <target state="translated">Een van je misbruikaangiften is geaccepteerd of verworpen door een moderator</target> | 8107 | <target state="translated">Een van je misbruikaangiften is geaccepteerd of verworpen door een moderator</target> |
7615 | <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> | 8108 | <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> |
7616 | </trans-unit><trans-unit id="2764971902180889905" datatype="html"> | 8109 | </trans-unit> |
7617 | <source>A new PeerTube version is available</source><target state="new">A new PeerTube version is available</target> | 8110 | <trans-unit id="2764971902180889905" datatype="html"> |
8111 | <source>A new PeerTube version is available</source> | ||
8112 | <target state="new">A new PeerTube version is available</target> | ||
7618 | <context-group purpose="location"> | 8113 | <context-group purpose="location"> |
7619 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 8114 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
7620 | <context context-type="linenumber">46</context> | 8115 | <context context-type="linenumber">46</context> |
7621 | </context-group> | 8116 | </context-group> |
7622 | </trans-unit><trans-unit id="2560339336098442670" datatype="html"> | 8117 | </trans-unit> |
7623 | <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> | 8118 | <trans-unit id="2560339336098442670" datatype="html"> |
8119 | <source>One of your plugin/theme has a new available version</source> | ||
8120 | <target state="new">One of your plugin/theme has a new available version</target> | ||
7624 | <context-group purpose="location"> | 8121 | <context-group purpose="location"> |
7625 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> | 8122 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.ts</context> |
7626 | <context context-type="linenumber">47</context> | 8123 | <context context-type="linenumber">47</context> |
@@ -7629,14 +8126,16 @@ Account aanmaken</target> | |||
7629 | <trans-unit id="5095562193296630034"> | 8126 | <trans-unit id="5095562193296630034"> |
7630 | <source>Preferences saved</source> | 8127 | <source>Preferences saved</source> |
7631 | <target>Voorkeuren opgeslagen</target> | 8128 | <target>Voorkeuren opgeslagen</target> |
7632 | 8129 | <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">94</context></context-group> | |
7633 | <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">94</context></context-group></trans-unit> | 8130 | </trans-unit> |
7634 | <trans-unit id="4967231969832964676"> | 8131 | <trans-unit id="4967231969832964676"> |
7635 | <source>Profile updated.</source> | 8132 | <source>Profile updated.</source> |
7636 | <target>Profiel bijgewerkt.</target> | 8133 | <target>Profiel bijgewerkt.</target> |
7637 | 8134 | <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> | |
7638 | <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><trans-unit id="6721822899525405039" datatype="html"> | 8135 | </trans-unit> |
7639 | <source> People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source><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> | 8136 | <trans-unit id="6721822899525405039" datatype="html"> |
8137 | <source>People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source> | ||
8138 | <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> | ||
7640 | <context-group purpose="location"> | 8139 | <context-group purpose="location"> |
7641 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context> | 8140 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context> |
7642 | <context context-type="linenumber">11,13</context> | 8141 | <context context-type="linenumber">11,13</context> |
@@ -7645,74 +8144,81 @@ Account aanmaken</target> | |||
7645 | <trans-unit id="3525866160632851851"> | 8144 | <trans-unit id="3525866160632851851"> |
7646 | <source>Avatar changed.</source> | 8145 | <source>Avatar changed.</source> |
7647 | <target>Avatar verandert.</target> | 8146 | <target>Avatar verandert.</target> |
7648 | 8147 | <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> | |
7649 | 8148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">111</context></context-group> | |
7650 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">111</context></context-group></trans-unit> | 8149 | </trans-unit> |
7651 | <trans-unit id="8920809083620698740" datatype="html"> | 8150 | <trans-unit id="8920809083620698740" datatype="html"> |
7652 | <source>avatar</source> | 8151 | <source>avatar</source> |
7653 | <target state="new">avatar</target> | 8152 | <target state="new">avatar</target> |
7654 | 8153 | <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> | |
7655 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit><trans-unit id="2775050991871557896" datatype="html"> | 8154 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">118</context></context-group> |
7656 | <source>Avatar deleted.</source><target state="new">Avatar deleted.</target> | 8155 | </trans-unit> |
7657 | 8156 | <trans-unit id="2775050991871557896" datatype="html"> | |
7658 | 8157 | <source>Avatar deleted.</source> | |
7659 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> | 8158 | <target state="new">Avatar deleted.</target> |
8159 | <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> | ||
8160 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">128</context></context-group> | ||
8161 | </trans-unit> | ||
7660 | <trans-unit id="1233062525939746039"> | 8162 | <trans-unit id="1233062525939746039"> |
7661 | <source>Unknown language</source> | 8163 | <source>Unknown language</source> |
7662 | <target>Onbekende taal</target> | 8164 | <target>Onbekende taal</target> |
7663 | 8165 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">41</context></context-group> | |
7664 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">41</context></context-group></trans-unit> | 8166 | </trans-unit> |
7665 | <trans-unit id="3761504852202418603" datatype="html"> | 8167 | <trans-unit id="3761504852202418603" datatype="html"> |
7666 | <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source> | 8168 | <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source> |
7667 | <target state="translated">Te veel talen ingesteld. Schakel ze alsjeblieft allemaal in of blijf onder de 20 ingeschakelde talen.</target> | 8169 | <target state="translated">Te veel talen ingesteld. Schakel ze alsjeblieft allemaal in of blijf onder de 20 ingeschakelde talen.</target> |
7668 | 8170 | <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> | |
7669 | <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> | 8171 | </trans-unit> |
7670 | |||
7671 | <trans-unit id="3960396487495291449"> | 8172 | <trans-unit id="3960396487495291449"> |
7672 | <source>Video settings updated.</source> | 8173 | <source>Video settings updated.</source> |
7673 | <target>Video instellingen bijgewerkt.</target> | 8174 | <target>Video instellingen bijgewerkt.</target> |
7674 | 8175 | <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> | |
7675 | <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> | 8176 | </trans-unit> |
7676 | <trans-unit id="3326446048041727269" datatype="html"> | 8177 | <trans-unit id="3326446048041727269" datatype="html"> |
7677 | <source>Display/Video settings updated.</source> | 8178 | <source>Display/Video settings updated.</source> |
7678 | <target state="translated">Scherm/Video-instellingen bijgewerkt.</target> | 8179 | <target state="translated">Scherm/Video-instellingen bijgewerkt.</target> |
7679 | 8180 | <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> | |
7680 | <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> | 8181 | </trans-unit> |
7681 | <trans-unit id="1137937154872046253"> | 8182 | <trans-unit id="1137937154872046253"> |
7682 | <source>Video channel <x id="PH"/> created.</source> | 8183 | <source>Video channel <x id="PH"/> created.</source> |
7683 | <target>Videokanaal <x id="PH"/> gemaakt.</target> | 8184 | <target>Videokanaal <x id="PH"/> gemaakt.</target> |
7684 | 8185 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">66</context></context-group> | |
7685 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 8186 | </trans-unit> |
7686 | <trans-unit id="8723777130353305761"> | 8187 | <trans-unit id="8723777130353305761"> |
7687 | <source>This name already exists on this instance.</source> | 8188 | <source>This name already exists on this instance.</source> |
7688 | <target>Deze naam bestaat al op dit exemplaar van PeerTube.</target> | 8189 | <target>Deze naam bestaat al op dit exemplaar van PeerTube.</target> |
7689 | 8190 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">72</context></context-group> | |
7690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 8191 | </trans-unit> |
7691 | <trans-unit id="7589345916094713536"> | 8192 | <trans-unit id="7589345916094713536"> |
7692 | <source>Video channel <x id="PH"/> updated.</source> | 8193 | <source>Video channel <x id="PH"/> updated.</source> |
7693 | <target>Videokanaal <x id="PH"/> bijgewerkt.</target> | 8194 | <target>Videokanaal <x id="PH"/> bijgewerkt.</target> |
7694 | 8195 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">96</context></context-group> | |
7695 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">96</context></context-group></trans-unit><trans-unit id="8407755843502300957" datatype="html"> | 8196 | </trans-unit> |
7696 | <source>Banner changed.</source><target state="new">Banner changed.</target> | 8197 | <trans-unit id="8407755843502300957" datatype="html"> |
7697 | 8198 | <source>Banner changed.</source> | |
7698 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">141</context></context-group></trans-unit><trans-unit id="689638706960732906" datatype="html"> | 8199 | <target state="new">Banner changed.</target> |
7699 | <source>banner</source><target state="new">banner</target> | 8200 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">141</context></context-group> |
7700 | 8201 | </trans-unit> | |
7701 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">148</context></context-group></trans-unit><trans-unit id="3230561499965076671" datatype="html"> | 8202 | <trans-unit id="689638706960732906" datatype="html"> |
7702 | <source>Banner deleted.</source><target state="new">Banner deleted.</target> | 8203 | <source>banner</source> |
7703 | 8204 | <target state="new">banner</target> | |
7704 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">158</context></context-group></trans-unit> | 8205 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">148</context></context-group> |
7705 | 8206 | </trans-unit> | |
8207 | <trans-unit id="3230561499965076671" datatype="html"> | ||
8208 | <source>Banner deleted.</source> | ||
8209 | <target state="new">Banner deleted.</target> | ||
8210 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">158</context></context-group> | ||
8211 | </trans-unit> | ||
7706 | <trans-unit id="624066830180032195"> | 8212 | <trans-unit id="624066830180032195"> |
7707 | <source>Video channel <x id="PH"/> deleted.</source> | 8213 | <source>Video channel <x id="PH"/> deleted.</source> |
7708 | <target>Videokanaal <x id="PH"/> verwijderd.</target> | 8214 | <target>Videokanaal <x id="PH"/> verwijderd.</target> |
7709 | 8215 | <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> | |
7710 | <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> | 8216 | </trans-unit> |
7711 | <trans-unit id="6450826648284332649" datatype="html"> | 8217 | <trans-unit id="6450826648284332649" datatype="html"> |
7712 | <source>Views for the day</source> | 8218 | <source>Views for the day</source> |
7713 | <target state="translated">Aantal keer bekeken op dag</target> | 8219 | <target state="translated">Aantal keer bekeken op dag</target> |
7714 | 8220 | <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> | |
7715 | <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> | 8221 | </trans-unit> |
7716 | <trans-unit id="6059091237492573541" datatype="html"> | 8222 | <trans-unit id="6059091237492573541" datatype="html"> |
7717 | <source>Update video channel</source> | 8223 | <source>Update video channel</source> |
7718 | <target state="translated">Videokanaal bijwerken</target> | 8224 | <target state="translated">Videokanaal bijwerken</target> |
@@ -7722,26 +8228,34 @@ Account aanmaken</target> | |||
7722 | <source>Not found</source> | 8228 | <source>Not found</source> |
7723 | <target state="translated">Niet gevonden</target> | 8229 | <target state="translated">Niet gevonden</target> |
7724 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found-routing.module.ts</context><context context-type="linenumber">14</context></context-group> | 8230 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found-routing.module.ts</context><context context-type="linenumber">14</context></context-group> |
7725 | </trans-unit><trans-unit id="1009095940160473792" datatype="html"> | 8231 | </trans-unit> |
7726 | <source>URL parameter is missing in URL parameters</source><target state="new">URL parameter is missing in URL parameters</target> | 8232 | <trans-unit id="1009095940160473792" datatype="html"> |
8233 | <source>URL parameter is missing in URL parameters</source> | ||
8234 | <target state="new">URL parameter is missing in URL parameters</target> | ||
7727 | <context-group purpose="location"> | 8235 | <context-group purpose="location"> |
7728 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> | 8236 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> |
7729 | <context context-type="linenumber">25</context> | 8237 | <context context-type="linenumber">25</context> |
7730 | </context-group> | 8238 | </context-group> |
7731 | </trans-unit><trans-unit id="7553172329217243895" datatype="html"> | 8239 | </trans-unit> |
7732 | <source>Cannot access to the remote resource</source><target state="new">Cannot access to the remote resource</target> | 8240 | <trans-unit id="7553172329217243895" datatype="html"> |
8241 | <source>Cannot access to the remote resource</source> | ||
8242 | <target state="new">Cannot access to the remote resource</target> | ||
7733 | <context-group purpose="location"> | 8243 | <context-group purpose="location"> |
7734 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> | 8244 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction.component.ts</context> |
7735 | <context context-type="linenumber">48</context> | 8245 | <context context-type="linenumber">48</context> |
7736 | </context-group> | 8246 | </context-group> |
7737 | </trans-unit><trans-unit id="1636934520301910285" datatype="html"> | 8247 | </trans-unit> |
7738 | <source>Reset password</source><target state="new">Reset password</target> | 8248 | <trans-unit id="1636934520301910285" datatype="html"> |
8249 | <source>Reset password</source> | ||
8250 | <target state="new">Reset password</target> | ||
7739 | <context-group purpose="location"> | 8251 | <context-group purpose="location"> |
7740 | <context context-type="sourcefile">src/app/+reset-password/reset-password-routing.module.ts</context> | 8252 | <context context-type="sourcefile">src/app/+reset-password/reset-password-routing.module.ts</context> |
7741 | <context context-type="linenumber">11</context> | 8253 | <context context-type="linenumber">11</context> |
7742 | </context-group> | 8254 | </context-group> |
7743 | </trans-unit><trans-unit id="3851357780293085233" datatype="html"> | 8255 | </trans-unit> |
7744 | <source>Remote interaction</source><target state="new">Remote interaction</target> | 8256 | <trans-unit id="3851357780293085233" datatype="html"> |
8257 | <source>Remote interaction</source> | ||
8258 | <target state="new">Remote interaction</target> | ||
7745 | <context-group purpose="location"> | 8259 | <context-group purpose="location"> |
7746 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction-routing.module.ts</context> | 8260 | <context context-type="sourcefile">src/app/+remote-interaction/remote-interaction-routing.module.ts</context> |
7747 | <context context-type="linenumber">13</context> | 8261 | <context context-type="linenumber">13</context> |
@@ -7750,20 +8264,20 @@ Account aanmaken</target> | |||
7750 | <trans-unit id="5032453707232754344"> | 8264 | <trans-unit id="5032453707232754344"> |
7751 | <source>Playlist <x id="PH"/> created.</source> | 8265 | <source>Playlist <x id="PH"/> created.</source> |
7752 | <target>Afspeellijst <x id="PH"/> gemaakt.</target> | 8266 | <target>Afspeellijst <x id="PH"/> gemaakt.</target> |
7753 | 8267 | <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> | |
7754 | <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> | 8268 | </trans-unit> |
7755 | <trans-unit id="5674286808255988565" datatype="html"> | 8269 | <trans-unit id="5674286808255988565" datatype="html"> |
7756 | <source>Create</source> | 8270 | <source>Create</source> |
7757 | <target state="translated">Aanmaken</target> | 8271 | <target state="translated">Aanmaken</target> |
7758 | 8272 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">103</context></context-group> | |
7759 | 8273 | <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">89</context></context-group> | |
7760 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-create.component.ts</context><context context-type="linenumber">103</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">89</context></context-group></trans-unit> | 8274 | </trans-unit> |
7761 | <trans-unit id="8869957234869568361" datatype="html"> | 8275 | <trans-unit id="8869957234869568361" datatype="html"> |
7762 | <source>Update playlist</source> | 8276 | <source>Update playlist</source> |
7763 | <target state="translated">Afspeellijst bijwerken</target> | 8277 | <target state="translated">Afspeellijst bijwerken</target> |
7764 | 8278 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">66</context></context-group> | |
7765 | 8279 | <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> | |
7766 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">66</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> | 8280 | </trans-unit> |
7767 | <trans-unit id="5851560788527570644" datatype="html"> | 8281 | <trans-unit id="5851560788527570644" datatype="html"> |
7768 | <source>Notifications</source> | 8282 | <source>Notifications</source> |
7769 | <target state="translated">Meldingen</target> | 8283 | <target state="translated">Meldingen</target> |
@@ -7784,20 +8298,20 @@ Account aanmaken</target> | |||
7784 | <trans-unit id="1431617394009162547"> | 8298 | <trans-unit id="1431617394009162547"> |
7785 | <source>Playlist <x id="PH"/> updated.</source> | 8299 | <source>Playlist <x id="PH"/> updated.</source> |
7786 | <target>Afspeellijst <x id="PH"/> bijgewerkt.</target> | 8300 | <target>Afspeellijst <x id="PH"/> bijgewerkt.</target> |
7787 | 8301 | <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> | |
7788 | <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> | 8302 | </trans-unit> |
7789 | <trans-unit id="2027805873922338635"> | 8303 | <trans-unit id="2027805873922338635"> |
7790 | <source>Do you really want to delete <x id="PH"/>?</source> | 8304 | <source>Do you really want to delete <x id="PH"/>?</source> |
7791 | <target>Wil je echt <x id="PH"/> verwijderen?</target> | 8305 | <target>Wil je echt <x id="PH"/> verwijderen?</target> |
7792 | 8306 | <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> | |
7793 | 8307 | <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> | |
7794 | 8308 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">143</context></context-group> | |
7795 | <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">143</context></context-group></trans-unit> | 8309 | </trans-unit> |
7796 | <trans-unit id="4844578664427956129" datatype="html"> | 8310 | <trans-unit id="4844578664427956129" datatype="html"> |
7797 | <source>Change ownership</source> | 8311 | <source>Change ownership</source> |
7798 | <target state="translated">Eigenaarschap wijzigen</target> | 8312 | <target state="translated">Eigenaarschap wijzigen</target> |
7799 | 8313 | <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> | |
7800 | <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></trans-unit> | 8314 | </trans-unit> |
7801 | <trans-unit id="3380608219513805292"> | 8315 | <trans-unit id="3380608219513805292"> |
7802 | <source>Playlist <x id="PH"/> deleted.</source> | 8316 | <source>Playlist <x id="PH"/> deleted.</source> |
7803 | <target>Afspeellijst <x id="PH"/> verwijderd.</target> | 8317 | <target>Afspeellijst <x id="PH"/> verwijderd.</target> |
@@ -7811,18 +8325,19 @@ Account aanmaken</target> | |||
7811 | <trans-unit id="5752861278140673787" datatype="html"> | 8325 | <trans-unit id="5752861278140673787" datatype="html"> |
7812 | <source>Ownership changes</source> | 8326 | <source>Ownership changes</source> |
7813 | <target state="translated">Eigendomswijzigingen</target> | 8327 | <target state="translated">Eigendomswijzigingen</target> |
7814 | 8328 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">107</context></context-group> | |
7815 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">107</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> | 8329 | <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> |
8330 | </trans-unit> | ||
7816 | <trans-unit id="8197117721861453263"> | 8331 | <trans-unit id="8197117721861453263"> |
7817 | <source>Do you really want to delete <x id="PH"/> videos?</source> | 8332 | <source>Do you really want to delete <x id="PH"/> videos?</source> |
7818 | <target>Wil je echt <x id="PH"/> video's verwijderen?</target> | 8333 | <target>Wil je echt <x id="PH"/> video's verwijderen?</target> |
7819 | 8334 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">116</context></context-group> | |
7820 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">116</context></context-group></trans-unit> | 8335 | </trans-unit> |
7821 | <trans-unit id="2728855911908920537"> | 8336 | <trans-unit id="2728855911908920537"> |
7822 | <source><x id="PH"/> videos deleted. </source> | 8337 | <source><x id="PH"/> videos deleted. </source> |
7823 | <target><x id="PH"/> video's verwijderd. </target> | 8338 | <target><x id="PH"/> video's verwijderd. </target> |
7824 | 8339 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">133</context></context-group> | |
7825 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit> | 8340 | </trans-unit> |
7826 | <trans-unit id="2027805873922338635"> | 8341 | <trans-unit id="2027805873922338635"> |
7827 | <source>Do you really want to delete <x id="PH"/>? </source> | 8342 | <source>Do you really want to delete <x id="PH"/>? </source> |
7828 | <target>Weet je zeker dat je <x id="PH"/> wil verwijderen? </target> | 8343 | <target>Weet je zeker dat je <x id="PH"/> wil verwijderen? </target> |
@@ -7834,15 +8349,17 @@ Account aanmaken</target> | |||
7834 | <trans-unit id="2767660806989176400"> | 8349 | <trans-unit id="2767660806989176400"> |
7835 | <source>Video <x id="PH"/> deleted.</source> | 8350 | <source>Video <x id="PH"/> deleted.</source> |
7836 | <target>Video <x id="PH"/> verwijderd.</target> | 8351 | <target>Video <x id="PH"/> verwijderd.</target> |
7837 | 8352 | <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> | |
7838 | 8353 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">214</context></context-group> | |
7839 | <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/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">214</context></context-group></trans-unit> | 8354 | </trans-unit> |
7840 | <trans-unit id="6810714890760227072"> | 8355 | <trans-unit id="6810714890760227072"> |
7841 | <source>Ownership change request sent.</source> | 8356 | <source>Ownership change request sent.</source> |
7842 | <target>Eigenaarsveranderingsaanvrag gestuurd.</target> | 8357 | <target>Eigenaarsveranderingsaanvrag gestuurd.</target> |
7843 | 8358 | <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> | |
7844 | <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"> | 8359 | </trans-unit> |
7845 | <source>Sort by</source><target state="new">Sort by</target> | 8360 | <trans-unit id="7699622144571229146" datatype="html"> |
8361 | <source>Sort by</source> | ||
8362 | <target state="new">Sort by</target> | ||
7846 | <context-group purpose="location"> | 8363 | <context-group purpose="location"> |
7847 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context> | 8364 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context> |
7848 | <context context-type="linenumber">26</context> | 8365 | <context context-type="linenumber">26</context> |
@@ -7851,29 +8368,28 @@ Account aanmaken</target> | |||
7851 | <trans-unit id="3245220240937722814"> | 8368 | <trans-unit id="3245220240937722814"> |
7852 | <source>My channels</source> | 8369 | <source>My channels</source> |
7853 | <target>Mijn kanalen</target> | 8370 | <target>Mijn kanalen</target> |
7854 | 8371 | <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> | |
7855 | <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> | 8372 | </trans-unit> |
7856 | |||
7857 | <trans-unit id="7545420287297803988"> | 8373 | <trans-unit id="7545420287297803988"> |
7858 | <source>My playlists</source> | 8374 | <source>My playlists</source> |
7859 | <target>Mijn afspeellijsten</target> | 8375 | <target>Mijn afspeellijsten</target> |
7860 | 8376 | <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> | |
7861 | <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></trans-unit> | 8377 | </trans-unit> |
7862 | <trans-unit id="2527931602940887636"> | 8378 | <trans-unit id="2527931602940887636"> |
7863 | <source>My subscriptions</source> | 8379 | <source>My subscriptions</source> |
7864 | <target>Mijn abonnementen</target> | 8380 | <target>Mijn abonnementen</target> |
7865 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">4</context></context-group> | 8381 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">4</context></context-group> |
7866 | </trans-unit> | 8382 | </trans-unit> |
7867 | <trans-unit id="5177154708872200221" datatype="html"> | 8383 | <trans-unit id="5177154708872200221" datatype="html"> |
7868 | <source>You don't have any subscription yet.</source><target state="new">You don't have any subscription yet.</target> | 8384 | <source>You don't have any subscription yet.</source> |
7869 | 8385 | <target state="new">You don't have any subscription yet.</target> | |
7870 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">13</context></context-group></trans-unit> | 8386 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">13</context></context-group> |
7871 | 8387 | </trans-unit> | |
7872 | <trans-unit id="1991904494976135035" datatype="html"> | 8388 | <trans-unit id="1991904494976135035" datatype="html"> |
7873 | <source>My abuse reports</source> | 8389 | <source>My abuse reports</source> |
7874 | <target state="translated">Mijn misbruikaangiften</target> | 8390 | <target state="translated">Mijn misbruikaangiften</target> |
7875 | 8391 | <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> | |
7876 | <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> | 8392 | </trans-unit> |
7877 | <trans-unit id="5752861278140673787"> | 8393 | <trans-unit id="5752861278140673787"> |
7878 | <source>Ownership changes</source> | 8394 | <source>Ownership changes</source> |
7879 | <target>Veranderingen van eigenaar</target> | 8395 | <target>Veranderingen van eigenaar</target> |
@@ -7882,13 +8398,13 @@ Account aanmaken</target> | |||
7882 | <trans-unit id="5983006734882925930" datatype="html"> | 8398 | <trans-unit id="5983006734882925930" datatype="html"> |
7883 | <source>My video history</source> | 8399 | <source>My video history</source> |
7884 | <target state="translated">Mijn videogeschiedenis</target> | 8400 | <target state="translated">Mijn videogeschiedenis</target> |
7885 | 8401 | <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> | |
7886 | <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></trans-unit> | 8402 | </trans-unit> |
7887 | <trans-unit id="8181077408762380407" datatype="html"> | 8403 | <trans-unit id="8181077408762380407" datatype="html"> |
7888 | <source>Channels</source> | 8404 | <source>Channels</source> |
7889 | <target state="translated">Kanalen</target> | 8405 | <target state="translated">Kanalen</target> |
7890 | 8406 | <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> | |
7891 | <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></trans-unit> | 8407 | </trans-unit> |
7892 | <trans-unit id="8936704404804793618" datatype="html"> | 8408 | <trans-unit id="8936704404804793618" datatype="html"> |
7893 | <source>Videos</source> | 8409 | <source>Videos</source> |
7894 | <target state="translated">Video's</target> | 8410 | <target state="translated">Video's</target> |
@@ -7902,151 +8418,161 @@ Account aanmaken</target> | |||
7902 | <trans-unit id="7916647920967632052" datatype="html"> | 8418 | <trans-unit id="7916647920967632052" datatype="html"> |
7903 | <source>max size</source> | 8419 | <source>max size</source> |
7904 | <target state="translated">maximale grootte</target> | 8420 | <target state="translated">maximale grootte</target> |
7905 | 8421 | <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> | |
7906 | 8422 | <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> | |
7907 | <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> | 8423 | </trans-unit> |
7908 | <trans-unit id="6489275254908395777" datatype="html"> | 8424 | <trans-unit id="6489275254908395777" datatype="html"> |
7909 | <source>Maximize editor</source> | 8425 | <source>Maximize editor</source> |
7910 | <target state="translated">Bewerker maximaliseren</target> | 8426 | <target state="translated">Bewerker maximaliseren</target> |
7911 | 8427 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context><context context-type="linenumber">49</context></context-group> | |
7912 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/markdown-textarea.component.ts</context><context context-type="linenumber">49</context></context-group></trans-unit> | 8428 | </trans-unit> |
7913 | <trans-unit id="4243591013849340688" datatype="html"> | 8429 | <trans-unit id="4243591013849340688" datatype="html"> |
7914 | <source>Exit maximized editor</source> | 8430 | <source>Exit maximized editor</source> |
7915 | <target state="translated">Gemaximaliseerde bewerker verlaten</target> | 8431 | <target state="translated">Gemaximaliseerde bewerker verlaten</target> |
7916 | 8432 | <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> | |
7917 | <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> | 8433 | </trans-unit> |
7918 | <trans-unit id="6537885755702623401"> | 8434 | <trans-unit id="6537885755702623401"> |
7919 | <source>Now please check your emails to verify your account and complete signup.</source> | 8435 | <source>Now please check your emails to verify your account and complete signup.</source> |
7920 | <target>Check alstublieft nu jouw e-mails om jouw account te verifiëren en de inschrijving te voltooien.</target> | 8436 | <target>Check alstublieft nu jouw e-mails om jouw account te verifiëren en de inschrijving te voltooien.</target> |
7921 | 8437 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">129</context></context-group> | |
7922 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">129</context></context-group></trans-unit> | 8438 | </trans-unit> |
7923 | <trans-unit id="2847376451647729886"> | 8439 | <trans-unit id="2847376451647729886"> |
7924 | <source>You are now logged in as <x id="PH"/>!</source> | 8440 | <source>You are now logged in as <x id="PH"/>!</source> |
7925 | <target>Je bent nu ingelogd als <x id="PH"/>!</target> | 8441 | <target>Je bent nu ingelogd als <x id="PH"/>!</target> |
7926 | 8442 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.ts</context><context context-type="linenumber">137</context></context-group> | |
7927 | <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> | 8443 | </trans-unit> |
7928 | <trans-unit id="2687679787442328897"> | 8444 | <trans-unit id="2687679787442328897"> |
7929 | <source>An email with verification link will be sent to <x id="PH"/>.</source> | 8445 | <source>An email with verification link will be sent to <x id="PH"/>.</source> |
7930 | <target>Een e-mail met verificatielink wordt verstuurd naar <x id="PH"/>.</target> | 8446 | <target>Een e-mail met verificatielink wordt verstuurd naar <x id="PH"/>.</target> |
7931 | 8447 | <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">39</context></context-group> | |
7932 | <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">39</context></context-group></trans-unit> | 8448 | </trans-unit> |
7933 | <trans-unit id="4180693983967989981"> | 8449 | <trans-unit id="4180693983967989981"> |
7934 | <source>Unable to find user id or verification string.</source> | 8450 | <source>Unable to find user id or verification string.</source> |
7935 | <target>Niet in staat om gebruikersid of verificatiestring te vinden.</target> | 8451 | <target>Niet in staat om gebruikersid of verificatiestring te vinden.</target> |
7936 | <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> | 8452 | <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> |
7937 | <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">33</context></context-group> | 8453 | <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">33</context></context-group> |
7938 | </trans-unit> | 8454 | </trans-unit> |
7939 | |||
7940 | |||
7941 | <trans-unit id="1783173774503340906"> | 8455 | <trans-unit id="1783173774503340906"> |
7942 | <source>Subscribe to the account</source> | 8456 | <source>Subscribe to the account</source> |
7943 | <target>Abonneren op account</target> | 8457 | <target>Abonneren op account</target> |
7944 | 8458 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">71</context></context-group> | |
7945 | 8459 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">713</context></context-group> | |
7946 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">71</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">713</context></context-group></trans-unit><trans-unit id="3131904093925601441" datatype="html"> | 8460 | </trans-unit> |
7947 | <source>PLAYLISTS</source><target state="new">PLAYLISTS</target> | 8461 | <trans-unit id="3131904093925601441" datatype="html"> |
8462 | <source>PLAYLISTS</source> | ||
8463 | <target state="new">PLAYLISTS</target> | ||
7948 | <context-group purpose="location"> | 8464 | <context-group purpose="location"> |
7949 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context> | 8465 | <context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context> |
7950 | <context context-type="linenumber">77</context> | 8466 | <context context-type="linenumber">77</context> |
7951 | </context-group> | 8467 | </context-group> |
7952 | </trans-unit> | 8468 | </trans-unit> |
7953 | |||
7954 | <trans-unit id="7709367721354853232"> | 8469 | <trans-unit id="7709367721354853232"> |
7955 | <source>Focus the search bar</source> | 8470 | <source>Focus the search bar</source> |
7956 | <target>Focus de zoekbalk</target> | 8471 | <target>Focus de zoekbalk</target> |
7957 | 8472 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">270</context></context-group> | |
7958 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">270</context></context-group></trans-unit> | 8473 | </trans-unit> |
7959 | <trans-unit id="4049262826107502276"> | 8474 | <trans-unit id="4049262826107502276"> |
7960 | <source>Toggle the left menu</source> | 8475 | <source>Toggle the left menu</source> |
7961 | <target>Schakel het linker menu aan of uit</target> | 8476 | <target>Schakel het linker menu aan of uit</target> |
7962 | 8477 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">275</context></context-group> | |
7963 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">275</context></context-group></trans-unit> | 8478 | </trans-unit> |
7964 | <trans-unit id="5409372033656550095"> | 8479 | <trans-unit id="5409372033656550095"> |
7965 | <source>Go to the discover videos page</source> | 8480 | <source>Go to the discover videos page</source> |
7966 | <target>Ga naar de ontdek videos pagina</target> | 8481 | <target>Ga naar de ontdek videos pagina</target> |
7967 | 8482 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">280</context></context-group> | |
7968 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">280</context></context-group></trans-unit> | 8483 | </trans-unit> |
7969 | <trans-unit id="4278050445961255445"> | 8484 | <trans-unit id="4278050445961255445"> |
7970 | <source>Go to the trending videos page</source> | 8485 | <source>Go to the trending videos page</source> |
7971 | <target>Naar de pagina met populaire video's</target> | 8486 | <target>Naar de pagina met populaire video's</target> |
7972 | 8487 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">285</context></context-group> | |
7973 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">285</context></context-group></trans-unit> | 8488 | </trans-unit> |
7974 | <trans-unit id="3242234958443825475"> | 8489 | <trans-unit id="3242234958443825475"> |
7975 | <source>Go to the recently added videos page</source> | 8490 | <source>Go to the recently added videos page</source> |
7976 | <target>Ga naar recent toegevoegde videos pagina</target> | 8491 | <target>Ga naar recent toegevoegde videos pagina</target> |
7977 | 8492 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">290</context></context-group> | |
7978 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">290</context></context-group></trans-unit> | 8493 | </trans-unit> |
7979 | <trans-unit id="2887122197778293919"> | 8494 | <trans-unit id="2887122197778293919"> |
7980 | <source>Go to the local videos page</source> | 8495 | <source>Go to the local videos page</source> |
7981 | <target>Ga naar de locale videos pagina</target> | 8496 | <target>Ga naar de locale videos pagina</target> |
7982 | 8497 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">295</context></context-group> | |
7983 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">295</context></context-group></trans-unit> | 8498 | </trans-unit> |
7984 | <trans-unit id="8009065619559214982"> | 8499 | <trans-unit id="8009065619559214982"> |
7985 | <source>Go to the videos upload page</source> | 8500 | <source>Go to the videos upload page</source> |
7986 | <target>Ga naar de videos uploadpagina</target> | 8501 | <target>Ga naar de videos uploadpagina</target> |
7987 | 8502 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">300</context></context-group> | |
7988 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">300</context></context-group></trans-unit> | 8503 | </trans-unit> |
7989 | <trans-unit id="3779524668013120370"> | 8504 | <trans-unit id="3779524668013120370"> |
7990 | <source>Go to my subscriptions</source> | 8505 | <source>Go to my subscriptions</source> |
7991 | <target>Naar mijn abonnementen gaan</target> | 8506 | <target>Naar mijn abonnementen gaan</target> |
7992 | 8507 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">63</context></context-group> | |
7993 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">63</context></context-group></trans-unit> | 8508 | </trans-unit> |
7994 | <trans-unit id="1136469849928650779"> | 8509 | <trans-unit id="1136469849928650779"> |
7995 | <source>Go to my videos</source> | 8510 | <source>Go to my videos</source> |
7996 | <target>Ga naar mijn videos</target> | 8511 | <target>Ga naar mijn videos</target> |
7997 | 8512 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">67</context></context-group> | |
7998 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">67</context></context-group></trans-unit> | 8513 | </trans-unit> |
7999 | <trans-unit id="7836683738999600376"> | 8514 | <trans-unit id="7836683738999600376"> |
8000 | <source>Go to my imports</source> | 8515 | <source>Go to my imports</source> |
8001 | <target>Ga naar mijn imports</target> | 8516 | <target>Ga naar mijn imports</target> |
8002 | 8517 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">71</context></context-group> | |
8003 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">71</context></context-group></trans-unit> | 8518 | </trans-unit> |
8004 | <trans-unit id="7511292153332773503"> | 8519 | <trans-unit id="7511292153332773503"> |
8005 | <source>Go to my channels</source> | 8520 | <source>Go to my channels</source> |
8006 | <target>Ga naar mijn kanalen</target> | 8521 | <target>Ga naar mijn kanalen</target> |
8007 | 8522 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">75</context></context-group> | |
8008 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">75</context></context-group></trans-unit> | 8523 | </trans-unit> |
8009 | <trans-unit id="2013324644839511073" datatype="html"> | 8524 | <trans-unit id="2013324644839511073" datatype="html"> |
8010 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="error.text"/>. | 8525 | <source>Cannot retrieve OAuth Client credentials: <x id="PH" equiv-text="err.text"/>. |
8011 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> | 8526 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> |
8012 | <target state="translated">Kan OAuth Client-aanmeldinformatie niet ophalen: <x id="PH"/>. Vergewis je ervan dat je PeerTube (config/ map) juist hebt geconfigureerd, in het bijzonder het onderdeel "webserver".</target> | 8527 | <target state="translated">Kan OAuth Client-aanmeldinformatie niet ophalen: <x id="PH"/>. Vergewis je ervan dat je PeerTube (config/ map) juist hebt geconfigureerd, in het bijzonder het onderdeel "webserver".</target> |
8013 | 8528 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">98</context></context-group> | |
8014 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">98</context></context-group></trans-unit> | 8529 | </trans-unit> |
8015 | <trans-unit id="375263728166936544"> | 8530 | <trans-unit id="375263728166936544"> |
8016 | <source>You need to reconnect.</source> | 8531 | <source>You need to reconnect.</source> |
8017 | <target>Je moet opnieuw verbinden.</target> | 8532 | <target>Je moet opnieuw verbinden.</target> |
8018 | 8533 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">221</context></context-group> | |
8019 | <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> | 8534 | </trans-unit> |
8020 | <trans-unit id="2206638022166154361"> | 8535 | <trans-unit id="2206638022166154361"> |
8021 | <source>Keyboard Shortcuts:</source> | 8536 | <source>Keyboard Shortcuts:</source> |
8022 | <target>Sneltoetsen:</target> | 8537 | <target>Sneltoetsen:</target> |
8023 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/hotkeys/hotkeys.component.ts</context><context context-type="linenumber">11</context></context-group> | 8538 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/hotkeys/hotkeys.component.ts</context><context context-type="linenumber">11</context></context-group> |
8024 | </trans-unit><trans-unit id="3608407683173066091" datatype="html"> | 8539 | </trans-unit> |
8025 | <source>My history</source><target state="new">My history</target> | 8540 | <trans-unit id="3608407683173066091" datatype="html"> |
8541 | <source>My history</source> | ||
8542 | <target state="new">My history</target> | ||
8026 | <context-group purpose="location"> | 8543 | <context-group purpose="location"> |
8027 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> | 8544 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> |
8028 | <context context-type="linenumber">98</context> | 8545 | <context context-type="linenumber">98</context> |
8029 | </context-group> | 8546 | </context-group> |
8030 | </trans-unit><trans-unit id="4024404994702813072" datatype="html"> | 8547 | </trans-unit> |
8031 | <source>In my library</source><target state="new">In my library</target> | 8548 | <trans-unit id="4024404994702813072" datatype="html"> |
8549 | <source>In my library</source> | ||
8550 | <target state="new">In my library</target> | ||
8032 | <context-group purpose="location"> | 8551 | <context-group purpose="location"> |
8033 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> | 8552 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> |
8034 | <context context-type="linenumber">104</context> | 8553 | <context context-type="linenumber">104</context> |
8035 | </context-group> | 8554 | </context-group> |
8036 | </trans-unit><trans-unit id="232050922346936574" datatype="html"> | 8555 | </trans-unit> |
8037 | <source>Trending</source><target state="new">Trending</target> | 8556 | <trans-unit id="232050922346936574" datatype="html"> |
8038 | 8557 | <source>Trending</source> | |
8039 | <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"> | 8558 | <target state="new">Trending</target> |
8040 | <source>ON <x id="PH" equiv-text="config.instance.name"/></source><target state="new">ON <x id="PH" equiv-text="config.instance.name"/></target> | 8559 | <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> |
8560 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">131</context></context-group> | ||
8561 | </trans-unit> | ||
8562 | <trans-unit id="6470888608149621404" datatype="html"> | ||
8563 | <source>ON <x id="PH" equiv-text="config.instance.name"/></source> | ||
8564 | <target state="new">ON <x id="PH" equiv-text="config.instance.name"/></target> | ||
8041 | <context-group purpose="location"> | 8565 | <context-group purpose="location"> |
8042 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> | 8566 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> |
8043 | <context context-type="linenumber">150</context> | 8567 | <context context-type="linenumber">150</context> |
8044 | </context-group> | 8568 | </context-group> |
8045 | </trans-unit><trans-unit id="2821179408673282599" datatype="html"> | 8569 | </trans-unit> |
8046 | <source>Home</source><target state="new">Home</target> | 8570 | <trans-unit id="2821179408673282599" datatype="html"> |
8047 | 8571 | <source>Home</source> | |
8048 | 8572 | <target state="new">Home</target> | |
8049 | <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> | 8573 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">115</context></context-group> |
8574 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">116</context></context-group> | ||
8575 | </trans-unit> | ||
8050 | <trans-unit id="4648900870671159218"> | 8576 | <trans-unit id="4648900870671159218"> |
8051 | <source>Success</source> | 8577 | <source>Success</source> |
8052 | <target>Succes</target> | 8578 | <target>Succes</target> |
@@ -8055,104 +8581,107 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8055 | <trans-unit id="1266887509445371246"> | 8581 | <trans-unit id="1266887509445371246"> |
8056 | <source>Incorrect username or password.</source> | 8582 | <source>Incorrect username or password.</source> |
8057 | <target>Incorrecte gebruikersnaam of wachtwoord.</target> | 8583 | <target>Incorrecte gebruikersnaam of wachtwoord.</target> |
8058 | 8584 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">163</context></context-group> | |
8059 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 8585 | </trans-unit> |
8060 | <trans-unit id="6974874606619467663" datatype="html"> | 8586 | <trans-unit id="6974874606619467663" datatype="html"> |
8061 | <source>Your account is blocked.</source> | 8587 | <source>Your account is blocked.</source> |
8062 | <target state="translated">Je account is geblokkeerd.</target> | 8588 | <target state="translated">Je account is geblokkeerd.</target> |
8063 | 8589 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.ts</context><context context-type="linenumber">164</context></context-group> | |
8064 | <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> | 8590 | </trans-unit> |
8065 | <trans-unit id="7939914198003891823" datatype="html"> | 8591 | <trans-unit id="7939914198003891823" datatype="html"> |
8066 | <source>any language</source> | 8592 | <source>any language</source> |
8067 | <target state="translated">gelijk welke taal</target> | 8593 | <target state="translated">gelijk welke taal</target> |
8068 | 8594 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">266</context></context-group> | |
8069 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">266</context></context-group></trans-unit> | 8595 | </trans-unit> |
8070 | |||
8071 | <trans-unit id="5633144232269377096" datatype="html"> | 8596 | <trans-unit id="5633144232269377096" datatype="html"> |
8072 | <source>hide</source> | 8597 | <source>hide</source> |
8073 | <target state="translated">verbergen</target> | 8598 | <target state="translated">verbergen</target> |
8074 | 8599 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">301</context></context-group> | |
8075 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">301</context></context-group></trans-unit> | 8600 | </trans-unit> |
8076 | <trans-unit id="8603861867909474404" datatype="html"> | 8601 | <trans-unit id="8603861867909474404" datatype="html"> |
8077 | <source>blur</source> | 8602 | <source>blur</source> |
8078 | <target state="translated">vervagen</target> | 8603 | <target state="translated">vervagen</target> |
8079 | 8604 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">305</context></context-group> | |
8080 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">305</context></context-group></trans-unit> | 8605 | </trans-unit> |
8081 | <trans-unit id="4534458451100881847" datatype="html"> | 8606 | <trans-unit id="4534458451100881847" datatype="html"> |
8082 | <source>display</source> | 8607 | <source>display</source> |
8083 | <target state="translated">weergeven</target> | 8608 | <target state="translated">weergeven</target> |
8084 | 8609 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">309</context></context-group> | |
8085 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">309</context></context-group></trans-unit> | 8610 | </trans-unit> |
8086 | <trans-unit id="4467323362722952678" datatype="html"> | 8611 | <trans-unit id="4467323362722952678" datatype="html"> |
8087 | <source>Unknown</source> | 8612 | <source>Unknown</source> |
8088 | <target state="translated">Niet gekend</target> | 8613 | <target state="translated">Niet gekend</target> |
8089 | 8614 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">196</context></context-group> | |
8090 | <context-group purpose="location"><context context-type="sourcefile">src/app/menu/menu.component.ts</context><context context-type="linenumber">196</context></context-group></trans-unit> | 8615 | </trans-unit> |
8091 | <trans-unit id="8781423666414310853"> | 8616 | <trans-unit id="8781423666414310853"> |
8092 | <source>Your password has been successfully reset!</source> | 8617 | <source>Your password has been successfully reset!</source> |
8093 | <target>Jouw wachtwoord is succesvol gereset!</target> | 8618 | <target>Jouw wachtwoord is succesvol gereset!</target> |
8094 | <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> | 8619 | <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> |
8095 | </trans-unit> | 8620 | </trans-unit> |
8096 | |||
8097 | <trans-unit id="6048892649018070225"> | 8621 | <trans-unit id="6048892649018070225"> |
8098 | <source>Today</source> | 8622 | <source>Today</source> |
8099 | <target>Vandaag</target> | 8623 | <target>Vandaag</target> |
8100 | 8624 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">41</context></context-group> | |
8101 | 8625 | <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> | |
8102 | 8626 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">123</context></context-group> | |
8103 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">41</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">123</context></context-group></trans-unit> | 8627 | </trans-unit> |
8104 | <trans-unit id="4498682414491138092" datatype="html"> | 8628 | <trans-unit id="4498682414491138092" datatype="html"> |
8105 | <source>Yesterday</source> | 8629 | <source>Yesterday</source> |
8106 | <target state="translated">Gisteren</target> | 8630 | <target state="translated">Gisteren</target> |
8107 | 8631 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">124</context></context-group> | |
8108 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 8632 | </trans-unit> |
8109 | <trans-unit id="5073473933031004097" datatype="html"> | 8633 | <trans-unit id="5073473933031004097" datatype="html"> |
8110 | <source>This week</source> | 8634 | <source>This week</source> |
8111 | <target state="translated">Deze week</target> | 8635 | <target state="translated">Deze week</target> |
8112 | 8636 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">125</context></context-group> | |
8113 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> | 8637 | </trans-unit> |
8114 | <trans-unit id="842657237693374355" datatype="html"> | 8638 | <trans-unit id="842657237693374355" datatype="html"> |
8115 | <source>This month</source> | 8639 | <source>This month</source> |
8116 | <target state="translated">Deze maand</target> | 8640 | <target state="translated">Deze maand</target> |
8117 | 8641 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">126</context></context-group> | |
8118 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 8642 | </trans-unit> |
8119 | <trans-unit id="4463380307954693363" datatype="html"> | 8643 | <trans-unit id="4463380307954693363" datatype="html"> |
8120 | <source>Last month</source> | 8644 | <source>Last month</source> |
8121 | <target state="translated">Vorige maand</target> | 8645 | <target state="translated">Vorige maand</target> |
8122 | 8646 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">127</context></context-group> | |
8123 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | 8647 | </trans-unit> |
8124 | <trans-unit id="7473676707373218484" datatype="html"> | 8648 | <trans-unit id="7473676707373218484" datatype="html"> |
8125 | <source>Older</source> | 8649 | <source>Older</source> |
8126 | <target state="translated">Ouder</target> | 8650 | <target state="translated">Ouder</target> |
8127 | 8651 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">128</context></context-group> | |
8128 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> | 8652 | </trans-unit> |
8129 | <trans-unit id="5036991421517255667" datatype="html"> | 8653 | <trans-unit id="5036991421517255667" datatype="html"> |
8130 | <source>Cannot load more videos. Try again later.</source> | 8654 | <source>Cannot load more videos. Try again later.</source> |
8131 | <target state="translated">Meer video's laden niet mogelijk. Probeer het later opnieuw.</target> | 8655 | <target state="translated">Meer video's laden niet mogelijk. Probeer het later opnieuw.</target> |
8132 | 8656 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">225</context></context-group> | |
8133 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">225</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">127</context></context-group></trans-unit> | 8657 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">127</context></context-group> |
8658 | </trans-unit> | ||
8134 | <trans-unit id="4873149362496451858"> | 8659 | <trans-unit id="4873149362496451858"> |
8135 | <source>Last 7 days</source> | 8660 | <source>Last 7 days</source> |
8136 | <target>Laatste 7 dagen </target> | 8661 | <target>Laatste 7 dagen </target> |
8137 | 8662 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">45</context></context-group> | |
8138 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 8663 | </trans-unit> |
8139 | <trans-unit id="2949150997160654358"> | 8664 | <trans-unit id="2949150997160654358"> |
8140 | <source>Last 30 days</source> | 8665 | <source>Last 30 days</source> |
8141 | <target>Laatste 30 dagen</target> | 8666 | <target>Laatste 30 dagen</target> |
8142 | 8667 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">49</context></context-group> | |
8143 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">49</context></context-group></trans-unit> | 8668 | </trans-unit> |
8144 | <trans-unit id="5328600704510694984"> | 8669 | <trans-unit id="5328600704510694984"> |
8145 | <source>Last 365 days</source> | 8670 | <source>Last 365 days</source> |
8146 | <target>Laatste 365 dagen</target> | 8671 | <target>Laatste 365 dagen</target> |
8147 | 8672 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">53</context></context-group> | |
8148 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">53</context></context-group></trans-unit><trans-unit id="2392481201920342009" datatype="html"> | 8673 | </trans-unit> |
8149 | <source>VOD videos</source><target state="new">VOD videos</target> | 8674 | <trans-unit id="2392481201920342009" datatype="html"> |
8675 | <source>VOD videos</source> | ||
8676 | <target state="new">VOD videos</target> | ||
8150 | <context-group purpose="location"> | 8677 | <context-group purpose="location"> |
8151 | <context context-type="sourcefile">src/app/+search/search-filters.component.ts</context> | 8678 | <context context-type="sourcefile">src/app/+search/search-filters.component.ts</context> |
8152 | <context context-type="linenumber">60</context> | 8679 | <context context-type="linenumber">60</context> |
8153 | </context-group> | 8680 | </context-group> |
8154 | </trans-unit><trans-unit id="2180217594100853008" datatype="html"> | 8681 | </trans-unit> |
8155 | <source>Live videos</source><target state="new">Live videos</target> | 8682 | <trans-unit id="2180217594100853008" datatype="html"> |
8683 | <source>Live videos</source> | ||
8684 | <target state="new">Live videos</target> | ||
8156 | <context-group purpose="location"> | 8685 | <context-group purpose="location"> |
8157 | <context context-type="sourcefile">src/app/+search/search-filters.component.ts</context> | 8686 | <context context-type="sourcefile">src/app/+search/search-filters.component.ts</context> |
8158 | <context context-type="linenumber">64</context> | 8687 | <context context-type="linenumber">64</context> |
@@ -8161,53 +8690,59 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8161 | <trans-unit id="8487565500496466433"> | 8690 | <trans-unit id="8487565500496466433"> |
8162 | <source>Short (< 4 min)</source> | 8691 | <source>Short (< 4 min)</source> |
8163 | <target>Kort (< 4 min)</target> | 8692 | <target>Kort (< 4 min)</target> |
8164 | 8693 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">71</context></context-group> | |
8165 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">71</context></context-group></trans-unit> | 8694 | </trans-unit> |
8166 | <trans-unit id="3642535017283477339"> | 8695 | <trans-unit id="3642535017283477339"> |
8167 | <source>Medium (4-10 min)</source> | 8696 | <source>Medium (4-10 min)</source> |
8168 | <target>Middelmatig (4-10 min)</target> | 8697 | <target>Middelmatig (4-10 min)</target> |
8169 | 8698 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">75</context></context-group> | |
8170 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">75</context></context-group></trans-unit> | 8699 | </trans-unit> |
8171 | <trans-unit id="6613870447286561244"> | 8700 | <trans-unit id="6613870447286561244"> |
8172 | <source>Long (> 10 min)</source> | 8701 | <source>Long (> 10 min)</source> |
8173 | <target>Lang (> 10 min)</target> | 8702 | <target>Lang (> 10 min)</target> |
8174 | 8703 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">79</context></context-group> | |
8175 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8704 | </trans-unit> |
8176 | <trans-unit id="1787083504545967"> | 8705 | <trans-unit id="1787083504545967"> |
8177 | <source>Relevance</source> | 8706 | <source>Relevance</source> |
8178 | <target>Relevantie</target> | 8707 | <target>Relevantie</target> |
8179 | 8708 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">86</context></context-group> | |
8180 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">86</context></context-group></trans-unit> | 8709 | </trans-unit> |
8181 | <trans-unit id="7944277186358179990"> | 8710 | <trans-unit id="7944277186358179990"> |
8182 | <source>Publish date</source> | 8711 | <source>Publish date</source> |
8183 | <target>Publicatiedatum</target> | 8712 | <target>Publicatiedatum</target> |
8184 | 8713 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">90</context></context-group> | |
8185 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">90</context></context-group></trans-unit> | 8714 | </trans-unit> |
8186 | <trans-unit id="2123659921722214537"> | 8715 | <trans-unit id="2123659921722214537"> |
8187 | <source>Views</source> | 8716 | <source>Views</source> |
8188 | <target>Weergaven</target> | 8717 | <target>Weergaven</target> |
8189 | 8718 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">94</context></context-group> | |
8190 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit> | 8719 | </trans-unit> |
8191 | <trans-unit id="3208627574396957172" datatype="html"> | 8720 | <trans-unit id="3208627574396957172" datatype="html"> |
8192 | <source>Search index is unavailable. Retrying with instance results instead.</source> | 8721 | <source>Search index is unavailable. Retrying with instance results instead.</source> |
8193 | <target state="translated">Zoekindex is niet beschikbaar. Nieuwe poging met enkel resultaten uit dit exemplaar van PeerTube.</target> | 8722 | <target state="translated">Zoekindex is niet beschikbaar. Nieuwe poging met enkel resultaten uit dit exemplaar van PeerTube.</target> |
8194 | 8723 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">163</context></context-group> | |
8195 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 8724 | </trans-unit> |
8196 | <trans-unit id="307702206382241469" datatype="html"> | 8725 | <trans-unit id="307702206382241469" datatype="html"> |
8197 | <source>Search error</source> | 8726 | <source>Search error</source> |
8198 | <target state="translated">Zoekfout</target> | 8727 | <target state="translated">Zoekfout</target> |
8199 | 8728 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">164</context></context-group> | |
8200 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">164</context></context-group></trans-unit><trans-unit id="8491751845906232809" datatype="html"> | 8729 | </trans-unit> |
8201 | <source>PeerTube instance host filter is invalid</source><target state="new">PeerTube instance host filter is invalid</target> | 8730 | <trans-unit id="8491751845906232809" datatype="html"> |
8202 | 8731 | <source>PeerTube instance host filter is invalid</source> | |
8203 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">332</context></context-group></trans-unit> | 8732 | <target state="new">PeerTube instance host filter is invalid</target> |
8733 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">332</context></context-group> | ||
8734 | </trans-unit> | ||
8204 | <trans-unit id="4580988005648117665" datatype="html"> | 8735 | <trans-unit id="4580988005648117665" datatype="html"> |
8205 | <source>Search</source> | 8736 | <source>Search</source> |
8206 | <target state="translated">Zoeken</target> | 8737 | <target state="translated">Zoeken</target> |
8207 | 8738 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">15</context></context-group> | |
8208 | 8739 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">242</context></context-group> | |
8209 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">15</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">242</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">15</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">16</context></context-group></trans-unit><trans-unit id="7804724824750282316" datatype="html"> | 8740 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.ts</context><context context-type="linenumber">15</context></context-group> |
8210 | <source><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}"/></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> | 8741 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.ts</context><context context-type="linenumber">16</context></context-group> |
8742 | </trans-unit> | ||
8743 | <trans-unit id="7804724824750282316" datatype="html"> | ||
8744 | <source><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}"/></source> | ||
8745 | <target state="new"><x id="INTERPOLATION" equiv-text="{{ pagination.totalItems | myNumberFormatter }}"/> <x id="ICU" equiv-text="{pagination.totalItems, plural, =1 {result} other {results}}"/></target> | ||
8211 | <context-group purpose="location"> | 8746 | <context-group purpose="location"> |
8212 | <context context-type="sourcefile">src/app/+search/search.component.html</context> | 8747 | <context context-type="sourcefile">src/app/+search/search.component.html</context> |
8213 | <context context-type="linenumber">5</context> | 8748 | <context context-type="linenumber">5</context> |
@@ -8218,9 +8753,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8218 | <target> | 8753 | <target> |
8219 | <x id="PH"/> jaar geleden | 8754 | <x id="PH"/> jaar geleden |
8220 | </target> | 8755 | </target> |
8221 | 8756 | <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> | |
8222 | <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"> | 8757 | </trans-unit> |
8223 | <source>1 year ago</source><target state="new">1 year ago</target> | 8758 | <trans-unit id="8392321423487952834" datatype="html"> |
8759 | <source>1 year ago</source> | ||
8760 | <target state="new">1 year ago</target> | ||
8224 | <context-group purpose="location"> | 8761 | <context-group purpose="location"> |
8225 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> | 8762 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> |
8226 | <context context-type="linenumber">12</context> | 8763 | <context context-type="linenumber">12</context> |
@@ -8230,15 +8767,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8230 | <context context-type="linenumber">17</context> | 8767 | <context context-type="linenumber">17</context> |
8231 | </context-group> | 8768 | </context-group> |
8232 | </trans-unit> | 8769 | </trans-unit> |
8233 | |||
8234 | <trans-unit id="9022576335789205254"> | 8770 | <trans-unit id="9022576335789205254"> |
8235 | <source><x id="PH"/> months ago </source> | 8771 | <source><x id="PH"/> months ago </source> |
8236 | <target> | 8772 | <target> |
8237 | <x id="PH"/> maanden geleden | 8773 | <x id="PH"/> maanden geleden |
8238 | </target> | 8774 | </target> |
8239 | 8775 | <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> | |
8240 | <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"> | 8776 | </trans-unit> |
8241 | <source>1 month ago</source><target state="new">1 month ago</target> | 8777 | <trans-unit id="6874778750344205852" datatype="html"> |
8778 | <source>1 month ago</source> | ||
8779 | <target state="new">1 month ago</target> | ||
8242 | <context-group purpose="location"> | 8780 | <context-group purpose="location"> |
8243 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> | 8781 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> |
8244 | <context context-type="linenumber">19</context> | 8782 | <context context-type="linenumber">19</context> |
@@ -8248,61 +8786,63 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8248 | <context context-type="linenumber">24</context> | 8786 | <context context-type="linenumber">24</context> |
8249 | </context-group> | 8787 | </context-group> |
8250 | </trans-unit> | 8788 | </trans-unit> |
8251 | |||
8252 | <trans-unit id="6473426250245763193"> | 8789 | <trans-unit id="6473426250245763193"> |
8253 | <source><x id="PH"/> weeks ago </source> | 8790 | <source><x id="PH"/> weeks ago </source> |
8254 | <target> | 8791 | <target> |
8255 | <x id="PH"/> weken geleden | 8792 | <x id="PH"/> weken geleden |
8256 | </target> | 8793 | </target> |
8257 | 8794 | <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> | |
8258 | <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"> | 8795 | </trans-unit> |
8259 | <source>1 week ago</source><target state="new">1 week ago</target> | 8796 | <trans-unit id="6538455390369999912" datatype="html"> |
8797 | <source>1 week ago</source> | ||
8798 | <target state="new">1 week ago</target> | ||
8260 | <context-group purpose="location"> | 8799 | <context-group purpose="location"> |
8261 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> | 8800 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> |
8262 | <context context-type="linenumber">26</context> | 8801 | <context context-type="linenumber">26</context> |
8263 | </context-group> | 8802 | </context-group> |
8264 | </trans-unit> | 8803 | </trans-unit> |
8265 | |||
8266 | <trans-unit id="5186107770140555014"> | 8804 | <trans-unit id="5186107770140555014"> |
8267 | <source><x id="PH"/> days ago </source> | 8805 | <source><x id="PH"/> days ago </source> |
8268 | <target> | 8806 | <target> |
8269 | <x id="PH"/> dagen geleden | 8807 | <x id="PH"/> dagen geleden |
8270 | </target> | 8808 | </target> |
8271 | 8809 | <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> | |
8272 | <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"> | 8810 | </trans-unit> |
8273 | <source>1 day ago</source><target state="new">1 day ago</target> | 8811 | <trans-unit id="3927517496763161987" datatype="html"> |
8812 | <source>1 day ago</source> | ||
8813 | <target state="new">1 day ago</target> | ||
8274 | <context-group purpose="location"> | 8814 | <context-group purpose="location"> |
8275 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> | 8815 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> |
8276 | <context context-type="linenumber">30</context> | 8816 | <context context-type="linenumber">30</context> |
8277 | </context-group> | 8817 | </context-group> |
8278 | </trans-unit> | 8818 | </trans-unit> |
8279 | |||
8280 | <trans-unit id="6522428509564266583"> | 8819 | <trans-unit id="6522428509564266583"> |
8281 | <source><x id="PH"/> hours ago </source> | 8820 | <source><x id="PH"/> hours ago </source> |
8282 | <target> | 8821 | <target> |
8283 | <x id="PH"/> uur geleden | 8822 | <x id="PH"/> uur geleden |
8284 | </target> | 8823 | </target> |
8285 | 8824 | <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> | |
8286 | <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"> | 8825 | </trans-unit> |
8287 | <source>1 hour ago</source><target state="new">1 hour ago</target> | 8826 | <trans-unit id="6285422673271535468" datatype="html"> |
8827 | <source>1 hour ago</source> | ||
8828 | <target state="new">1 hour ago</target> | ||
8288 | <context-group purpose="location"> | 8829 | <context-group purpose="location"> |
8289 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> | 8830 | <context context-type="sourcefile">src/app/shared/shared-main/angular/from-now.pipe.ts</context> |
8290 | <context context-type="linenumber">34</context> | 8831 | <context context-type="linenumber">34</context> |
8291 | </context-group> | 8832 | </context-group> |
8292 | </trans-unit> | 8833 | </trans-unit> |
8293 | |||
8294 | <trans-unit id="8256466313580256940"> | 8834 | <trans-unit id="8256466313580256940"> |
8295 | <source><x id="PH"/> min ago </source> | 8835 | <source><x id="PH"/> min ago </source> |
8296 | <target> | 8836 | <target> |
8297 | <x id="PH"/> min geleden | 8837 | <x id="PH"/> min geleden |
8298 | </target> | 8838 | </target> |
8299 | 8839 | <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> | |
8300 | <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> | 8840 | </trans-unit> |
8301 | <trans-unit id="4733690367258997247" datatype="html"> | 8841 | <trans-unit id="4733690367258997247" datatype="html"> |
8302 | <source>just now</source> | 8842 | <source>just now</source> |
8303 | <target state="translated">zonet</target> | 8843 | <target state="translated">zonet</target> |
8304 | 8844 | <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> | |
8305 | <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> | 8845 | </trans-unit> |
8306 | <trans-unit id="2222108104954671970" datatype="html"> | 8846 | <trans-unit id="2222108104954671970" datatype="html"> |
8307 | <source><x id="PH"/> sec </source> | 8847 | <source><x id="PH"/> sec </source> |
8308 | <target state="translated"><x id="PH"/> sec </target> | 8848 | <target state="translated"><x id="PH"/> sec </target> |
@@ -8372,32 +8912,39 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8372 | <source>Signup limit is required.</source> | 8912 | <source>Signup limit is required.</source> |
8373 | <target>Inschrijflimiet is vereist.</target> | 8913 | <target>Inschrijflimiet is vereist.</target> |
8374 | <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> | 8914 | <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> |
8375 | </trans-unit><trans-unit id="5630311719329022718" datatype="html"> | 8915 | </trans-unit> |
8376 | <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> | 8916 | <trans-unit id="5630311719329022718" datatype="html"> |
8917 | <source>Signup limit must be greater than 1. Use -1 to disable it.</source> | ||
8918 | <target state="new">Signup limit must be greater than 1. Use -1 to disable it.</target> | ||
8377 | <context-group purpose="location"> | 8919 | <context-group purpose="location"> |
8378 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> | 8920 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> |
8379 | <context context-type="linenumber">47</context> | 8921 | <context context-type="linenumber">47</context> |
8380 | </context-group> | 8922 | </context-group> |
8381 | </trans-unit> | 8923 | </trans-unit> |
8382 | |||
8383 | <trans-unit id="2555843408410000965"> | 8924 | <trans-unit id="2555843408410000965"> |
8384 | <source>Signup limit must be a number.</source> | 8925 | <source>Signup limit must be a number.</source> |
8385 | <target>Inschrijflimiet moet een nummer zijn.</target> | 8926 | <target>Inschrijflimiet moet een nummer zijn.</target> |
8386 | <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> | 8927 | <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> |
8387 | </trans-unit><trans-unit id="346485141381099383" datatype="html"> | 8928 | </trans-unit> |
8388 | <source>Signup minimum age is required.</source><target state="new">Signup minimum age is required.</target> | 8929 | <trans-unit id="346485141381099383" datatype="html"> |
8930 | <source>Signup minimum age is required.</source> | ||
8931 | <target state="new">Signup minimum age is required.</target> | ||
8389 | <context-group purpose="location"> | 8932 | <context-group purpose="location"> |
8390 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> | 8933 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> |
8391 | <context context-type="linenumber">55</context> | 8934 | <context context-type="linenumber">55</context> |
8392 | </context-group> | 8935 | </context-group> |
8393 | </trans-unit><trans-unit id="4230672031132838318" datatype="html"> | 8936 | </trans-unit> |
8394 | <source>Signup minimum age must be greater than 1.</source><target state="new">Signup minimum age must be greater than 1.</target> | 8937 | <trans-unit id="4230672031132838318" datatype="html"> |
8938 | <source>Signup minimum age must be greater than 1.</source> | ||
8939 | <target state="new">Signup minimum age must be greater than 1.</target> | ||
8395 | <context-group purpose="location"> | 8940 | <context-group purpose="location"> |
8396 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> | 8941 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> |
8397 | <context context-type="linenumber">56</context> | 8942 | <context context-type="linenumber">56</context> |
8398 | </context-group> | 8943 | </context-group> |
8399 | </trans-unit><trans-unit id="5929230001329133993" datatype="html"> | 8944 | </trans-unit> |
8400 | <source>Signup minimum age must be a number.</source><target state="new">Signup minimum age must be a number.</target> | 8945 | <trans-unit id="5929230001329133993" datatype="html"> |
8946 | <source>Signup minimum age must be a number.</source> | ||
8947 | <target state="new">Signup minimum age must be a number.</target> | ||
8401 | <context-group purpose="location"> | 8948 | <context-group purpose="location"> |
8402 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> | 8949 | <context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context> |
8403 | <context context-type="linenumber">57</context> | 8950 | <context context-type="linenumber">57</context> |
@@ -8406,75 +8953,95 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8406 | <trans-unit id="240096858386658337"> | 8953 | <trans-unit id="240096858386658337"> |
8407 | <source>Admin email is required.</source> | 8954 | <source>Admin email is required.</source> |
8408 | <target>Administrator e-mail is vereist.</target> | 8955 | <target>Administrator e-mail is vereist.</target> |
8409 | 8956 | <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> | |
8410 | <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> | 8957 | </trans-unit> |
8411 | <trans-unit id="4392533896009432078"> | 8958 | <trans-unit id="4392533896009432078"> |
8412 | <source>Admin email must be valid.</source> | 8959 | <source>Admin email must be valid.</source> |
8413 | <target>Administrator e-mail moet valide zijn.</target> | 8960 | <target>Administrator e-mail moet valide zijn.</target> |
8414 | 8961 | <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> | |
8415 | <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> | 8962 | </trans-unit> |
8416 | <trans-unit id="6172217783476989430"> | 8963 | <trans-unit id="6172217783476989430"> |
8417 | <source>Transcoding threads is required.</source> | 8964 | <source>Transcoding threads is required.</source> |
8418 | <target>Transcoding threads zijn vereist.</target> | 8965 | <target>Transcoding threads zijn vereist.</target> |
8419 | 8966 | <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> | |
8420 | <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> | 8967 | </trans-unit> |
8421 | <trans-unit id="5320424292625586941"> | 8968 | <trans-unit id="5320424292625586941"> |
8422 | <source>Transcoding threads must be greater or equal to 0.</source> | 8969 | <source>Transcoding threads must be greater or equal to 0.</source> |
8423 | <target>Transcoding threads moeten groter of gelijk zijn aan 0.</target> | 8970 | <target>Transcoding threads moeten groter of gelijk zijn aan 0.</target> |
8424 | 8971 | <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> | |
8425 | <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><trans-unit id="8185661254949728718" datatype="html"> | 8972 | </trans-unit> |
8426 | <source>Max live duration is required.</source><target state="new">Max live duration is required.</target> | 8973 | <trans-unit id="8185661254949728718" datatype="html"> |
8427 | 8974 | <source>Max live duration is required.</source> | |
8428 | <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><trans-unit id="8892863662898651766" datatype="html"> | 8975 | <target state="new">Max live duration is required.</target> |
8429 | <source>Max live duration should be greater or equal to -1.</source><target state="new">Max live duration should be greater or equal to -1.</target> | 8976 | <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> |
8430 | 8977 | </trans-unit> | |
8431 | <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><trans-unit id="8196240396863235661" datatype="html"> | 8978 | <trans-unit id="8892863662898651766" datatype="html"> |
8432 | <source>Max instance lives is required.</source><target state="new">Max instance lives is required.</target> | 8979 | <source>Max live duration should be greater or equal to -1.</source> |
8433 | 8980 | <target state="new">Max live duration should be greater or equal to -1.</target> | |
8434 | <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><trans-unit id="913683464711184925" datatype="html"> | 8981 | <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> |
8435 | <source>Max instance lives should be greater or equal to -1.</source><target state="new">Max instance lives should be greater or equal to -1.</target> | 8982 | </trans-unit> |
8436 | 8983 | <trans-unit id="8196240396863235661" datatype="html"> | |
8437 | <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><trans-unit id="5614457087254770778" datatype="html"> | 8984 | <source>Max instance lives is required.</source> |
8438 | <source>Max user lives is required.</source><target state="new">Max user lives is required.</target> | 8985 | <target state="new">Max instance lives is required.</target> |
8439 | 8986 | <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> | |
8440 | <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><trans-unit id="2779726697233311712" datatype="html"> | 8987 | </trans-unit> |
8441 | <source>Max user lives should be greater or equal to -1.</source><target state="new">Max user lives should be greater or equal to -1.</target> | 8988 | <trans-unit id="913683464711184925" datatype="html"> |
8442 | 8989 | <source>Max instance lives should be greater or equal to -1.</source> | |
8443 | <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="5832601947705094130" datatype="html"> | 8990 | <target state="new">Max instance lives should be greater or equal to -1.</target> |
8444 | <source>Concurrency is required.</source><target state="new">Concurrency is required.</target> | 8991 | <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> |
8445 | 8992 | </trans-unit> | |
8446 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">104</context></context-group></trans-unit><trans-unit id="4751566092251132371" datatype="html"> | 8993 | <trans-unit id="5614457087254770778" datatype="html"> |
8447 | <source>Concurrency should be greater or equal to 1.</source><target state="new">Concurrency should be greater or equal to 1.</target> | 8994 | <source>Max user lives is required.</source> |
8448 | 8995 | <target state="new">Max user lives is required.</target> | |
8449 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">105</context></context-group></trans-unit> | 8996 | <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> |
8997 | </trans-unit> | ||
8998 | <trans-unit id="2779726697233311712" datatype="html"> | ||
8999 | <source>Max user lives should be greater or equal to -1.</source> | ||
9000 | <target state="new">Max user lives should be greater or equal to -1.</target> | ||
9001 | <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> | ||
9002 | </trans-unit> | ||
9003 | <trans-unit id="5832601947705094130" datatype="html"> | ||
9004 | <source>Concurrency is required.</source> | ||
9005 | <target state="new">Concurrency is required.</target> | ||
9006 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">104</context></context-group> | ||
9007 | </trans-unit> | ||
9008 | <trans-unit id="4751566092251132371" datatype="html"> | ||
9009 | <source>Concurrency should be greater or equal to 1.</source> | ||
9010 | <target state="new">Concurrency should be greater or equal to 1.</target> | ||
9011 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">105</context></context-group> | ||
9012 | </trans-unit> | ||
8450 | <trans-unit id="75589896034107743" datatype="html"> | 9013 | <trans-unit id="75589896034107743" datatype="html"> |
8451 | <source>Index URL should be a URL</source> | 9014 | <source>Index URL should be a URL</source> |
8452 | <target state="translated">Index-URL moet een URL zijn</target> | 9015 | <target state="translated">Index-URL moet een URL zijn</target> |
8453 | 9016 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">112</context></context-group> | |
8454 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">112</context></context-group></trans-unit> | 9017 | </trans-unit> |
8455 | <trans-unit id="3964961007325702684" datatype="html"> | 9018 | <trans-unit id="3964961007325702684" datatype="html"> |
8456 | <source>Search index URL should be a URL</source> | 9019 | <source>Search index URL should be a URL</source> |
8457 | <target state="translated">Zoekindex-URL moet een URL zijn</target> | 9020 | <target state="translated">Zoekindex-URL moet een URL zijn</target> |
8458 | 9021 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">119</context></context-group> | |
8459 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/form-validators/custom-config-validators.ts</context><context context-type="linenumber">119</context></context-group></trans-unit> | 9022 | </trans-unit> |
8460 | <trans-unit id="8602814243662345124"> | 9023 | <trans-unit id="8602814243662345124"> |
8461 | <source>Email is required.</source> | 9024 | <source>Email is required.</source> |
8462 | <target>E-mail is vereist.</target> | 9025 | <target>E-mail is vereist.</target> |
8463 | 9026 | <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> | |
8464 | 9027 | <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> | |
8465 | <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> | 9028 | </trans-unit> |
8466 | <trans-unit id="4591482207344282590"> | 9029 | <trans-unit id="4591482207344282590"> |
8467 | <source>Email must be valid.</source> | 9030 | <source>Email must be valid.</source> |
8468 | <target>E-mail moet valide zijn.</target> | 9031 | <target>E-mail moet valide zijn.</target> |
8469 | 9032 | <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> | |
8470 | 9033 | <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> | |
8471 | <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><trans-unit id="544279804045883862" datatype="html"> | 9034 | </trans-unit> |
8472 | <source>Handle is required.</source><target state="new">Handle is required.</target> | 9035 | <trans-unit id="544279804045883862" datatype="html"> |
8473 | 9036 | <source>Handle is required.</source> | |
8474 | <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"> | 9037 | <target state="new">Handle is required.</target> |
8475 | <source>Handle must be valid (eg. chocobozzz@example.com).</source><target state="new">Handle must be valid (eg. chocobozzz@example.com).</target> | 9038 | <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> |
8476 | 9039 | </trans-unit> | |
8477 | <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> | 9040 | <trans-unit id="2805037637775107078" datatype="html"> |
9041 | <source>Handle must be valid (eg. chocobozzz@example.com).</source> | ||
9042 | <target state="new">Handle must be valid (eg. chocobozzz@example.com).</target> | ||
9043 | <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> | ||
9044 | </trans-unit> | ||
8478 | <trans-unit id="4968369344159400023"> | 9045 | <trans-unit id="4968369344159400023"> |
8479 | <source>Your name is required.</source> | 9046 | <source>Your name is required.</source> |
8480 | <target>Je naam is verplicht.</target> | 9047 | <target>Je naam is verplicht.</target> |
@@ -8523,16 +9090,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8523 | <trans-unit id="3868123820758341861"> | 9090 | <trans-unit id="3868123820758341861"> |
8524 | <source>Username is required.</source> | 9091 | <source>Username is required.</source> |
8525 | <target>Gebruikersnaam is vereist.</target> | 9092 | <target>Gebruikersnaam is vereist.</target> |
8526 | 9093 | <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> | |
8527 | 9094 | <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> | |
8528 | <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> | 9095 | </trans-unit> |
8529 | <trans-unit id="3577237269587081090"> | 9096 | <trans-unit id="3577237269587081090"> |
8530 | <source>Password is required.</source> | 9097 | <source>Password is required.</source> |
8531 | <target>Wachtwoord is vereist.</target> | 9098 | <target>Wachtwoord is vereist.</target> |
8532 | 9099 | <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> | |
8533 | 9100 | <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> | |
8534 | 9101 | <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> | |
8535 | <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> | 9102 | </trans-unit> |
8536 | <trans-unit id="3152303769378345477"> | 9103 | <trans-unit id="3152303769378345477"> |
8537 | <source>Confirmation of the password is required.</source> | 9104 | <source>Confirmation of the password is required.</source> |
8538 | <target>Bevestiging van het wachtwoord is vereist.</target> | 9105 | <target>Bevestiging van het wachtwoord is vereist.</target> |
@@ -8541,129 +9108,129 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8541 | <trans-unit id="4786141633412279939"> | 9108 | <trans-unit id="4786141633412279939"> |
8542 | <source>Username must be at least 1 character long.</source> | 9109 | <source>Username must be at least 1 character long.</source> |
8543 | <target>Gebruikersnaam moet minimaal 1 teken lang zijn.</target> | 9110 | <target>Gebruikersnaam moet minimaal 1 teken lang zijn.</target> |
8544 | 9111 | <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> | |
8545 | <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> | 9112 | </trans-unit> |
8546 | <trans-unit id="1019755749203839300"> | 9113 | <trans-unit id="1019755749203839300"> |
8547 | <source>Username cannot be more than 50 characters long.</source> | 9114 | <source>Username cannot be more than 50 characters long.</source> |
8548 | <target>Gebruikersnaam mag niet langer dan 50 tekens zijn.</target> | 9115 | <target>Gebruikersnaam mag niet langer dan 50 tekens zijn.</target> |
8549 | 9116 | <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> | |
8550 | <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> | 9117 | </trans-unit> |
8551 | <trans-unit id="5621067256208426608"> | 9118 | <trans-unit id="5621067256208426608"> |
8552 | <source>Username should be lowercase alphanumeric; dots and underscores are allowed.</source> | 9119 | <source>Username should be lowercase alphanumeric; dots and underscores are allowed.</source> |
8553 | <target>Gebruikersnaam moet alfanumeriek zijn in kleine letters; stippen en underscores zijn toegestaan.</target> | 9120 | <target>Gebruikersnaam moet alfanumeriek zijn in kleine letters; stippen en underscores zijn toegestaan.</target> |
8554 | 9121 | <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> | |
8555 | <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> | 9122 | </trans-unit> |
8556 | <trans-unit id="6288154707582132676" datatype="html"> | 9123 | <trans-unit id="6288154707582132676" datatype="html"> |
8557 | <source>Channel name is required.</source> | 9124 | <source>Channel name is required.</source> |
8558 | <target state="translated">Kanaalnaam is vereist.</target> | 9125 | <target state="translated">Kanaalnaam is vereist.</target> |
8559 | 9126 | <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> | |
8560 | <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> | 9127 | </trans-unit> |
8561 | <trans-unit id="8178814467139959283" datatype="html"> | 9128 | <trans-unit id="8178814467139959283" datatype="html"> |
8562 | <source>Channel name must be at least 1 character long.</source> | 9129 | <source>Channel name must be at least 1 character long.</source> |
8563 | <target state="translated">Kanaalnaam moet minstens 1 teken lang zijn.</target> | 9130 | <target state="translated">Kanaalnaam moet minstens 1 teken lang zijn.</target> |
8564 | 9131 | <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> | |
8565 | <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> | 9132 | </trans-unit> |
8566 | <trans-unit id="8602785819772117007" datatype="html"> | 9133 | <trans-unit id="8602785819772117007" datatype="html"> |
8567 | <source>Channel name cannot be more than 50 characters long.</source> | 9134 | <source>Channel name cannot be more than 50 characters long.</source> |
8568 | <target state="translated">Kanaalnaam mag niet langer dan 50 tekens zijn.</target> | 9135 | <target state="translated">Kanaalnaam mag niet langer dan 50 tekens zijn.</target> |
8569 | 9136 | <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> | |
8570 | <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> | 9137 | </trans-unit> |
8571 | <trans-unit id="3419415520566928243" datatype="html"> | 9138 | <trans-unit id="3419415520566928243" datatype="html"> |
8572 | <source>Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores.</source> | 9139 | <source>Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores.</source> |
8573 | <target state="translated">De kanaalnaam moet kleine letters zijn en mag alleen alfanumerieke tekens, punten en onderstrepingstekens bevatten.</target> | 9140 | <target state="translated">De kanaalnaam moet kleine letters zijn en mag alleen alfanumerieke tekens, punten en onderstrepingstekens bevatten.</target> |
8574 | 9141 | <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> | |
8575 | <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> | 9142 | </trans-unit> |
8576 | <trans-unit id="525871656034789056"> | 9143 | <trans-unit id="525871656034789056"> |
8577 | <source>Password must be at least 6 characters long.</source> | 9144 | <source>Password must be at least 6 characters long.</source> |
8578 | <target>Wachtwoord moet minstens 6 karakters lang zijn.</target> | 9145 | <target>Wachtwoord moet minstens 6 karakters lang zijn.</target> |
8579 | 9146 | <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> | |
8580 | 9147 | <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> | |
8581 | <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> | 9148 | </trans-unit> |
8582 | <trans-unit id="1099684476181448167"> | 9149 | <trans-unit id="1099684476181448167"> |
8583 | <source>Password cannot be more than 255 characters long.</source> | 9150 | <source>Password cannot be more than 255 characters long.</source> |
8584 | <target>Wachtwoord mag niet langer dan 255 tekens zijn.</target> | 9151 | <target>Wachtwoord mag niet langer dan 255 tekens zijn.</target> |
8585 | 9152 | <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> | |
8586 | 9153 | <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> | |
8587 | <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> | 9154 | </trans-unit> |
8588 | <trans-unit id="3392630942539073768"> | 9155 | <trans-unit id="3392630942539073768"> |
8589 | <source>The new password and the confirmed password do not correspond.</source> | 9156 | <source>The new password and the confirmed password do not correspond.</source> |
8590 | <target>Het nieuwe wachtwoord en het bevestigde wachtwoord zijn niet hetzelfde.</target> | 9157 | <target>Het nieuwe wachtwoord en het bevestigde wachtwoord zijn niet hetzelfde.</target> |
8591 | 9158 | <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> | |
8592 | <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> | 9159 | </trans-unit> |
8593 | <trans-unit id="2027337371129904473"> | 9160 | <trans-unit id="2027337371129904473"> |
8594 | <source>Video quota is required.</source> | 9161 | <source>Video quota is required.</source> |
8595 | <target>Videoquotum is vereist.</target> | 9162 | <target>Videoquotum is vereist.</target> |
8596 | 9163 | <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> | |
8597 | <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> | 9164 | </trans-unit> |
8598 | <trans-unit id="267386529333143660"> | 9165 | <trans-unit id="267386529333143660"> |
8599 | <source>Quota must be greater than -1.</source> | 9166 | <source>Quota must be greater than -1.</source> |
8600 | <target>Quotum moet groter zijn dan -1.</target> | 9167 | <target>Quotum moet groter zijn dan -1.</target> |
8601 | 9168 | <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> | |
8602 | <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> | 9169 | </trans-unit> |
8603 | <trans-unit id="1220179061234048936"> | 9170 | <trans-unit id="1220179061234048936"> |
8604 | <source>Daily upload limit is required.</source> | 9171 | <source>Daily upload limit is required.</source> |
8605 | <target>Dagelijks uploadlimiet is vereist.</target> | 9172 | <target>Dagelijks uploadlimiet is vereist.</target> |
8606 | 9173 | <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> | |
8607 | <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> | 9174 | </trans-unit> |
8608 | <trans-unit id="8959404382357999234"> | 9175 | <trans-unit id="8959404382357999234"> |
8609 | <source>Daily upload limit must be greater than -1.</source> | 9176 | <source>Daily upload limit must be greater than -1.</source> |
8610 | <target>Dagelijks uploadlimiet moet groter zijn dan -1.</target> | 9177 | <target>Dagelijks uploadlimiet moet groter zijn dan -1.</target> |
8611 | 9178 | <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> | |
8612 | <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> | 9179 | </trans-unit> |
8613 | <trans-unit id="4796798537475457493"> | 9180 | <trans-unit id="4796798537475457493"> |
8614 | <source>User role is required.</source> | 9181 | <source>User role is required.</source> |
8615 | <target>Gebruikersrol is vereist.</target> | 9182 | <target>Gebruikersrol is vereist.</target> |
8616 | 9183 | <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> | |
8617 | <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> | 9184 | </trans-unit> |
8618 | <trans-unit id="2761226139624435788"> | 9185 | <trans-unit id="2761226139624435788"> |
8619 | <source>Description must be at least 3 characters long.</source> | 9186 | <source>Description must be at least 3 characters long.</source> |
8620 | <target>Beschrijvingen moeten minstens 3 karakters lang zijn.</target> | 9187 | <target>Beschrijvingen moeten minstens 3 karakters lang zijn.</target> |
8621 | 9188 | <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> | |
8622 | 9189 | <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> | |
8623 | 9190 | <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> | |
8624 | <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> | 9191 | </trans-unit> |
8625 | <trans-unit id="4717982586356605243"> | 9192 | <trans-unit id="4717982586356605243"> |
8626 | <source>Description cannot be more than 1000 characters long.</source> | 9193 | <source>Description cannot be more than 1000 characters long.</source> |
8627 | <target>Beschrijving mag niet langer dan 1000 tekens zijn.</target> | 9194 | <target>Beschrijving mag niet langer dan 1000 tekens zijn.</target> |
8628 | 9195 | <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> | |
8629 | 9196 | <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> | |
8630 | 9197 | <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> | |
8631 | <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> | 9198 | </trans-unit> |
8632 | <trans-unit id="1814372869868173571" datatype="html"> | 9199 | <trans-unit id="1814372869868173571" datatype="html"> |
8633 | <source>You must agree with the instance terms in order to register on it.</source> | 9200 | <source>You must agree with the instance terms in order to register on it.</source> |
8634 | <target state="translated">Je moet akkoord gaan met de voorwaarden van het exemplaar van PeerTube om erop te registreren.</target> | 9201 | <target state="translated">Je moet akkoord gaan met de voorwaarden van het exemplaar van PeerTube om erop te registreren.</target> |
8635 | 9202 | <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> | |
8636 | <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> | 9203 | </trans-unit> |
8637 | <trans-unit id="7803960725351649605"> | 9204 | <trans-unit id="7803960725351649605"> |
8638 | <source>Ban reason must be at least 3 characters long.</source> | 9205 | <source>Ban reason must be at least 3 characters long.</source> |
8639 | <target>Verbanningsreden moet minstens 3 karakters zijn.</target> | 9206 | <target>Verbanningsreden moet minstens 3 karakters zijn.</target> |
8640 | 9207 | <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> | |
8641 | <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> | 9208 | </trans-unit> |
8642 | <trans-unit id="3851609012243698179"> | 9209 | <trans-unit id="3851609012243698179"> |
8643 | <source>Ban reason cannot be more than 250 characters long.</source> | 9210 | <source>Ban reason cannot be more than 250 characters long.</source> |
8644 | <target>Verbanningsreden mag niet langer dan 250 tekens zijn.</target> | 9211 | <target>Verbanningsreden mag niet langer dan 250 tekens zijn.</target> |
8645 | 9212 | <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> | |
8646 | <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> | 9213 | </trans-unit> |
8647 | <trans-unit id="6632896893630378443"> | 9214 | <trans-unit id="6632896893630378443"> |
8648 | <source>Display name is required.</source> | 9215 | <source>Display name is required.</source> |
8649 | <target>Een weergavenaam is verplicht.</target> | 9216 | <target>Een weergavenaam is verplicht.</target> |
8650 | 9217 | <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> | |
8651 | 9218 | <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> | |
8652 | 9219 | <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> | |
8653 | <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> | 9220 | </trans-unit> |
8654 | <trans-unit id="1303578752658966736"> | 9221 | <trans-unit id="1303578752658966736"> |
8655 | <source>Display name must be at least 1 character long.</source> | 9222 | <source>Display name must be at least 1 character long.</source> |
8656 | <target>De weergavenaam moet minimaal 1 teken lang zijn.</target> | 9223 | <target>De weergavenaam moet minimaal 1 teken lang zijn.</target> |
8657 | 9224 | <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> | |
8658 | 9225 | <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> | |
8659 | 9226 | <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> | |
8660 | <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> | 9227 | </trans-unit> |
8661 | <trans-unit id="4613240543124934954"> | 9228 | <trans-unit id="4613240543124934954"> |
8662 | <source>Display name cannot be more than 50 characters long.</source> | 9229 | <source>Display name cannot be more than 50 characters long.</source> |
8663 | <target>Weergavenaam mag niet langer dan 50 tekens zijn.</target> | 9230 | <target>Weergavenaam mag niet langer dan 50 tekens zijn.</target> |
8664 | 9231 | <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> | |
8665 | 9232 | <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> | |
8666 | <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> | 9233 | </trans-unit> |
8667 | <trans-unit id="1000468652492651683"> | 9234 | <trans-unit id="1000468652492651683"> |
8668 | <source>Report reason is required.</source> | 9235 | <source>Report reason is required.</source> |
8669 | <target>Rapportagereden is vereist.</target> | 9236 | <target>Rapportagereden is vereist.</target> |
@@ -8747,33 +9314,33 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8747 | <trans-unit id="4444753420973870540"> | 9314 | <trans-unit id="4444753420973870540"> |
8748 | <source>Name is required.</source> | 9315 | <source>Name is required.</source> |
8749 | <target>Naam is vereist.</target> | 9316 | <target>Naam is vereist.</target> |
8750 | 9317 | <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> | |
8751 | <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> | 9318 | </trans-unit> |
8752 | <trans-unit id="4006797705713167676"> | 9319 | <trans-unit id="4006797705713167676"> |
8753 | <source>Name must be at least 1 character long.</source> | 9320 | <source>Name must be at least 1 character long.</source> |
8754 | <target>De naam moet minimaal 1 teken lang zijn.</target> | 9321 | <target>De naam moet minimaal 1 teken lang zijn.</target> |
8755 | 9322 | <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> | |
8756 | <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> | 9323 | </trans-unit> |
8757 | <trans-unit id="2233809696503670883"> | 9324 | <trans-unit id="2233809696503670883"> |
8758 | <source>Name cannot be more than 50 characters long.</source> | 9325 | <source>Name cannot be more than 50 characters long.</source> |
8759 | <target>Naam mag niet langer dan 50 tekens zijn.</target> | 9326 | <target>Naam mag niet langer dan 50 tekens zijn.</target> |
8760 | 9327 | <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> | |
8761 | <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> | 9328 | </trans-unit> |
8762 | <trans-unit id="7915656854942800659"> | 9329 | <trans-unit id="7915656854942800659"> |
8763 | <source>Name should be lowercase alphanumeric; dots and underscores are allowed.</source> | 9330 | <source>Name should be lowercase alphanumeric; dots and underscores are allowed.</source> |
8764 | <target>Naam moet alfanumeriek zijn in kleine letters; stippen en underscores zijn toegestaan.</target> | 9331 | <target>Naam moet alfanumeriek zijn in kleine letters; stippen en underscores zijn toegestaan.</target> |
8765 | 9332 | <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> | |
8766 | <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> | 9333 | </trans-unit> |
8767 | <trans-unit id="6880459830525364741"> | 9334 | <trans-unit id="6880459830525364741"> |
8768 | <source>Support text must be at least 3 characters long.</source> | 9335 | <source>Support text must be at least 3 characters long.</source> |
8769 | <target>Supporttekst moet minstens 3 karakters zijn.</target> | 9336 | <target>Supporttekst moet minstens 3 karakters zijn.</target> |
8770 | 9337 | <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> | |
8771 | <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> | 9338 | </trans-unit> |
8772 | <trans-unit id="6461548560008228165" datatype="html"> | 9339 | <trans-unit id="6461548560008228165" datatype="html"> |
8773 | <source>Support text cannot be more than 1000 characters long</source> | 9340 | <source>Support text cannot be more than 1000 characters long</source> |
8774 | <target state="translated">Hulptekst mag niet langer dan 1000 tekens zijn</target> | 9341 | <target state="translated">Hulptekst mag niet langer dan 1000 tekens zijn</target> |
8775 | 9342 | <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> | |
8776 | <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> | 9343 | </trans-unit> |
8777 | <trans-unit id="5637879201055173642" datatype="html"> | 9344 | <trans-unit id="5637879201055173642" datatype="html"> |
8778 | <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> | 9345 | <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> |
8779 | <target state="translated">Bekijk <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">"/>de documentatie<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> om te leren hoe je de PeerTube live streaming functie kunt gebruiken. </target> | 9346 | <target state="translated">Bekijk <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">"/>de documentatie<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a> "/> om te leren hoe je de PeerTube live streaming functie kunt gebruiken. </target> |
@@ -8854,19 +9421,21 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8854 | <trans-unit id="5437132245714159662"> | 9421 | <trans-unit id="5437132245714159662"> |
8855 | <source>Video name is required.</source> | 9422 | <source>Video name is required.</source> |
8856 | <target>Videonaam is vereist.</target> | 9423 | <target>Videonaam is vereist.</target> |
8857 | 9424 | <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> | |
8858 | <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> | 9425 | </trans-unit> |
8859 | <trans-unit id="2807676084745266104"> | 9426 | <trans-unit id="2807676084745266104"> |
8860 | <source>Video name must be at least 3 characters long.</source> | 9427 | <source>Video name must be at least 3 characters long.</source> |
8861 | <target>Videonaam moet minstens 3 karakters zijn.</target> | 9428 | <target>Videonaam moet minstens 3 karakters zijn.</target> |
8862 | 9429 | <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> | |
8863 | <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> | 9430 | </trans-unit> |
8864 | <trans-unit id="2155414141025589556"> | 9431 | <trans-unit id="2155414141025589556"> |
8865 | <source>Video name cannot be more than 120 characters long.</source> | 9432 | <source>Video name cannot be more than 120 characters long.</source> |
8866 | <target>Videonaam mag niet langer dan 120 tekens zijn.</target> | 9433 | <target>Videonaam mag niet langer dan 120 tekens zijn.</target> |
8867 | 9434 | <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> | |
8868 | <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"> | 9435 | </trans-unit> |
8869 | <source>Video name has leading or trailing whitespace.</source><target state="new">Video name has leading or trailing whitespace.</target> | 9436 | <trans-unit id="1074634769552897790" datatype="html"> |
9437 | <source>Video name has leading or trailing whitespace.</source> | ||
9438 | <target state="new">Video name has leading or trailing whitespace.</target> | ||
8870 | <context-group purpose="location"> | 9439 | <context-group purpose="location"> |
8871 | <context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context> | 9440 | <context context-type="sourcefile">src/app/shared/form-validators/video-validators.ts</context> |
8872 | <context context-type="linenumber">18</context> | 9441 | <context context-type="linenumber">18</context> |
@@ -8875,58 +9444,58 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8875 | <trans-unit id="9115337161597088460"> | 9444 | <trans-unit id="9115337161597088460"> |
8876 | <source>Video privacy is required.</source> | 9445 | <source>Video privacy is required.</source> |
8877 | <target>Videoprivacy is vereist.</target> | 9446 | <target>Videoprivacy is vereist.</target> |
8878 | 9447 | <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> | |
8879 | <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> | 9448 | </trans-unit> |
8880 | <trans-unit id="7309902991450450996"> | 9449 | <trans-unit id="7309902991450450996"> |
8881 | <source>Video channel is required.</source> | 9450 | <source>Video channel is required.</source> |
8882 | <target>Videokanaal is vereist.</target> | 9451 | <target>Videokanaal is vereist.</target> |
8883 | 9452 | <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> | |
8884 | <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> | 9453 | </trans-unit> |
8885 | <trans-unit id="3959376623771116873"> | 9454 | <trans-unit id="3959376623771116873"> |
8886 | <source>Video description must be at least 3 characters long.</source> | 9455 | <source>Video description must be at least 3 characters long.</source> |
8887 | <target>Videobeschrijving moet minstens 3 karakters zijn.</target> | 9456 | <target>Videobeschrijving moet minstens 3 karakters zijn.</target> |
8888 | 9457 | <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> | |
8889 | <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> | 9458 | </trans-unit> |
8890 | <trans-unit id="725195891739570830"> | 9459 | <trans-unit id="725195891739570830"> |
8891 | <source>Video description cannot be more than 10000 characters long.</source> | 9460 | <source>Video description cannot be more than 10000 characters long.</source> |
8892 | <target>Videobeschrijving mag niet langer dan 10000 tekens zijn.</target> | 9461 | <target>Videobeschrijving mag niet langer dan 10000 tekens zijn.</target> |
8893 | 9462 | <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> | |
8894 | <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> | 9463 | </trans-unit> |
8895 | <trans-unit id="142488285332434408"> | 9464 | <trans-unit id="142488285332434408"> |
8896 | <source>A tag should be more than 2 characters long.</source> | 9465 | <source>A tag should be more than 2 characters long.</source> |
8897 | <target>Een tag moet meer dan 2 tekens lang zijn.</target> | 9466 | <target>Een tag moet meer dan 2 tekens lang zijn.</target> |
8898 | 9467 | <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> | |
8899 | <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> | 9468 | </trans-unit> |
8900 | <trans-unit id="691846635236293620"> | 9469 | <trans-unit id="691846635236293620"> |
8901 | <source>A tag should be less than 30 characters long.</source> | 9470 | <source>A tag should be less than 30 characters long.</source> |
8902 | <target>Een tag moet minder dan 30 karakters zijn.</target> | 9471 | <target>Een tag moet minder dan 30 karakters zijn.</target> |
8903 | 9472 | <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> | |
8904 | <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> | 9473 | </trans-unit> |
8905 | <trans-unit id="4146790476782316573" datatype="html"> | 9474 | <trans-unit id="4146790476782316573" datatype="html"> |
8906 | <source>A maximum of 5 tags can be used on a video.</source> | 9475 | <source>A maximum of 5 tags can be used on a video.</source> |
8907 | <target state="translated">Een video kan maximaal 5 tags krijgen.</target> | 9476 | <target state="translated">Een video kan maximaal 5 tags krijgen.</target> |
8908 | 9477 | <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> | |
8909 | <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> | 9478 | </trans-unit> |
8910 | <trans-unit id="2389667090302909529" datatype="html"> | 9479 | <trans-unit id="2389667090302909529" datatype="html"> |
8911 | <source>A tag should be more than 1 and less than 30 characters long.</source> | 9480 | <source>A tag should be more than 1 and less than 30 characters long.</source> |
8912 | <target state="translated">Een tag moet meer dan 1 en minder dan 30 tekens lang zijn.</target> | 9481 | <target state="translated">Een tag moet meer dan 1 en minder dan 30 tekens lang zijn.</target> |
8913 | 9482 | <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> | |
8914 | <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> | 9483 | </trans-unit> |
8915 | <trans-unit id="4806300480558315727"> | 9484 | <trans-unit id="4806300480558315727"> |
8916 | <source>Video support must be at least 3 characters long.</source> | 9485 | <source>Video support must be at least 3 characters long.</source> |
8917 | <target>Videosupport moet minstens 3 karakters zijn.</target> | 9486 | <target>Videosupport moet minstens 3 karakters zijn.</target> |
8918 | 9487 | <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> | |
8919 | <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> | 9488 | </trans-unit> |
8920 | <trans-unit id="6655773021893755977"> | 9489 | <trans-unit id="6655773021893755977"> |
8921 | <source>Video support cannot be more than 1000 characters long.</source> | 9490 | <source>Video support cannot be more than 1000 characters long.</source> |
8922 | <target>Video-ondersteuning mag niet langer dan 1000 tekens zijn.</target> | 9491 | <target>Video-ondersteuning mag niet langer dan 1000 tekens zijn.</target> |
8923 | 9492 | <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> | |
8924 | <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> | 9493 | </trans-unit> |
8925 | <trans-unit id="4246579596585402255"> | 9494 | <trans-unit id="4246579596585402255"> |
8926 | <source>A date is required to schedule video update.</source> | 9495 | <source>A date is required to schedule video update.</source> |
8927 | <target>Een datum is vereist om videoupdates in te roosteren.</target> | 9496 | <target>Een datum is vereist om videoupdates in te roosteren.</target> |
8928 | 9497 | <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> | |
8929 | <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> | 9498 | </trans-unit> |
8930 | <trans-unit id="8728283516316752593"> | 9499 | <trans-unit id="8728283516316752593"> |
8931 | <source>This file is too large.</source> | 9500 | <source>This file is too large.</source> |
8932 | <target>Dit bestand is te groot.</target> | 9501 | <target>Dit bestand is te groot.</target> |
@@ -8936,14 +9505,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8936 | <source>PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</source> | 9505 | <source>PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</source> |
8937 | <target state="translated">PeerTube kan dit type bestand niet verwerken. We aanvaarden volgende bestandstypes: <x id="PH"/>}.</target> | 9506 | <target state="translated">PeerTube kan dit type bestand niet verwerken. We aanvaarden volgende bestandstypes: <x id="PH"/>}.</target> |
8938 | <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> | 9507 | <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> |
8939 | </trans-unit><trans-unit id="3393133458004181121" datatype="html"> | 9508 | </trans-unit> |
8940 | <source>All categories</source><target state="new">All categories</target> | 9509 | <trans-unit id="3393133458004181121" datatype="html"> |
9510 | <source>All categories</source> | ||
9511 | <target state="new">All categories</target> | ||
8941 | <context-group purpose="location"> | 9512 | <context-group purpose="location"> |
8942 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.ts</context> | 9513 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.ts</context> |
8943 | <context context-type="linenumber">24</context> | 9514 | <context context-type="linenumber">24</context> |
8944 | </context-group> | 9515 | </context-group> |
8945 | </trans-unit><trans-unit id="3999967345340145904" datatype="html"> | 9516 | </trans-unit> |
8946 | <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> | 9517 | <trans-unit id="3999967345340145904" datatype="html"> |
9518 | <source>You can't select more than <x id="PH" equiv-text="this.maxItems"/> items</source> | ||
9519 | <target state="new">You can't select more than <x id="PH" equiv-text="this.maxItems"/> items</target> | ||
8947 | <context-group purpose="location"> | 9520 | <context-group purpose="location"> |
8948 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox-all.component.ts</context> | 9521 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox-all.component.ts</context> |
8949 | <context context-type="linenumber">81</context> | 9522 | <context context-type="linenumber">81</context> |
@@ -8952,9 +9525,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8952 | <trans-unit id="6708273825233539746" datatype="html"> | 9525 | <trans-unit id="6708273825233539746" datatype="html"> |
8953 | <source>Add a new option</source> | 9526 | <source>Add a new option</source> |
8954 | <target state="translated">Nieuwe optie toevoegen</target> | 9527 | <target state="translated">Nieuwe optie toevoegen</target> |
8955 | 9528 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.ts</context><context context-type="linenumber">27</context></context-group> | |
8956 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.ts</context><context context-type="linenumber">27</context></context-group></trans-unit><trans-unit id="4076995379551303829" datatype="html"> | 9529 | </trans-unit> |
8957 | <source>Custom value...</source><target state="new">Custom value...</target> | 9530 | <trans-unit id="4076995379551303829" datatype="html"> |
9531 | <source>Custom value...</source> | ||
9532 | <target state="new">Custom value...</target> | ||
8958 | <context-group purpose="location"> | 9533 | <context-group purpose="location"> |
8959 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-custom-value.component.ts</context> | 9534 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-custom-value.component.ts</context> |
8960 | <context context-type="linenumber">69</context> | 9535 | <context context-type="linenumber">69</context> |
@@ -8968,328 +9543,331 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8968 | <trans-unit id="6950140976689343775"> | 9543 | <trans-unit id="6950140976689343775"> |
8969 | <source>Sunday</source> | 9544 | <source>Sunday</source> |
8970 | <target>Zondag</target> | 9545 | <target>Zondag</target> |
8971 | 9546 | <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> | |
8972 | <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> | 9547 | </trans-unit> |
8973 | <trans-unit id="8739442281958563044"> | 9548 | <trans-unit id="8739442281958563044"> |
8974 | <source>Monday</source> | 9549 | <source>Monday</source> |
8975 | <target>Maandag</target> | 9550 | <target>Maandag</target> |
8976 | 9551 | <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> | |
8977 | <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> | 9552 | </trans-unit> |
8978 | <trans-unit id="9176037901730521018"> | 9553 | <trans-unit id="9176037901730521018"> |
8979 | <source>Tuesday</source> | 9554 | <source>Tuesday</source> |
8980 | <target>Dinsdag</target> | 9555 | <target>Dinsdag</target> |
8981 | 9556 | <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> | |
8982 | <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> | 9557 | </trans-unit> |
8983 | <trans-unit id="8798932904948432529"> | 9558 | <trans-unit id="8798932904948432529"> |
8984 | <source>Wednesday</source> | 9559 | <source>Wednesday</source> |
8985 | <target>Woensdag</target> | 9560 | <target>Woensdag</target> |
8986 | 9561 | <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> | |
8987 | <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> | 9562 | </trans-unit> |
8988 | <trans-unit id="1433683192825895947"> | 9563 | <trans-unit id="1433683192825895947"> |
8989 | <source>Thursday</source> | 9564 | <source>Thursday</source> |
8990 | <target>Donderdag</target> | 9565 | <target>Donderdag</target> |
8991 | 9566 | <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> | |
8992 | <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> | 9567 | </trans-unit> |
8993 | <trans-unit id="3730139500618908668"> | 9568 | <trans-unit id="3730139500618908668"> |
8994 | <source>Friday</source> | 9569 | <source>Friday</source> |
8995 | <target>Vrijdag</target> | 9570 | <target>Vrijdag</target> |
8996 | 9571 | <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> | |
8997 | <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> | 9572 | </trans-unit> |
8998 | <trans-unit id="1830554030016307335"> | 9573 | <trans-unit id="1830554030016307335"> |
8999 | <source>Saturday</source> | 9574 | <source>Saturday</source> |
9000 | <target>Zaterdag</target> | 9575 | <target>Zaterdag</target> |
9001 | 9576 | <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> | |
9002 | <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> | 9577 | </trans-unit> |
9003 | <trans-unit id="4921929243068857081"> | 9578 | <trans-unit id="4921929243068857081"> |
9004 | <source>Sun</source> | 9579 | <source>Sun</source> |
9005 | <target>Zon</target> | 9580 | <target>Zon</target> |
9006 | <note from="description" priority="1">Day name short</note> | 9581 | <note from="description" priority="1">Day name short</note> |
9007 | 9582 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">20</context></context-group> | |
9008 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">20</context></context-group></trans-unit> | 9583 | </trans-unit> |
9009 | <trans-unit id="8563137213157122993"> | 9584 | <trans-unit id="8563137213157122993"> |
9010 | <source>Mon</source> | 9585 | <source>Mon</source> |
9011 | <target>Maa</target> | 9586 | <target>Maa</target> |
9012 | <note from="description" priority="1">Day name short</note> | 9587 | <note from="description" priority="1">Day name short</note> |
9013 | 9588 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">21</context></context-group> | |
9014 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">21</context></context-group></trans-unit> | 9589 | </trans-unit> |
9015 | <trans-unit id="8502240922750617054"> | 9590 | <trans-unit id="8502240922750617054"> |
9016 | <source>Tue</source> | 9591 | <source>Tue</source> |
9017 | <target>Din</target> | 9592 | <target>Din</target> |
9018 | <note from="description" priority="1">Day name short</note> | 9593 | <note from="description" priority="1">Day name short</note> |
9019 | 9594 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">22</context></context-group> | |
9020 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">22</context></context-group></trans-unit> | 9595 | </trans-unit> |
9021 | <trans-unit id="7421778640995344715"> | 9596 | <trans-unit id="7421778640995344715"> |
9022 | <source>Wed</source> | 9597 | <source>Wed</source> |
9023 | <target>Woe</target> | 9598 | <target>Woe</target> |
9024 | <note from="description" priority="1">Day name short</note> | 9599 | <note from="description" priority="1">Day name short</note> |
9025 | 9600 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">23</context></context-group> | |
9026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">23</context></context-group></trans-unit> | 9601 | </trans-unit> |
9027 | <trans-unit id="4409954796361883558"> | 9602 | <trans-unit id="4409954796361883558"> |
9028 | <source>Thu</source> | 9603 | <source>Thu</source> |
9029 | <target>Don</target> | 9604 | <target>Don</target> |
9030 | <note from="description" priority="1">Day name short</note> | 9605 | <note from="description" priority="1">Day name short</note> |
9031 | 9606 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">24</context></context-group> | |
9032 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">24</context></context-group></trans-unit> | 9607 | </trans-unit> |
9033 | <trans-unit id="5651951128882735477"> | 9608 | <trans-unit id="5651951128882735477"> |
9034 | <source>Fri</source> | 9609 | <source>Fri</source> |
9035 | <target>Vri</target> | 9610 | <target>Vri</target> |
9036 | <note from="description" priority="1">Day name short</note> | 9611 | <note from="description" priority="1">Day name short</note> |
9037 | 9612 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">25</context></context-group> | |
9038 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">25</context></context-group></trans-unit> | 9613 | </trans-unit> |
9039 | <trans-unit id="93026920674143073"> | 9614 | <trans-unit id="93026920674143073"> |
9040 | <source>Sat</source> | 9615 | <source>Sat</source> |
9041 | <target>Zat</target> | 9616 | <target>Zat</target> |
9042 | <note from="description" priority="1">Day name short</note> | 9617 | <note from="description" priority="1">Day name short</note> |
9043 | 9618 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">26</context></context-group> | |
9044 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">26</context></context-group></trans-unit> | 9619 | </trans-unit> |
9045 | <trans-unit id="8349763432924710200"> | 9620 | <trans-unit id="8349763432924710200"> |
9046 | <source>Su</source> | 9621 | <source>Su</source> |
9047 | <target>Zon</target> | 9622 | <target>Zon</target> |
9048 | <note from="description" priority="1">Day name min</note> | 9623 | <note from="description" priority="1">Day name min</note> |
9049 | 9624 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">30</context></context-group> | |
9050 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">30</context></context-group></trans-unit> | 9625 | </trans-unit> |
9051 | <trans-unit id="4197236438302165051"> | 9626 | <trans-unit id="4197236438302165051"> |
9052 | <source>Mo</source> | 9627 | <source>Mo</source> |
9053 | <target>Ma</target> | 9628 | <target>Ma</target> |
9054 | <note from="description" priority="1">Day name min</note> | 9629 | <note from="description" priority="1">Day name min</note> |
9055 | 9630 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">31</context></context-group> | |
9056 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">31</context></context-group></trans-unit> | 9631 | </trans-unit> |
9057 | <trans-unit id="6034455877220674404"> | 9632 | <trans-unit id="6034455877220674404"> |
9058 | <source>Tu</source> | 9633 | <source>Tu</source> |
9059 | <target>Di</target> | 9634 | <target>Di</target> |
9060 | <note from="description" priority="1">Day name min</note> | 9635 | <note from="description" priority="1">Day name min</note> |
9061 | 9636 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">32</context></context-group> | |
9062 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">32</context></context-group></trans-unit> | 9637 | </trans-unit> |
9063 | <trans-unit id="3221670730445125135"> | 9638 | <trans-unit id="3221670730445125135"> |
9064 | <source>We</source> | 9639 | <source>We</source> |
9065 | <target>Wo</target> | 9640 | <target>Wo</target> |
9066 | <note from="description" priority="1">Day name min</note> | 9641 | <note from="description" priority="1">Day name min</note> |
9067 | 9642 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">33</context></context-group> | |
9068 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">33</context></context-group></trans-unit> | 9643 | </trans-unit> |
9069 | <trans-unit id="772466829681972216"> | 9644 | <trans-unit id="772466829681972216"> |
9070 | <source>Th</source> | 9645 | <source>Th</source> |
9071 | <target>Do</target> | 9646 | <target>Do</target> |
9072 | <note from="description" priority="1">Day name min</note> | 9647 | <note from="description" priority="1">Day name min</note> |
9073 | 9648 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">34</context></context-group> | |
9074 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">34</context></context-group></trans-unit> | 9649 | </trans-unit> |
9075 | <trans-unit id="8598262708800132669"> | 9650 | <trans-unit id="8598262708800132669"> |
9076 | <source>Fr</source> | 9651 | <source>Fr</source> |
9077 | <target>Vr</target> | 9652 | <target>Vr</target> |
9078 | <note from="description" priority="1">Day name min</note> | 9653 | <note from="description" priority="1">Day name min</note> |
9079 | 9654 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">35</context></context-group> | |
9080 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">35</context></context-group></trans-unit> | 9655 | </trans-unit> |
9081 | <trans-unit id="569007902695332072"> | 9656 | <trans-unit id="569007902695332072"> |
9082 | <source>Sa</source> | 9657 | <source>Sa</source> |
9083 | <target>Za</target> | 9658 | <target>Za</target> |
9084 | <note from="description" priority="1">Day name min</note> | 9659 | <note from="description" priority="1">Day name min</note> |
9085 | 9660 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">36</context></context-group> | |
9086 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">36</context></context-group></trans-unit> | 9661 | </trans-unit> |
9087 | <trans-unit id="3913843642962116845"> | 9662 | <trans-unit id="3913843642962116845"> |
9088 | <source>January</source> | 9663 | <source>January</source> |
9089 | <target>Januari</target> | 9664 | <target>Januari</target> |
9090 | 9665 | <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> | |
9091 | <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> | 9666 | </trans-unit> |
9092 | <trans-unit id="6642324138857419870"> | 9667 | <trans-unit id="6642324138857419870"> |
9093 | <source>February</source> | 9668 | <source>February</source> |
9094 | <target>Februari</target> | 9669 | <target>Februari</target> |
9095 | 9670 | <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> | |
9096 | <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> | 9671 | </trans-unit> |
9097 | <trans-unit id="7918954644624211958"> | 9672 | <trans-unit id="7918954644624211958"> |
9098 | <source>March</source> | 9673 | <source>March</source> |
9099 | <target>Maart</target> | 9674 | <target>Maart</target> |
9100 | 9675 | <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> | |
9101 | <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> | 9676 | </trans-unit> |
9102 | <trans-unit id="1809521303476565743"> | 9677 | <trans-unit id="1809521303476565743"> |
9103 | <source>April</source> | 9678 | <source>April</source> |
9104 | <target>April</target> | 9679 | <target>April</target> |
9105 | 9680 | <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> | |
9106 | <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> | 9681 | </trans-unit> |
9107 | <trans-unit id="8469692700277617405"> | 9682 | <trans-unit id="8469692700277617405"> |
9108 | <source>May</source> | 9683 | <source>May</source> |
9109 | <target>Mei</target> | 9684 | <target>Mei</target> |
9110 | 9685 | <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> | |
9111 | 9686 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">59</context></context-group> | |
9112 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">59</context></context-group></trans-unit> | 9687 | </trans-unit> |
9113 | <trans-unit id="9055297580745330415"> | 9688 | <trans-unit id="9055297580745330415"> |
9114 | <source>June</source> | 9689 | <source>June</source> |
9115 | <target>Juni</target> | 9690 | <target>Juni</target> |
9116 | 9691 | <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> | |
9117 | <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> | 9692 | </trans-unit> |
9118 | <trans-unit id="9087113544612471348"> | 9693 | <trans-unit id="9087113544612471348"> |
9119 | <source>July</source> | 9694 | <source>July</source> |
9120 | <target>July</target> | 9695 | <target>July</target> |
9121 | 9696 | <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> | |
9122 | <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> | 9697 | </trans-unit> |
9123 | <trans-unit id="3984618989093293779"> | 9698 | <trans-unit id="3984618989093293779"> |
9124 | <source>August</source> | 9699 | <source>August</source> |
9125 | <target>Augustus</target> | 9700 | <target>Augustus</target> |
9126 | 9701 | <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> | |
9127 | <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> | 9702 | </trans-unit> |
9128 | <trans-unit id="5872622085239011307"> | 9703 | <trans-unit id="5872622085239011307"> |
9129 | <source>September</source> | 9704 | <source>September</source> |
9130 | <target>September</target> | 9705 | <target>September</target> |
9131 | 9706 | <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> | |
9132 | <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> | 9707 | </trans-unit> |
9133 | <trans-unit id="1491482705364427867"> | 9708 | <trans-unit id="1491482705364427867"> |
9134 | <source>October</source> | 9709 | <source>October</source> |
9135 | <target>Oktober</target> | 9710 | <target>Oktober</target> |
9136 | 9711 | <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> | |
9137 | <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> | 9712 | </trans-unit> |
9138 | <trans-unit id="1109977718843277527"> | 9713 | <trans-unit id="1109977718843277527"> |
9139 | <source>November</source> | 9714 | <source>November</source> |
9140 | <target>November</target> | 9715 | <target>November</target> |
9141 | 9716 | <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> | |
9142 | <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> | 9717 | </trans-unit> |
9143 | <trans-unit id="124191049522509365"> | 9718 | <trans-unit id="124191049522509365"> |
9144 | <source>December</source> | 9719 | <source>December</source> |
9145 | <target>December</target> | 9720 | <target>December</target> |
9146 | 9721 | <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> | |
9147 | <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> | 9722 | </trans-unit> |
9148 | <trans-unit id="7595747576974676670"> | 9723 | <trans-unit id="7595747576974676670"> |
9149 | <source>Jan</source> | 9724 | <source>Jan</source> |
9150 | <target>Jan</target> | 9725 | <target>Jan</target> |
9151 | <note from="description" priority="1">Month name short</note> | 9726 | <note from="description" priority="1">Month name short</note> |
9152 | 9727 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">55</context></context-group> | |
9153 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> | 9728 | </trans-unit> |
9154 | <trans-unit id="4916040996255005712"> | 9729 | <trans-unit id="4916040996255005712"> |
9155 | <source>Feb</source> | 9730 | <source>Feb</source> |
9156 | <target>Feb</target> | 9731 | <target>Feb</target> |
9157 | <note from="description" priority="1">Month name short</note> | 9732 | <note from="description" priority="1">Month name short</note> |
9158 | 9733 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">56</context></context-group> | |
9159 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">56</context></context-group></trans-unit> | 9734 | </trans-unit> |
9160 | <trans-unit id="6438827956918137617"> | 9735 | <trans-unit id="6438827956918137617"> |
9161 | <source>Mar</source> | 9736 | <source>Mar</source> |
9162 | <target>Mar</target> | 9737 | <target>Mar</target> |
9163 | <note from="description" priority="1">Month name short</note> | 9738 | <note from="description" priority="1">Month name short</note> |
9164 | 9739 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">57</context></context-group> | |
9165 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">57</context></context-group></trans-unit> | 9740 | </trans-unit> |
9166 | <trans-unit id="5507326650332881991"> | 9741 | <trans-unit id="5507326650332881991"> |
9167 | <source>Apr</source> | 9742 | <source>Apr</source> |
9168 | <target>Apr</target> | 9743 | <target>Apr</target> |
9169 | <note from="description" priority="1">Month name short</note> | 9744 | <note from="description" priority="1">Month name short</note> |
9170 | 9745 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">58</context></context-group> | |
9171 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 9746 | </trans-unit> |
9172 | <trans-unit id="2113470244260512015"> | 9747 | <trans-unit id="2113470244260512015"> |
9173 | <source>Jun</source> | 9748 | <source>Jun</source> |
9174 | <target>Jun</target> | 9749 | <target>Jun</target> |
9175 | <note from="description" priority="1">Month name short</note> | 9750 | <note from="description" priority="1">Month name short</note> |
9176 | 9751 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">60</context></context-group> | |
9177 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> | 9752 | </trans-unit> |
9178 | <trans-unit id="53176888553719239"> | 9753 | <trans-unit id="53176888553719239"> |
9179 | <source>Jul</source> | 9754 | <source>Jul</source> |
9180 | <target>Jul</target> | 9755 | <target>Jul</target> |
9181 | <note from="description" priority="1">Month name short</note> | 9756 | <note from="description" priority="1">Month name short</note> |
9182 | 9757 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">61</context></context-group> | |
9183 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> | 9758 | </trans-unit> |
9184 | <trans-unit id="5648574669404659458"> | 9759 | <trans-unit id="5648574669404659458"> |
9185 | <source>Aug</source> | 9760 | <source>Aug</source> |
9186 | <target>Aug</target> | 9761 | <target>Aug</target> |
9187 | <note from="description" priority="1">Month name short</note> | 9762 | <note from="description" priority="1">Month name short</note> |
9188 | 9763 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">62</context></context-group> | |
9189 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">62</context></context-group></trans-unit> | 9764 | </trans-unit> |
9190 | <trans-unit id="4354095055982674918"> | 9765 | <trans-unit id="4354095055982674918"> |
9191 | <source>Sep</source> | 9766 | <source>Sep</source> |
9192 | <target>Sep</target> | 9767 | <target>Sep</target> |
9193 | <note from="description" priority="1">Month name short</note> | 9768 | <note from="description" priority="1">Month name short</note> |
9194 | 9769 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">63</context></context-group> | |
9195 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">63</context></context-group></trans-unit> | 9770 | </trans-unit> |
9196 | <trans-unit id="6207754626941051341"> | 9771 | <trans-unit id="6207754626941051341"> |
9197 | <source>Oct</source> | 9772 | <source>Oct</source> |
9198 | <target>Oct</target> | 9773 | <target>Oct</target> |
9199 | <note from="description" priority="1">Month name short</note> | 9774 | <note from="description" priority="1">Month name short</note> |
9200 | 9775 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">64</context></context-group> | |
9201 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">64</context></context-group></trans-unit> | 9776 | </trans-unit> |
9202 | <trans-unit id="8269261039058575292"> | 9777 | <trans-unit id="8269261039058575292"> |
9203 | <source>Nov</source> | 9778 | <source>Nov</source> |
9204 | <target>Nov</target> | 9779 | <target>Nov</target> |
9205 | <note from="description" priority="1">Month name short</note> | 9780 | <note from="description" priority="1">Month name short</note> |
9206 | 9781 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">65</context></context-group> | |
9207 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">65</context></context-group></trans-unit> | 9782 | </trans-unit> |
9208 | <trans-unit id="7777579586760423636"> | 9783 | <trans-unit id="7777579586760423636"> |
9209 | <source>Dec</source> | 9784 | <source>Dec</source> |
9210 | <target>Dec</target> | 9785 | <target>Dec</target> |
9211 | <note from="description" priority="1">Month name short</note> | 9786 | <note from="description" priority="1">Month name short</note> |
9212 | 9787 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">66</context></context-group> | |
9213 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 9788 | </trans-unit> |
9214 | <trans-unit id="8700121026680200191"> | 9789 | <trans-unit id="8700121026680200191"> |
9215 | <source>Clear</source> | 9790 | <source>Clear</source> |
9216 | <target>Wissen</target> | 9791 | <target>Wissen</target> |
9217 | 9792 | <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> | |
9218 | <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> | 9793 | </trans-unit> |
9219 | <trans-unit id="5922757127987546008"> | 9794 | <trans-unit id="5922757127987546008"> |
9220 | <source>yy-mm-dd</source> | 9795 | <source>yy-mm-dd</source> |
9221 | <target>yy-mm-dd</target> | 9796 | <target>yy-mm-dd</target> |
9222 | <note from="description" priority="1">Date format in this locale.</note> | 9797 | <note from="description" priority="1">Date format in this locale.</note> |
9223 | 9798 | <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> | |
9224 | <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> | 9799 | </trans-unit> |
9225 | <trans-unit id="2830831449226931729" datatype="html"> | 9800 | <trans-unit id="2830831449226931729" datatype="html"> |
9226 | <source>Instance languages</source> | 9801 | <source>Instance languages</source> |
9227 | <target state="translated">Talen exemplaar van PeerTube</target> | 9802 | <target state="translated">Talen exemplaar van PeerTube</target> |
9228 | 9803 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">179</context></context-group> | |
9229 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">179</context></context-group></trans-unit> | 9804 | </trans-unit> |
9230 | <trans-unit id="40119547597591062" datatype="html"> | 9805 | <trans-unit id="40119547597591062" datatype="html"> |
9231 | <source>All languages</source> | 9806 | <source>All languages</source> |
9232 | <target state="translated">Alle talen</target> | 9807 | <target state="translated">Alle talen</target> |
9233 | 9808 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">180</context></context-group> | |
9234 | 9809 | <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> | |
9235 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">180</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> | 9810 | </trans-unit> |
9236 | <trans-unit id="996392855508119363"> | 9811 | <trans-unit id="996392855508119363"> |
9237 | <source>Hidden</source> | 9812 | <source>Hidden</source> |
9238 | <target>Verborgen</target> | 9813 | <target>Verborgen</target> |
9239 | 9814 | <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> | |
9240 | <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> | 9815 | </trans-unit> |
9241 | <trans-unit id="2173989454916398137"> | 9816 | <trans-unit id="2173989454916398137"> |
9242 | <source>Blurred with confirmation request</source> | 9817 | <source>Blurred with confirmation request</source> |
9243 | <target>Afgeschermd met bevestigingsverzoek</target> | 9818 | <target>Afgeschermd met bevestigingsverzoek</target> |
9244 | 9819 | <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> | |
9245 | <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> | 9820 | </trans-unit> |
9246 | <trans-unit id="8929218224642530466"> | 9821 | <trans-unit id="8929218224642530466"> |
9247 | <source>Displayed</source> | 9822 | <source>Displayed</source> |
9248 | <target>Weergegeven</target> | 9823 | <target>Weergegeven</target> |
9249 | 9824 | <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> | |
9250 | <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">227</context></context-group></trans-unit> | 9825 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">227</context></context-group> |
9826 | </trans-unit> | ||
9251 | <trans-unit id="6291055174438137560" datatype="html"> | 9827 | <trans-unit id="6291055174438137560" datatype="html"> |
9252 | <source>~ 1 minute</source> | 9828 | <source>~ 1 minute</source> |
9253 | <target state="translated">~ 1 minuut</target> | 9829 | <target state="translated">~ 1 minuut</target> |
9254 | 9830 | <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> | |
9255 | <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> | 9831 | </trans-unit> |
9256 | <trans-unit id="189524047518780716" datatype="html"> | 9832 | <trans-unit id="189524047518780716" datatype="html"> |
9257 | <source>~ <x id="PH"/> minutes</source> | 9833 | <source>~ <x id="PH"/> minutes</source> |
9258 | <target state="translated">~ <x id="PH"/> minuten</target> | 9834 | <target state="translated">~ <x id="PH"/> minuten</target> |
9259 | 9835 | <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> | |
9260 | <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> | 9836 | </trans-unit> |
9261 | <trans-unit id="6028521920505655348"> | 9837 | <trans-unit id="6028521920505655348"> |
9262 | <source><x id="PH"/> of full HD videos </source> | 9838 | <source><x id="PH"/> of full HD videos </source> |
9263 | <target> | 9839 | <target> |
9264 | <x id="PH"/> aan full HD videos | 9840 | <x id="PH"/> aan full HD videos |
9265 | </target> | 9841 | </target> |
9266 | 9842 | <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> | |
9267 | <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> | 9843 | </trans-unit> |
9268 | <trans-unit id="117588083391484998"> | 9844 | <trans-unit id="117588083391484998"> |
9269 | <source><x id="PH"/> of HD videos </source> | 9845 | <source><x id="PH"/> of HD videos </source> |
9270 | <target> | 9846 | <target> |
9271 | <x id="PH"/> aan HD videos | 9847 | <x id="PH"/> aan HD videos |
9272 | </target> | 9848 | </target> |
9273 | 9849 | <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> | |
9274 | <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> | 9850 | </trans-unit> |
9275 | <trans-unit id="6636555695556123073"> | 9851 | <trans-unit id="6636555695556123073"> |
9276 | <source><x id="PH"/> of average quality videos </source> | 9852 | <source><x id="PH"/> of average quality videos </source> |
9277 | <target> | 9853 | <target> |
9278 | <x id="PH"/> aan gemiddelde kwaliteit videos | 9854 | <x id="PH"/> aan gemiddelde kwaliteit videos |
9279 | </target> | 9855 | </target> |
9280 | 9856 | <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> | |
9281 | <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> | 9857 | </trans-unit> |
9282 | <trans-unit id="6952960992592445535" datatype="html"> | 9858 | <trans-unit id="6952960992592445535" datatype="html"> |
9283 | <source><x id="PH"/> (channel page) </source> | 9859 | <source><x id="PH"/> (channel page) </source> |
9284 | <target state="translated"><x id="PH"/> (kanaalpagina) </target> | 9860 | <target state="translated"><x id="PH"/> (kanaalpagina) </target> |
9285 | 9861 | <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">19</context></context-group> | |
9286 | 9862 | <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> | |
9287 | <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">19</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">113</context></context-group></trans-unit> | 9863 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">113</context></context-group> |
9864 | </trans-unit> | ||
9288 | <trans-unit id="1209500590333005801" datatype="html"> | 9865 | <trans-unit id="1209500590333005801" datatype="html"> |
9289 | <source><x id="PH"/> (account page) </source> | 9866 | <source><x id="PH"/> (account page) </source> |
9290 | <target state="translated"><x id="PH"/> (accountpagina) </target> | 9867 | <target state="translated"><x id="PH"/> (accountpagina) </target> |
9291 | 9868 | <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> | |
9292 | <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">39</context></context-group></trans-unit> | 9869 | <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> |
9870 | </trans-unit> | ||
9293 | <trans-unit id="2516633974298697807"> | 9871 | <trans-unit id="2516633974298697807"> |
9294 | <source>Emphasis</source> | 9872 | <source>Emphasis</source> |
9295 | <target>Nadruk</target> | 9873 | <target>Nadruk</target> |
@@ -9314,10 +9892,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9314 | <source>Images</source> | 9892 | <source>Images</source> |
9315 | <target>Afbeeldingen</target> | 9893 | <target>Afbeeldingen</target> |
9316 | <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> | 9894 | <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> |
9317 | </trans-unit><trans-unit id="6853170548960328665" datatype="html"> | 9895 | </trans-unit> |
9318 | <source>Close search</source><target state="new">Close search</target> | 9896 | <trans-unit id="6853170548960328665" datatype="html"> |
9319 | 9897 | <source>Close search</source> | |
9320 | <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> | 9898 | <target state="new">Close search</target> |
9899 | <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> | ||
9900 | </trans-unit> | ||
9321 | <trans-unit id="5708680277917691451"> | 9901 | <trans-unit id="5708680277917691451"> |
9322 | <source><x id="PH"/> users banned. </source> | 9902 | <source><x id="PH"/> users banned. </source> |
9323 | <target> | 9903 | <target> |
@@ -9333,34 +9913,34 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9333 | <trans-unit id="8269144351796756896"> | 9913 | <trans-unit id="8269144351796756896"> |
9334 | <source>Do you really want to unban <x id="PH"/>?</source> | 9914 | <source>Do you really want to unban <x id="PH"/>?</source> |
9335 | <target>Weet je zeker dat je <x id="PH"/> opnieuw wil toelaten?</target> | 9915 | <target>Weet je zeker dat je <x id="PH"/> opnieuw wil toelaten?</target> |
9336 | 9916 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">66</context></context-group> | |
9337 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">66</context></context-group></trans-unit> | 9917 | </trans-unit> |
9338 | <trans-unit id="1794219875546376069"> | 9918 | <trans-unit id="1794219875546376069"> |
9339 | <source>User <x id="PH"/> unbanned.</source> | 9919 | <source>User <x id="PH"/> unbanned.</source> |
9340 | <target>Gebruiker <x id="PH"/> terug toelaten.</target> | 9920 | <target>Gebruiker <x id="PH"/> terug toelaten.</target> |
9341 | 9921 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">72</context></context-group> | |
9342 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 9922 | </trans-unit> |
9343 | <trans-unit id="4885683604826993045"> | 9923 | <trans-unit id="4885683604826993045"> |
9344 | <source>If you remove this user, you will not be able to create another with the same username!</source> | 9924 | <source>If you remove this user, you will not be able to create another with the same username!</source> |
9345 | <target>Als je deze gebruiker verwijdert, is het niet meer mogelijk om een andere te maken met dezelfde gebruikersnaam!</target> | 9925 | <target>Als je deze gebruiker verwijdert, is het niet meer mogelijk om een andere te maken met dezelfde gebruikersnaam!</target> |
9346 | 9926 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">86</context></context-group> | |
9347 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">86</context></context-group></trans-unit> | 9927 | </trans-unit> |
9348 | <trans-unit id="6301381219225831298"> | 9928 | <trans-unit id="6301381219225831298"> |
9349 | <source>User <x id="PH"/> deleted.</source> | 9929 | <source>User <x id="PH"/> deleted.</source> |
9350 | <target>Gebruiker <x id="PH"/> verwijderd.</target> | 9930 | <target>Gebruiker <x id="PH"/> verwijderd.</target> |
9351 | 9931 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">93</context></context-group> | |
9352 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">93</context></context-group></trans-unit> | 9932 | </trans-unit> |
9353 | <trans-unit id="3896582359861826661"> | 9933 | <trans-unit id="3896582359861826661"> |
9354 | <source>User <x id="PH"/> email set as verified</source> | 9934 | <source>User <x id="PH"/> email set as verified</source> |
9355 | <target>Gebruiker <x id="PH"/> e-mail op geverifieerd ingesteld</target> | 9935 | <target>Gebruiker <x id="PH"/> e-mail op geverifieerd ingesteld</target> |
9356 | 9936 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">105</context></context-group> | |
9357 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">105</context></context-group></trans-unit> | 9937 | </trans-unit> |
9358 | <trans-unit id="8150022485860412528"> | 9938 | <trans-unit id="8150022485860412528"> |
9359 | <source>Account <x id="PH"/> muted.</source> | 9939 | <source>Account <x id="PH"/> muted.</source> |
9360 | <target>Account <x id="PH"/> gedempt.</target> | 9940 | <target>Account <x id="PH"/> gedempt.</target> |
9361 | 9941 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">117</context></context-group> | |
9362 | 9942 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">240</context></context-group> | |
9363 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">117</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">240</context></context-group></trans-unit> | 9943 | </trans-unit> |
9364 | <trans-unit id="1598375456114200087"> | 9944 | <trans-unit id="1598375456114200087"> |
9365 | <source>Instance <x id="PH"/> muted. </source> | 9945 | <source>Instance <x id="PH"/> muted. </source> |
9366 | <target>Exemplaar <x id="PH"/> van PeerTube gedempt. </target> | 9946 | <target>Exemplaar <x id="PH"/> van PeerTube gedempt. </target> |
@@ -9372,19 +9952,19 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9372 | <trans-unit id="2558977494773636050"> | 9952 | <trans-unit id="2558977494773636050"> |
9373 | <source>Account <x id="PH"/> muted by the instance.</source> | 9953 | <source>Account <x id="PH"/> muted by the instance.</source> |
9374 | <target>Account <x id="PH"/> gedempt door exemplaar van PeerTube.</target> | 9954 | <target>Account <x id="PH"/> gedempt door exemplaar van PeerTube.</target> |
9375 | 9955 | <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> | |
9376 | 9956 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">173</context></context-group> | |
9377 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">173</context></context-group></trans-unit> | 9957 | </trans-unit> |
9378 | <trans-unit id="1595779426198793580" datatype="html"> | 9958 | <trans-unit id="1595779426198793580" datatype="html"> |
9379 | <source>Mute server</source> | 9959 | <source>Mute server</source> |
9380 | <target state="translated">Server dempen</target> | 9960 | <target state="translated">Server dempen</target> |
9381 | 9961 | <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> | |
9382 | <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> | 9962 | </trans-unit> |
9383 | <trans-unit id="8014491157078444256" datatype="html"> | 9963 | <trans-unit id="8014491157078444256" datatype="html"> |
9384 | <source>Server <x id="PH"/> muted by the instance.</source> | 9964 | <source>Server <x id="PH"/> muted by the instance.</source> |
9385 | <target state="translated">Server <x id="PH"/> gedempt door exemplaar van PeerTube.</target> | 9965 | <target state="translated">Server <x id="PH"/> gedempt door exemplaar van PeerTube.</target> |
9386 | 9966 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">458</context></context-group> | |
9387 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">458</context></context-group></trans-unit> | 9967 | </trans-unit> |
9388 | <trans-unit id="2044813052587776285" datatype="html"> | 9968 | <trans-unit id="2044813052587776285" datatype="html"> |
9389 | <source>Add a message to communicate with the reporter</source> | 9969 | <source>Add a message to communicate with the reporter</source> |
9390 | <target state="translated">Een bericht toevoegen om met de aangever te communiceren</target> | 9970 | <target state="translated">Een bericht toevoegen om met de aangever te communiceren</target> |
@@ -9398,158 +9978,158 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9398 | <trans-unit id="3085641638748358969"> | 9978 | <trans-unit id="3085641638748358969"> |
9399 | <source>Account <x id="PH"/> unmuted by the instance.</source> | 9979 | <source>Account <x id="PH"/> unmuted by the instance.</source> |
9400 | <target>Account <x id="PH"/> niet meer gedempt door exemplaar van PeerTube.</target> | 9980 | <target>Account <x id="PH"/> niet meer gedempt door exemplaar van PeerTube.</target> |
9401 | 9981 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">187</context></context-group> | |
9402 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">187</context></context-group></trans-unit> | 9982 | </trans-unit> |
9403 | <trans-unit id="4991892477258601737"> | 9983 | <trans-unit id="4991892477258601737"> |
9404 | <source>Instance <x id="PH"/> muted by the instance.</source> | 9984 | <source>Instance <x id="PH"/> muted by the instance.</source> |
9405 | <target>Exemplaar <x id="PH"/> van PeerTube gedempt door dit exemplaar.</target> | 9985 | <target>Exemplaar <x id="PH"/> van PeerTube gedempt door dit exemplaar.</target> |
9406 | 9986 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">201</context></context-group> | |
9407 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">201</context></context-group></trans-unit> | 9987 | </trans-unit> |
9408 | <trans-unit id="4379430340167561220"> | 9988 | <trans-unit id="4379430340167561220"> |
9409 | <source>Instance <x id="PH"/> unmuted by the instance.</source> | 9989 | <source>Instance <x id="PH"/> unmuted by the instance.</source> |
9410 | <target>Exemplaar <x id="PH"/> van PeerTube niet meer gedempt door dit exemplaar.</target> | 9990 | <target>Exemplaar <x id="PH"/> van PeerTube niet meer gedempt door dit exemplaar.</target> |
9411 | 9991 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">215</context></context-group> | |
9412 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">215</context></context-group></trans-unit> | 9992 | </trans-unit> |
9413 | <trans-unit id="8173437618471379044" datatype="html"> | 9993 | <trans-unit id="8173437618471379044" datatype="html"> |
9414 | <source>Are you sure you want to remove all the comments of this account?</source> | 9994 | <source>Are you sure you want to remove all the comments of this account?</source> |
9415 | <target state="translated">Ben je zeker dat je alle reacties van deze account wil verwijderen?</target> | 9995 | <target state="translated">Ben je zeker dat je alle reacties van deze account wil verwijderen?</target> |
9416 | 9996 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">226</context></context-group> | |
9417 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">226</context></context-group></trans-unit> | 9997 | </trans-unit> |
9418 | <trans-unit id="6315346579373254461" datatype="html"> | 9998 | <trans-unit id="6315346579373254461" datatype="html"> |
9419 | <source>Delete account comments</source> | 9999 | <source>Delete account comments</source> |
9420 | <target state="translated">Account-commentaren verwijderen</target> | 10000 | <target state="translated">Account-commentaren verwijderen</target> |
9421 | 10001 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">227</context></context-group> | |
9422 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">227</context></context-group></trans-unit> | 10002 | </trans-unit> |
9423 | <trans-unit id="8559170154828316298" datatype="html"> | 10003 | <trans-unit id="8559170154828316298" datatype="html"> |
9424 | <source>Will remove comments of this account (may take several minutes).</source> | 10004 | <source>Will remove comments of this account (may take several minutes).</source> |
9425 | <target state="translated">Reacties van deze account verwijderen (kan verscheidene minuten duren).</target> | 10005 | <target state="translated">Reacties van deze account verwijderen (kan verscheidene minuten duren).</target> |
9426 | 10006 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">233</context></context-group> | |
9427 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">233</context></context-group></trans-unit> | 10007 | </trans-unit> |
9428 | <trans-unit id="7187838764371214919" datatype="html"> | 10008 | <trans-unit id="7187838764371214919" datatype="html"> |
9429 | <source>Edit user</source> | 10009 | <source>Edit user</source> |
9430 | <target state="translated">Gebruiker bewerken</target> | 10010 | <target state="translated">Gebruiker bewerken</target> |
9431 | 10011 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">261</context></context-group> | |
9432 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">261</context></context-group></trans-unit> | 10012 | </trans-unit> |
9433 | <trans-unit id="4728427543536046034" datatype="html"> | 10013 | <trans-unit id="4728427543536046034" datatype="html"> |
9434 | <source>Change quota, role, and more.</source> | 10014 | <source>Change quota, role, and more.</source> |
9435 | <target state="translated">Quota, rollen en meer wijzigen.</target> | 10015 | <target state="translated">Quota, rollen en meer wijzigen.</target> |
9436 | 10016 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">262</context></context-group> | |
9437 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">262</context></context-group></trans-unit> | 10017 | </trans-unit> |
9438 | <trans-unit id="7913022656086109932" datatype="html"> | 10018 | <trans-unit id="7913022656086109932" datatype="html"> |
9439 | <source>Delete user</source> | 10019 | <source>Delete user</source> |
9440 | <target state="translated">Gebruiker verwijderen</target> | 10020 | <target state="translated">Gebruiker verwijderen</target> |
9441 | 10021 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">266</context></context-group> | |
9442 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">266</context></context-group></trans-unit> | 10022 | </trans-unit> |
9443 | <trans-unit id="7577876364431026966" datatype="html"> | 10023 | <trans-unit id="7577876364431026966" datatype="html"> |
9444 | <source>Unban user</source> | 10024 | <source>Unban user</source> |
9445 | <target state="translated">Gebruiker opnieuw toelaten</target> | 10025 | <target state="translated">Gebruiker opnieuw toelaten</target> |
9446 | 10026 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">277</context></context-group> | |
9447 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">277</context></context-group></trans-unit> | 10027 | </trans-unit> |
9448 | <trans-unit id="3508163549683020253" datatype="html"> | 10028 | <trans-unit id="3508163549683020253" datatype="html"> |
9449 | <source>Allow the user to login and create videos/comments again</source> | 10029 | <source>Allow the user to login and create videos/comments again</source> |
9450 | <target state="translated">De gebruiker opnieuw toelaten aan te melden, video's aan te maken en te reageren</target> | 10030 | <target state="translated">De gebruiker opnieuw toelaten aan te melden, video's aan te maken en te reageren</target> |
9451 | 10031 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">278</context></context-group> | |
9452 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">278</context></context-group></trans-unit> | 10032 | </trans-unit> |
9453 | <trans-unit id="1888272455383898478"> | 10033 | <trans-unit id="1888272455383898478"> |
9454 | <source>Mute this account</source> | 10034 | <source>Mute this account</source> |
9455 | <target>Demp dit account</target> | 10035 | <target>Demp dit account</target> |
9456 | 10036 | <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> | |
9457 | <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></trans-unit> | 10037 | </trans-unit> |
9458 | <trans-unit id="2365286519320230773" datatype="html"> | 10038 | <trans-unit id="2365286519320230773" datatype="html"> |
9459 | <source>Hide any content from that user from you.</source> | 10039 | <source>Hide any content from that user from you.</source> |
9460 | <target state="translated">Verberg alle inhoud van die gebruiker voor jou.</target> | 10040 | <target state="translated">Verberg alle inhoud van die gebruiker voor jou.</target> |
9461 | 10041 | <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> | |
9462 | <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> | 10042 | </trans-unit> |
9463 | <trans-unit id="4043508901590508211"> | 10043 | <trans-unit id="4043508901590508211"> |
9464 | <source>Unmute this account</source> | 10044 | <source>Unmute this account</source> |
9465 | <target>Deze account niet meer dempen</target> | 10045 | <target>Deze account niet meer dempen</target> |
9466 | 10046 | <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> | |
9467 | <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></trans-unit> | 10047 | </trans-unit> |
9468 | <trans-unit id="2843593344827160627" datatype="html"> | 10048 | <trans-unit id="2843593344827160627" datatype="html"> |
9469 | <source>Show back content from that user for you.</source> | 10049 | <source>Show back content from that user for you.</source> |
9470 | <target state="translated">Oude inhoud van gebruiker voor jou tonen.</target> | 10050 | <target state="translated">Oude inhoud van gebruiker voor jou tonen.</target> |
9471 | 10051 | <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> | |
9472 | <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> | 10052 | </trans-unit> |
9473 | <trans-unit id="6198109035280957164"> | 10053 | <trans-unit id="6198109035280957164"> |
9474 | <source>Mute the instance</source> | 10054 | <source>Mute the instance</source> |
9475 | <target>Het exemplaar van PeerTube dempen</target> | 10055 | <target>Het exemplaar van PeerTube dempen</target> |
9476 | 10056 | <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> | |
9477 | <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></trans-unit> | 10057 | </trans-unit> |
9478 | <trans-unit id="4537735378779630558" datatype="html"> | 10058 | <trans-unit id="4537735378779630558" datatype="html"> |
9479 | <source>Hide any content from that instance for you.</source> | 10059 | <source>Hide any content from that instance for you.</source> |
9480 | <target state="translated">Alle inhoud uit dat exemplaar van PeerTube voor jou verbergen.</target> | 10060 | <target state="translated">Alle inhoud uit dat exemplaar van PeerTube voor jou verbergen.</target> |
9481 | 10061 | <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> | |
9482 | <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> | 10062 | </trans-unit> |
9483 | <trans-unit id="6247487021683085858"> | 10063 | <trans-unit id="6247487021683085858"> |
9484 | <source>Unmute the instance</source> | 10064 | <source>Unmute the instance</source> |
9485 | <target>Exemplaar van PeerTube niet meer dempen</target> | 10065 | <target>Exemplaar van PeerTube niet meer dempen</target> |
9486 | 10066 | <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> | |
9487 | <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> | 10067 | </trans-unit> |
9488 | <trans-unit id="4024846984475742259" datatype="html"> | 10068 | <trans-unit id="4024846984475742259" datatype="html"> |
9489 | <source>Show back content from that instance for you.</source> | 10069 | <source>Show back content from that instance for you.</source> |
9490 | <target state="translated">Oude inhoud uit dat exemplaar van PeerTube tonen.</target> | 10070 | <target state="translated">Oude inhoud uit dat exemplaar van PeerTube tonen.</target> |
9491 | 10071 | <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> | |
9492 | <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> | 10072 | </trans-unit> |
9493 | <trans-unit id="3108200185023875257" datatype="html"> | 10073 | <trans-unit id="3108200185023875257" datatype="html"> |
9494 | <source>Remove comments from your videos</source> | 10074 | <source>Remove comments from your videos</source> |
9495 | <target state="translated">Reacties op je video's verwijderen</target> | 10075 | <target state="translated">Reacties op je video's verwijderen</target> |
9496 | 10076 | <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> | |
9497 | <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> | 10077 | </trans-unit> |
9498 | <trans-unit id="4810478487244286994" datatype="html"> | 10078 | <trans-unit id="4810478487244286994" datatype="html"> |
9499 | <source>Remove comments made by this account on your videos.</source> | 10079 | <source>Remove comments made by this account on your videos.</source> |
9500 | <target state="translated">Verwijder reacties van dit account op je video's.</target> | 10080 | <target state="translated">Verwijder reacties van dit account op je video's.</target> |
9501 | 10081 | <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> | |
9502 | <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> | 10082 | </trans-unit> |
9503 | <trans-unit id="81452583525574033"> | 10083 | <trans-unit id="81452583525574033"> |
9504 | <source>Mute this account by your instance</source> | 10084 | <source>Mute this account by your instance</source> |
9505 | <target>Deze account door jouw exemplaar van PeerTube laten dempen</target> | 10085 | <target>Deze account door jouw exemplaar van PeerTube laten dempen</target> |
9506 | 10086 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">331</context></context-group> | |
9507 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">331</context></context-group></trans-unit> | 10087 | </trans-unit> |
9508 | <trans-unit id="2077144178298031252" datatype="html"> | 10088 | <trans-unit id="2077144178298031252" datatype="html"> |
9509 | <source>Hide any content from that user from you, your instance and its users.</source> | 10089 | <source>Hide any content from that user from you, your instance and its users.</source> |
9510 | <target state="translated">Alle inhoud van gebruiker verbergen voor u, uw exemplaar van PeerTube en zijn gebruikers.</target> | 10090 | <target state="translated">Alle inhoud van gebruiker verbergen voor u, uw exemplaar van PeerTube en zijn gebruikers.</target> |
9511 | 10091 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">332</context></context-group> | |
9512 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">332</context></context-group></trans-unit> | 10092 | </trans-unit> |
9513 | <trans-unit id="884942914962310163"> | 10093 | <trans-unit id="884942914962310163"> |
9514 | <source>Unmute this account by your instance</source> | 10094 | <source>Unmute this account by your instance</source> |
9515 | <target>Deze account niet meer dempen in jouw exemplaar van PeerTube</target> | 10095 | <target>Deze account niet meer dempen in jouw exemplaar van PeerTube</target> |
9516 | 10096 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">337</context></context-group> | |
9517 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">337</context></context-group></trans-unit> | 10097 | </trans-unit> |
9518 | <trans-unit id="7675070596643104983" datatype="html"> | 10098 | <trans-unit id="7675070596643104983" datatype="html"> |
9519 | <source>Show this user's content to the users of this instance again.</source> | 10099 | <source>Show this user's content to the users of this instance again.</source> |
9520 | <target state="translated">De inhoud van deze gebruiker opnieuw zichtbaar maken voor de gebruikers van dit exemplaar van PeerTube.</target> | 10100 | <target state="translated">De inhoud van deze gebruiker opnieuw zichtbaar maken voor de gebruikers van dit exemplaar van PeerTube.</target> |
9521 | 10101 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">338</context></context-group> | |
9522 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">338</context></context-group></trans-unit> | 10102 | </trans-unit> |
9523 | <trans-unit id="3191211873505538654"> | 10103 | <trans-unit id="3191211873505538654"> |
9524 | <source>Mute the instance by your instance</source> | 10104 | <source>Mute the instance by your instance</source> |
9525 | <target>Exemplaar dempen in jouw exemplaar van PeerTube</target> | 10105 | <target>Exemplaar dempen in jouw exemplaar van PeerTube</target> |
9526 | 10106 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">349</context></context-group> | |
9527 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> | 10107 | </trans-unit> |
9528 | <trans-unit id="525915681688649453" datatype="html"> | 10108 | <trans-unit id="525915681688649453" datatype="html"> |
9529 | <source>Hide any content from that instance from you, your instance and its users.</source> | 10109 | <source>Hide any content from that instance from you, your instance and its users.</source> |
9530 | <target state="translated">Alle inhoud van exemplaar van PeerTube verbergen voor u, uw exemplaar van PeerTube en zijn gebruikers.</target> | 10110 | <target state="translated">Alle inhoud van exemplaar van PeerTube verbergen voor u, uw exemplaar van PeerTube en zijn gebruikers.</target> |
9531 | 10111 | <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> | |
9532 | <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> | 10112 | </trans-unit> |
9533 | <trans-unit id="5325628963747139770"> | 10113 | <trans-unit id="5325628963747139770"> |
9534 | <source>Unmute the instance by your instance</source> | 10114 | <source>Unmute the instance by your instance</source> |
9535 | <target>Exemplaar van PeerTube niet meer dempen op jouw exemplaar</target> | 10115 | <target>Exemplaar van PeerTube niet meer dempen op jouw exemplaar</target> |
9536 | 10116 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">355</context></context-group> | |
9537 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">355</context></context-group></trans-unit> | 10117 | </trans-unit> |
9538 | <trans-unit id="758471033841077314" datatype="html"> | 10118 | <trans-unit id="758471033841077314" datatype="html"> |
9539 | <source>Show back content from that instance for you, your instance and its users.</source> | 10119 | <source>Show back content from that instance for you, your instance and its users.</source> |
9540 | <target state="translated">Inhoud van dat exemplaar van PeerTube opnieuw zichtbaar maken voor jou, je exemplaar van PeerTube en zijn gebruikers.</target> | 10120 | <target state="translated">Inhoud van dat exemplaar van PeerTube opnieuw zichtbaar maken voor jou, je exemplaar van PeerTube en zijn gebruikers.</target> |
9541 | 10121 | <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> | |
9542 | <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> | 10122 | </trans-unit> |
9543 | <trans-unit id="3785095284194008197" datatype="html"> | 10123 | <trans-unit id="3785095284194008197" datatype="html"> |
9544 | <source>Remove comments from your instance</source> | 10124 | <source>Remove comments from your instance</source> |
9545 | <target state="translated">Reacties van je exemplaar van PeerTube verwijderen</target> | 10125 | <target state="translated">Reacties van je exemplaar van PeerTube verwijderen</target> |
9546 | 10126 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">366</context></context-group> | |
9547 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">366</context></context-group></trans-unit> | 10127 | </trans-unit> |
9548 | <trans-unit id="4809327075591089709" datatype="html"> | 10128 | <trans-unit id="4809327075591089709" datatype="html"> |
9549 | <source>Remove comments made by this account from your instance.</source> | 10129 | <source>Remove comments made by this account from your instance.</source> |
9550 | <target state="translated">Opmerkingen van deze gebruiker uit je exemplaar van PeerTube verwijderen.</target> | 10130 | <target state="translated">Opmerkingen van deze gebruiker uit je exemplaar van PeerTube verwijderen.</target> |
9551 | 10131 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">367</context></context-group> | |
9552 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">367</context></context-group></trans-unit> | 10132 | </trans-unit> |
9553 | <trans-unit id="6746743143272021955" datatype="html"> | 10133 | <trans-unit id="6746743143272021955" datatype="html"> |
9554 | <source>Violent or repulsive</source> | 10134 | <source>Violent or repulsive</source> |
9555 | <target state="translated">Gewelddadig of weerzinwekkend</target> | 10135 | <target state="translated">Gewelddadig of weerzinwekkend</target> |
@@ -9578,64 +10158,64 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9578 | <trans-unit id="6374940465448453212" datatype="html"> | 10158 | <trans-unit id="6374940465448453212" datatype="html"> |
9579 | <source>Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</source> | 10159 | <source>Contains marketing, spam, purposefully deceitful news, or otherwise misleading thumbnail/text/tags. Please provide reputable sources to report hoaxes.</source> |
9580 | <target state="translated">Bevat marketing, spam, opzettelijk misleidend nieuws of andere misleidende voorproefjes/tekst/tags. Alsjeblieft gereputeerde bronnen voorzien voor het melden van beetnemerijen.</target> | 10160 | <target state="translated">Bevat marketing, spam, opzettelijk misleidend nieuws of andere misleidende voorproefjes/tekst/tags. Alsjeblieft gereputeerde bronnen voorzien voor het melden van beetnemerijen.</target> |
9581 | 10161 | <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> | |
9582 | <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> | 10162 | </trans-unit> |
9583 | <trans-unit id="7401289443263903223" datatype="html"> | 10163 | <trans-unit id="7401289443263903223" datatype="html"> |
9584 | <source>Privacy breach or doxxing</source> | 10164 | <source>Privacy breach or doxxing</source> |
9585 | <target state="translated">Privacy-inbreuk of doxing</target> | 10165 | <target state="translated">Privacy-inbreuk of doxing</target> |
9586 | 10166 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">155</context></context-group> | |
9587 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">155</context></context-group></trans-unit> | 10167 | </trans-unit> |
9588 | <trans-unit id="8363008638081993167" datatype="html"> | 10168 | <trans-unit id="8363008638081993167" datatype="html"> |
9589 | <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> | 10169 | <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> |
9590 | <target state="translated">Bevat persoonlijke informatie die zou kunnen gebruikt worden om iemand te kunnen schaduwen, identificeren, contacteren of je als die persoon voor te doen (bijvoorbeeld naam, adres, telefoonnummer, email of kredietkaartgegevens).</target> | 10170 | <target state="translated">Bevat persoonlijke informatie die zou kunnen gebruikt worden om iemand te kunnen schaduwen, identificeren, contacteren of je als die persoon voor te doen (bijvoorbeeld naam, adres, telefoonnummer, email of kredietkaartgegevens).</target> |
9591 | 10171 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">157</context></context-group> | |
9592 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">157</context></context-group></trans-unit> | 10172 | </trans-unit> |
9593 | <trans-unit id="380450014369168564" datatype="html"> | 10173 | <trans-unit id="380450014369168564" datatype="html"> |
9594 | <source>Infringes your copyright wrt. the regional laws with which the server must comply.</source> | 10174 | <source>Infringes your copyright wrt. the regional laws with which the server must comply.</source> |
9595 | <target state="translated">Vormt een inbreuk op je copyright, gebaseerd op de wetten die de server moet naleven.</target> | 10175 | <target state="translated">Vormt een inbreuk op je copyright, gebaseerd op de wetten die de server moet naleven.</target> |
9596 | 10176 | <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> | |
9597 | <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> | 10177 | </trans-unit> |
9598 | <trans-unit id="1378933246324202613" datatype="html"> | 10178 | <trans-unit id="1378933246324202613" datatype="html"> |
9599 | <source>Breaks server rules</source> | 10179 | <source>Breaks server rules</source> |
9600 | <target state="translated">Niet in overeenstemming met de serverregels</target> | 10180 | <target state="translated">Niet in overeenstemming met de serverregels</target> |
9601 | 10181 | <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> | |
9602 | <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> | 10182 | </trans-unit> |
9603 | <trans-unit id="7930601470861156366" datatype="html"> | 10183 | <trans-unit id="7930601470861156366" datatype="html"> |
9604 | <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> | 10184 | <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> |
9605 | <target state="translated">Gelijk wat hierboven niet vermeld werd dat niet in overeenstemming is met de dienstvoorwaarden, gedragscode of algemene regels op de server.</target> | 10185 | <target state="translated">Gelijk wat hierboven niet vermeld werd dat niet in overeenstemming is met de dienstvoorwaarden, gedragscode of algemene regels op de server.</target> |
9606 | 10186 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">168</context></context-group> | |
9607 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">168</context></context-group></trans-unit> | 10187 | </trans-unit> |
9608 | <trans-unit id="8700771664729810984" datatype="html"> | 10188 | <trans-unit id="8700771664729810984" datatype="html"> |
9609 | <source>The above can only be seen in thumbnails.</source> | 10189 | <source>The above can only be seen in thumbnails.</source> |
9610 | <target state="translated">Het bovenstaande is enkel te zien in voorproefjes.</target> | 10190 | <target state="translated">Het bovenstaande is enkel te zien in voorproefjes.</target> |
9611 | 10191 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">177</context></context-group> | |
9612 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">177</context></context-group></trans-unit> | 10192 | </trans-unit> |
9613 | <trans-unit id="2602773901491715295" datatype="html"> | 10193 | <trans-unit id="2602773901491715295" datatype="html"> |
9614 | <source>Captions</source> | 10194 | <source>Captions</source> |
9615 | <target state="translated">Onderschriften</target> | 10195 | <target state="translated">Onderschriften</target> |
9616 | 10196 | <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> | |
9617 | 10197 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">178</context></context-group> | |
9618 | <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">178</context></context-group></trans-unit> | 10198 | </trans-unit> |
9619 | <trans-unit id="5779804235244672536" datatype="html"> | 10199 | <trans-unit id="5779804235244672536" datatype="html"> |
9620 | <source>The above can only be seen in captions (please describe which).</source> | 10200 | <source>The above can only be seen in captions (please describe which).</source> |
9621 | <target state="translated">Het bovenstaande is enkel te zien in onderschriften (graag aangeven welke).</target> | 10201 | <target state="translated">Het bovenstaande is enkel te zien in onderschriften (graag aangeven welke).</target> |
9622 | 10202 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">182</context></context-group> | |
9623 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> | 10203 | </trans-unit> |
9624 | <trans-unit id="968295009933361070"> | 10204 | <trans-unit id="968295009933361070"> |
9625 | <source>Too many attempts, please try again after <x id="PH"/> minutes.</source> | 10205 | <source>Too many attempts, please try again after <x id="PH"/> minutes.</source> |
9626 | <target>Te veel pogingen. Probeer alstublieft opnieuw na <x id="PH"/> minuten.</target> | 10206 | <target>Te veel pogingen. Probeer alstublieft opnieuw na <x id="PH"/> minuten.</target> |
9627 | 10207 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">70</context></context-group> | |
9628 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">70</context></context-group></trans-unit> | 10208 | </trans-unit> |
9629 | <trans-unit id="4965472196059235310"> | 10209 | <trans-unit id="4965472196059235310"> |
9630 | <source>Too many attempts, please try again later.</source> | 10210 | <source>Too many attempts, please try again later.</source> |
9631 | <target>Te vaak geprobeerd, probeer alstublieft later.</target> | 10211 | <target>Te vaak geprobeerd, probeer alstublieft later.</target> |
9632 | 10212 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">72</context></context-group> | |
9633 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">72</context></context-group></trans-unit> | 10213 | </trans-unit> |
9634 | <trans-unit id="1693549688987384699"> | 10214 | <trans-unit id="1693549688987384699"> |
9635 | <source>Server error. Please retry later.</source> | 10215 | <source>Server error. Please retry later.</source> |
9636 | <target>Serverfout. Probeer later alstublieft weer.</target> | 10216 | <target>Serverfout. Probeer later alstublieft weer.</target> |
9637 | 10217 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">75</context></context-group> | |
9638 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/rest/rest-extractor.service.ts</context><context context-type="linenumber">75</context></context-group></trans-unit> | 10218 | </trans-unit> |
9639 | <trans-unit id="5927402622550505067" datatype="html"> | 10219 | <trans-unit id="5927402622550505067" datatype="html"> |
9640 | <source>Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</source> | 10220 | <source>Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</source> |
9641 | <target state="translated">Geabonneerd op alle huidige kanalen van <x id="PH"/>. U krijgt meldingen van al zijn of haar nieuwe video's.</target> | 10221 | <target state="translated">Geabonneerd op alle huidige kanalen van <x id="PH"/>. U krijgt meldingen van al zijn of haar nieuwe video's.</target> |
@@ -9685,9 +10265,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9685 | <trans-unit id="4968151111061046122"> | 10265 | <trans-unit id="4968151111061046122"> |
9686 | <source>Moderator</source> | 10266 | <source>Moderator</source> |
9687 | <target>Beheerder</target> | 10267 | <target>Beheerder</target> |
9688 | 10268 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group> | |
9689 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group></trans-unit><trans-unit id="2279527393438260622" datatype="html"> | 10269 | </trans-unit> |
9690 | <source>Search videos, playlists, channels…</source><target state="new">Search videos, playlists, channels…</target> | 10270 | <trans-unit id="2279527393438260622" datatype="html"> |
10271 | <source>Search videos, playlists, channels…</source> | ||
10272 | <target state="new">Search videos, playlists, channels…</target> | ||
9691 | <context-group purpose="location"> | 10273 | <context-group purpose="location"> |
9692 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> | 10274 | <context context-type="sourcefile">src/app/header/search-typeahead.component.html</context> |
9693 | <context context-type="linenumber">3</context> | 10275 | <context context-type="linenumber">3</context> |
@@ -9698,101 +10280,101 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9698 | <target>Video verwijderd van | 10280 | <target>Video verwijderd van |
9699 | <x id="PH"/> | 10281 | <x id="PH"/> |
9700 | </target> | 10282 | </target> |
9701 | 10283 | <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">306</context></context-group> | |
9702 | 10284 | <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">93</context></context-group> | |
9703 | <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">306</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">93</context></context-group></trans-unit> | 10285 | </trans-unit> |
9704 | <trans-unit id="1056145626640340519"> | 10286 | <trans-unit id="1056145626640340519"> |
9705 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> | 10287 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> |
9706 | <target>Video toegevoegd in <x id="PH"/> op tijdstempels <x id="PH_1"/></target> | 10288 | <target>Video toegevoegd in <x id="PH"/> op tijdstempels <x id="PH_1"/></target> |
9707 | 10289 | <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">374</context></context-group> | |
9708 | <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">374</context></context-group></trans-unit> | 10290 | </trans-unit> |
9709 | <trans-unit id="7754186870520534716"> | 10291 | <trans-unit id="7754186870520534716"> |
9710 | <source>Video added in <x id="PH"/> </source> | 10292 | <source>Video added in <x id="PH"/> </source> |
9711 | <target>Video toegevoegd in | 10293 | <target>Video toegevoegd in |
9712 | <x id="PH"/> | 10294 | <x id="PH"/> |
9713 | </target> | 10295 | </target> |
9714 | 10296 | <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">375</context></context-group> | |
9715 | <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">375</context></context-group></trans-unit> | 10297 | </trans-unit> |
9716 | <trans-unit id="985751964589921228"> | 10298 | <trans-unit id="985751964589921228"> |
9717 | <source>Timestamps updated</source> | 10299 | <source>Timestamps updated</source> |
9718 | <target>Tijdstempels bijgewerkt</target> | 10300 | <target>Tijdstempels bijgewerkt</target> |
9719 | 10301 | <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">274</context></context-group> | |
9720 | 10302 | <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">112</context></context-group> | |
9721 | <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">274</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">112</context></context-group></trans-unit> | 10303 | </trans-unit> |
9722 | <trans-unit id="6421445850411984665" datatype="html"> | 10304 | <trans-unit id="6421445850411984665" datatype="html"> |
9723 | <source>Starts at</source> | 10305 | <source>Starts at</source> |
9724 | <target state="translated">Begint bij</target> | 10306 | <target state="translated">Begint bij</target> |
9725 | 10307 | <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">135</context></context-group> | |
9726 | 10308 | <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">138</context></context-group> | |
9727 | <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">135</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">138</context></context-group></trans-unit> | 10309 | </trans-unit> |
9728 | <trans-unit id="7145200412085189912" datatype="html"> | 10310 | <trans-unit id="7145200412085189912" datatype="html"> |
9729 | <source>Stops at</source> | 10311 | <source>Stops at</source> |
9730 | <target state="translated">Eindigt bij</target> | 10312 | <target state="translated">Eindigt bij</target> |
9731 | 10313 | <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">136</context></context-group> | |
9732 | <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">136</context></context-group></trans-unit> | 10314 | </trans-unit> |
9733 | <trans-unit id="921225940108335688" datatype="html"> | 10315 | <trans-unit id="921225940108335688" datatype="html"> |
9734 | <source>and stops at</source> | 10316 | <source>and stops at</source> |
9735 | <target state="translated">en eindigt bij</target> | 10317 | <target state="translated">en eindigt bij</target> |
9736 | 10318 | <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">138</context></context-group> | |
9737 | <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">138</context></context-group></trans-unit> | 10319 | </trans-unit> |
9738 | <trans-unit id="2909684945706361544" datatype="html"> | 10320 | <trans-unit id="2909684945706361544" datatype="html"> |
9739 | <source>Delete video</source> | 10321 | <source>Delete video</source> |
9740 | <target state="translated">Video verwijderen</target> | 10322 | <target state="translated">Video verwijderen</target> |
9741 | 10323 | <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> | |
9742 | <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> | 10324 | </trans-unit> |
9743 | <trans-unit id="2210418817778733727" datatype="html"> | 10325 | <trans-unit id="2210418817778733727" datatype="html"> |
9744 | <source>Actions for the comment</source> | 10326 | <source>Actions for the comment</source> |
9745 | <target state="translated">Acties voor de reactie</target> | 10327 | <target state="translated">Acties voor de reactie</target> |
9746 | 10328 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">412</context></context-group> | |
9747 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">412</context></context-group></trans-unit> | 10329 | </trans-unit> |
9748 | <trans-unit id="7978668497183230348" datatype="html"> | 10330 | <trans-unit id="7978668497183230348" datatype="html"> |
9749 | <source>Delete comment</source> | 10331 | <source>Delete comment</source> |
9750 | <target state="translated">Reactie verwijderen</target> | 10332 | <target state="translated">Reactie verwijderen</target> |
9751 | 10333 | <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> | |
9752 | <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> | 10334 | </trans-unit> |
9753 | <trans-unit id="6747218355168080191" datatype="html"> | 10335 | <trans-unit id="6747218355168080191" datatype="html"> |
9754 | <source>Do you really want to delete this comment?</source> | 10336 | <source>Do you really want to delete this comment?</source> |
9755 | <target state="translated">Wil je deze reactie echt verwijderen?</target> | 10337 | <target state="translated">Wil je deze reactie echt verwijderen?</target> |
9756 | 10338 | <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> | |
9757 | 10339 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">422</context></context-group> | |
9758 | <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">422</context></context-group></trans-unit> | 10340 | </trans-unit> |
9759 | <trans-unit id="7837272126865175984" datatype="html"> | 10341 | <trans-unit id="7837272126865175984" datatype="html"> |
9760 | <source>Comment deleted.</source> | 10342 | <source>Comment deleted.</source> |
9761 | <target state="translated">Reactie verwijderd.</target> | 10343 | <target state="translated">Reactie verwijderd.</target> |
9762 | 10344 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">430</context></context-group> | |
9763 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">430</context></context-group></trans-unit> | 10345 | </trans-unit> |
9764 | <trans-unit id="346270517625845962" datatype="html"> | 10346 | <trans-unit id="346270517625845962" datatype="html"> |
9765 | <source>Encoder</source> | 10347 | <source>Encoder</source> |
9766 | <target state="translated">Encoder</target> | 10348 | <target state="translated">Encoder</target> |
9767 | 10349 | <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> | |
9768 | <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> | 10350 | </trans-unit> |
9769 | <trans-unit id="2331557444464201331" datatype="html"> | 10351 | <trans-unit id="2331557444464201331" datatype="html"> |
9770 | <source>Format name</source> | 10352 | <source>Format name</source> |
9771 | <target state="translated">Formaatnaam</target> | 10353 | <target state="translated">Formaatnaam</target> |
9772 | 10354 | <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> | |
9773 | <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> | 10355 | </trans-unit> |
9774 | <trans-unit id="45739481977493163" datatype="html"> | 10356 | <trans-unit id="45739481977493163" datatype="html"> |
9775 | <source>Size</source> | 10357 | <source>Size</source> |
9776 | <target state="translated">Grootte</target> | 10358 | <target state="translated">Grootte</target> |
9777 | 10359 | <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> | |
9778 | <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> | 10360 | </trans-unit> |
9779 | <trans-unit id="7742520815129539114" datatype="html"> | 10361 | <trans-unit id="7742520815129539114" datatype="html"> |
9780 | <source>Bitrate</source> | 10362 | <source>Bitrate</source> |
9781 | <target state="translated">Bitrate</target> | 10363 | <target state="translated">Bitrate</target> |
9782 | 10364 | <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> | |
9783 | 10365 | <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> | |
9784 | <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> | 10366 | </trans-unit> |
9785 | <trans-unit id="4094960161662677662" datatype="html"> | 10367 | <trans-unit id="4094960161662677662" datatype="html"> |
9786 | <source>Codec</source> | 10368 | <source>Codec</source> |
9787 | <target state="translated">Codec</target> | 10369 | <target state="translated">Codec</target> |
9788 | 10370 | <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> | |
9789 | <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> | 10371 | </trans-unit> |
9790 | <trans-unit id="2115592966120408375"> | 10372 | <trans-unit id="2115592966120408375"> |
9791 | <source>Copied</source> | 10373 | <source>Copied</source> |
9792 | <target>Gekopieerd</target> | 10374 | <target>Gekopieerd</target> |
9793 | 10375 | <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> | |
9794 | 10376 | <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> | |
9795 | <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> | 10377 | </trans-unit> |
9796 | <trans-unit id="4323470180912194028" datatype="html"> | 10378 | <trans-unit id="4323470180912194028" datatype="html"> |
9797 | <source>Copy</source> | 10379 | <source>Copy</source> |
9798 | <target state="translated">Kopieren</target> | 10380 | <target state="translated">Kopieren</target> |
@@ -9802,31 +10384,31 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9802 | <trans-unit id="1472171759957681533"> | 10384 | <trans-unit id="1472171759957681533"> |
9803 | <source>Video reported.</source> | 10385 | <source>Video reported.</source> |
9804 | <target>Video gerapporteerd.</target> | 10386 | <target>Video gerapporteerd.</target> |
9805 | 10387 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.ts</context><context context-type="linenumber">113</context></context-group> | |
9806 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.ts</context><context context-type="linenumber">113</context></context-group></trans-unit> | 10388 | </trans-unit> |
9807 | <trans-unit id="3622946684246476652"> | 10389 | <trans-unit id="3622946684246476652"> |
9808 | <source>Do you really want to delete this video?</source> | 10390 | <source>Do you really want to delete this video?</source> |
9809 | <target>Weet je zeker dat je de video wil verwijderen?</target> | 10391 | <target>Weet je zeker dat je de video wil verwijderen?</target> |
9810 | 10392 | <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> | |
9811 | 10393 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">387</context></context-group> | |
9812 | 10394 | <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> | |
9813 | <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/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">387</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">203</context></context-group></trans-unit> | 10395 | </trans-unit> |
9814 | <trans-unit id="3941342949736653028" datatype="html"> | 10396 | <trans-unit id="3941342949736653028" datatype="html"> |
9815 | <source>Video deleted.</source> | 10397 | <source>Video deleted.</source> |
9816 | <target state="translated">Video verwijderd.</target> | 10398 | <target state="translated">Video verwijderd.</target> |
9817 | 10399 | <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">98</context></context-group> | |
9818 | 10400 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">395</context></context-group> | |
9819 | <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">98</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">395</context></context-group></trans-unit> | 10401 | </trans-unit> |
9820 | <trans-unit id="5072091387445907742" datatype="html"> | 10402 | <trans-unit id="5072091387445907742" datatype="html"> |
9821 | <source>Actions for the reporter</source> | 10403 | <source>Actions for the reporter</source> |
9822 | <target state="translated">Acties voor de aangever</target> | 10404 | <target state="translated">Acties voor de aangever</target> |
9823 | 10405 | <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> | |
9824 | <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> | 10406 | </trans-unit> |
9825 | <trans-unit id="6599069899275412095" datatype="html"> | 10407 | <trans-unit id="6599069899275412095" datatype="html"> |
9826 | <source>Mute reporter</source> | 10408 | <source>Mute reporter</source> |
9827 | <target state="translated">Reporter dempen</target> | 10409 | <target state="translated">Reporter dempen</target> |
9828 | 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">328</context></context-group> | |
9829 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">328</context></context-group></trans-unit> | 10411 | </trans-unit> |
9830 | <trans-unit id="2990849907502572301" datatype="html"> | 10412 | <trans-unit id="2990849907502572301" datatype="html"> |
9831 | <source>This video will be duplicated by your instance.</source> | 10413 | <source>This video will be duplicated by your instance.</source> |
9832 | <target state="translated">Je exemplaar van PeerTube zal deze video dupliceren.</target> | 10414 | <target state="translated">Je exemplaar van PeerTube zal deze video dupliceren.</target> |
@@ -9840,18 +10422,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9840 | <trans-unit id="7672331870004528654" datatype="html"> | 10422 | <trans-unit id="7672331870004528654" datatype="html"> |
9841 | <source>Display live information</source> | 10423 | <source>Display live information</source> |
9842 | <target state="translated">Informatie live-uitzending tonen</target> | 10424 | <target state="translated">Informatie live-uitzending tonen</target> |
9843 | 10425 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">174</context></context-group> | |
9844 | 10426 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">278</context></context-group> | |
9845 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.ts</context><context context-type="linenumber">174</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">278</context></context-group></trans-unit> | 10427 | </trans-unit> |
9846 | <trans-unit id="4021752662928002901" datatype="html"> | 10428 | <trans-unit id="4021752662928002901" datatype="html"> |
9847 | <source>Update</source> | 10429 | <source>Update</source> |
9848 | <target state="translated">Bijwerken</target> | 10430 | <target state="translated">Bijwerken</target> |
9849 | 10431 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">176</context></context-group> | |
9850 | 10432 | <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">110</context></context-group> | |
9851 | 10433 | <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> | |
9852 | 10434 | <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> | |
9853 | 10435 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">284</context></context-group> | |
9854 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">176</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">110</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">284</context></context-group></trans-unit> | 10436 | </trans-unit> |
9855 | <trans-unit id="420763834450076269" datatype="html"> | 10437 | <trans-unit id="420763834450076269" datatype="html"> |
9856 | <source>Block</source> | 10438 | <source>Block</source> |
9857 | <target state="translated">Blokkering</target> | 10439 | <target state="translated">Blokkering</target> |
@@ -9860,20 +10442,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9860 | <trans-unit id="1950057220179636309"> | 10442 | <trans-unit id="1950057220179636309"> |
9861 | <source>Save to playlist</source> | 10443 | <source>Save to playlist</source> |
9862 | <target>Opslaan in afspeellijst</target> | 10444 | <target>Opslaan in afspeellijst</target> |
9863 | 10445 | <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> | |
9864 | 10446 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">264</context></context-group> | |
9865 | <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><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">264</context></context-group></trans-unit> | 10447 | </trans-unit> |
9866 | <trans-unit id="8272123190776748811" datatype="html"> | 10448 | <trans-unit id="8272123190776748811" datatype="html"> |
9867 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> | 10449 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> |
9868 | <target state="translated">Je moet <a href="/login">laangemeld</a> zijn om deze video te beoordelen.</target> | 10450 | <target state="translated">Je moet <a href="/login">laangemeld</a> zijn om deze video te beoordelen.</target> |
9869 | 10451 | <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> | |
9870 | <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> | 10452 | </trans-unit> |
9871 | <trans-unit id="4503408361537553733" datatype="html"> | 10453 | <trans-unit id="4503408361537553733" datatype="html"> |
9872 | <source>Mirror</source> | 10454 | <source>Mirror</source> |
9873 | <target state="translated">Spiegelen</target> | 10455 | <target state="translated">Spiegelen</target> |
9874 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">302</context></context-group> | 10456 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">302</context></context-group> |
9875 | </trans-unit><trans-unit id="2631340539474479416" datatype="html"> | 10457 | </trans-unit> |
9876 | <source>Subtitles</source><target state="new">Subtitles</target> | 10458 | <trans-unit id="2631340539474479416" datatype="html"> |
10459 | <source>Subtitles</source> | ||
10460 | <target state="new">Subtitles</target> | ||
9877 | <context-group purpose="location"> | 10461 | <context-group purpose="location"> |
9878 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | 10462 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> |
9879 | <context context-type="linenumber">9</context> | 10463 | <context context-type="linenumber">9</context> |
@@ -9882,27 +10466,30 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9882 | <trans-unit id="7008439939460403347" datatype="html"> | 10466 | <trans-unit id="7008439939460403347" datatype="html"> |
9883 | <source>Report</source> | 10467 | <source>Report</source> |
9884 | <target state="translated">Aangeven</target> | 10468 | <target state="translated">Aangeven</target> |
9885 | 10469 | <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> | |
9886 | <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">314</context></context-group></trans-unit> | 10470 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">314</context></context-group> |
10471 | </trans-unit> | ||
9887 | <trans-unit id="4814285799071780083" datatype="html"> | 10472 | <trans-unit id="4814285799071780083" datatype="html"> |
9888 | <source>Remove</source> | 10473 | <source>Remove</source> |
9889 | <target state="translated">Verwijderen</target> | 10474 | <target state="translated">Verwijderen</target> |
9890 | 10475 | <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> | |
9891 | <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> | 10476 | </trans-unit> |
9892 | <trans-unit id="6871668720687277843" datatype="html"> | 10477 | <trans-unit id="6871668720687277843" datatype="html"> |
9893 | <source>Remove & re-draft</source> | 10478 | <source>Remove & re-draft</source> |
9894 | <target state="translated">Verwijderen & opnieuw klad</target> | 10479 | <target state="translated">Verwijderen & opnieuw klad</target> |
9895 | 10480 | <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> | |
9896 | <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="992317512448454409" datatype="html"> | 10481 | </trans-unit> |
9897 | <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> | 10482 | <trans-unit id="992317512448454409" datatype="html"> |
9898 | 10483 | <source>{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</source> | |
9899 | <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> | 10484 | <target state="new">{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</target> |
10485 | <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> | ||
10486 | </trans-unit> | ||
9900 | <trans-unit id="4903651219400691248" datatype="html"> | 10487 | <trans-unit id="4903651219400691248" datatype="html"> |
9901 | <source>Mute account</source> | 10488 | <source>Mute account</source> |
9902 | <target state="translated">Account dempen</target> | 10489 | <target state="translated">Account dempen</target> |
9903 | 10490 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">304</context></context-group> | |
9904 | 10491 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">322</context></context-group> | |
9905 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">304</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">322</context></context-group></trans-unit> | 10492 | </trans-unit> |
9906 | <trans-unit id="4021487547497211597" datatype="html"> | 10493 | <trans-unit id="4021487547497211597" datatype="html"> |
9907 | <source>Open video actions</source> | 10494 | <source>Open video actions</source> |
9908 | <target state="new">Open video actions</target> | 10495 | <target state="new">Open video actions</target> |
@@ -9918,33 +10505,33 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9918 | <trans-unit id="3719503424625455635" datatype="html"> | 10505 | <trans-unit id="3719503424625455635" datatype="html"> |
9919 | <source>Mute server account</source> | 10506 | <source>Mute server account</source> |
9920 | <target state="translated">Server-account dempen</target> | 10507 | <target state="translated">Server-account dempen</target> |
9921 | 10508 | <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> | |
9922 | <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> | 10509 | </trans-unit> |
9923 | <trans-unit id="7008439939460403347"> | 10510 | <trans-unit id="7008439939460403347"> |
9924 | <source>Report</source> | 10511 | <source>Report</source> |
9925 | <target>Rapporteer</target> | 10512 | <target>Rapporteer</target> |
9926 | 10513 | <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> | |
9927 | <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></trans-unit> | 10514 | </trans-unit> |
9928 | <trans-unit id="829951422090160526" datatype="html"> | 10515 | <trans-unit id="829951422090160526" datatype="html"> |
9929 | <source>Reported part</source> | 10516 | <source>Reported part</source> |
9930 | <target state="translated">Aangegeven gedeelte</target> | 10517 | <target state="translated">Aangegeven gedeelte</target> |
9931 | 10518 | <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> | |
9932 | <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> | 10519 | </trans-unit> |
9933 | <trans-unit id="4388879716045736175" datatype="html"> | 10520 | <trans-unit id="4388879716045736175" datatype="html"> |
9934 | <source>Note</source> | 10521 | <source>Note</source> |
9935 | <target state="translated">Noteren</target> | 10522 | <target state="translated">Noteren</target> |
9936 | 10523 | <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> | |
9937 | <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> | 10524 | </trans-unit> |
9938 | <trans-unit id="7234922541542636802" datatype="html"> | 10525 | <trans-unit id="7234922541542636802" datatype="html"> |
9939 | <source>The video was deleted</source> | 10526 | <source>The video was deleted</source> |
9940 | <target state="translated">De video is verwijderd</target> | 10527 | <target state="translated">De video is verwijderd</target> |
9941 | 10528 | <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> | |
9942 | <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> | 10529 | </trans-unit> |
9943 | <trans-unit id="872792317034860453" datatype="html"> | 10530 | <trans-unit id="872792317034860453" datatype="html"> |
9944 | <source>Comment:</source> | 10531 | <source>Comment:</source> |
9945 | <target state="translated">Reactie:</target> | 10532 | <target state="translated">Reactie:</target> |
9946 | 10533 | <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> | |
9947 | <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> | 10534 | </trans-unit> |
9948 | <trans-unit id="397679576231234820" datatype="html"> | 10535 | <trans-unit id="397679576231234820" datatype="html"> |
9949 | <source>Messages with the reporter</source> | 10536 | <source>Messages with the reporter</source> |
9950 | <target state="translated">Berichten met de aangever</target> | 10537 | <target state="translated">Berichten met de aangever</target> |
@@ -9968,35 +10555,39 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9968 | <trans-unit id="4058575476871566236"> | 10555 | <trans-unit id="4058575476871566236"> |
9969 | <source>Published</source> | 10556 | <source>Published</source> |
9970 | <target>Gepubliceerd</target> | 10557 | <target>Gepubliceerd</target> |
9971 | 10558 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">158</context></context-group> | |
9972 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">158</context></context-group></trans-unit> | 10559 | </trans-unit> |
9973 | <trans-unit id="1747928867514972971" datatype="html"> | 10560 | <trans-unit id="1747928867514972971" datatype="html"> |
9974 | <source>Publication scheduled on</source> | 10561 | <source>Publication scheduled on</source> |
9975 | <target state="translated">Publicatie gepland op</target> | 10562 | <target state="translated">Publicatie gepland op</target> |
9976 | 10563 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">163</context></context-group> | |
9977 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 10564 | </trans-unit> |
9978 | <trans-unit id="4887724548587271148"> | 10565 | <trans-unit id="4887724548587271148"> |
9979 | <source>Waiting transcoding</source> | 10566 | <source>Waiting transcoding</source> |
9980 | <target>Wachten op transcoding</target> | 10567 | <target>Wachten op transcoding</target> |
9981 | 10568 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">167</context></context-group> | |
9982 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">167</context></context-group></trans-unit> | 10569 | </trans-unit> |
9983 | <trans-unit id="4517785179607945981"> | 10570 | <trans-unit id="4517785179607945981"> |
9984 | <source>To transcode</source> | 10571 | <source>To transcode</source> |
9985 | <target>Om te transcoden</target> | 10572 | <target>Om te transcoden</target> |
9986 | 10573 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">171</context></context-group> | |
9987 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit> | 10574 | </trans-unit> |
9988 | <trans-unit id="3299576663551440736"> | 10575 | <trans-unit id="3299576663551440736"> |
9989 | <source>To import</source> | 10576 | <source>To import</source> |
9990 | <target>Om te importeren</target> | 10577 | <target>Om te importeren</target> |
9991 | 10578 | <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> | |
9992 | <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="8492933894084361602" datatype="html"> | 10579 | </trans-unit> |
9993 | <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> | 10580 | <trans-unit id="8492933894084361602" datatype="html"> |
10581 | <source>Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</source> | ||
10582 | <target state="new">Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</target> | ||
9994 | <context-group purpose="location"> | 10583 | <context-group purpose="location"> |
9995 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context> | 10584 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context> |
9996 | <context context-type="linenumber">8</context> | 10585 | <context context-type="linenumber">8</context> |
9997 | </context-group> | 10586 | </context-group> |
9998 | </trans-unit><trans-unit id="187187500641108332" datatype="html"> | 10587 | </trans-unit> |
9999 | <source><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></source><target state="new"><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></target> | 10588 | <trans-unit id="187187500641108332" datatype="html"> |
10589 | <source><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></source> | ||
10590 | <target state="new"><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></target> | ||
10000 | <context-group purpose="location"> | 10591 | <context-group purpose="location"> |
10001 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context> | 10592 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context> |
10002 | <context context-type="linenumber">1</context> | 10593 | <context context-type="linenumber">1</context> |
@@ -10020,241 +10611,237 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10020 | <trans-unit id="2439066254855913806"> | 10611 | <trans-unit id="2439066254855913806"> |
10021 | <source>Only I can see this video</source> | 10612 | <source>Only I can see this video</source> |
10022 | <target>Ik kan deze video alleen zien</target> | 10613 | <target>Ik kan deze video alleen zien</target> |
10023 | 10614 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">325</context></context-group> | |
10024 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">325</context></context-group></trans-unit> | 10615 | </trans-unit> |
10025 | <trans-unit id="6767380569816110388" datatype="html"> | 10616 | <trans-unit id="6767380569816110388" datatype="html"> |
10026 | <source>Only shareable via a private link</source> | 10617 | <source>Only shareable via a private link</source> |
10027 | <target state="translated">Enkel deelbaar via een privé-verwijzing</target> | 10618 | <target state="translated">Enkel deelbaar via een privé-verwijzing</target> |
10028 | 10619 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">326</context></context-group> | |
10029 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">326</context></context-group></trans-unit> | 10620 | </trans-unit> |
10030 | <trans-unit id="6828965264297239528"> | 10621 | <trans-unit id="6828965264297239528"> |
10031 | <source>Anyone can see this video</source> | 10622 | <source>Anyone can see this video</source> |
10032 | <target>Iedereen kan deze video zien</target> | 10623 | <target>Iedereen kan deze video zien</target> |
10033 | 10624 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">327</context></context-group> | |
10034 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">327</context></context-group></trans-unit> | 10625 | </trans-unit> |
10035 | <trans-unit id="1425933035739773115" datatype="html"> | 10626 | <trans-unit id="1425933035739773115" datatype="html"> |
10036 | <source>Only users of this instance can see this video</source> | 10627 | <source>Only users of this instance can see this video</source> |
10037 | <target state="translated">Enkel gebruikers van dit exemplaar van PeerTube kunnen deze video zien</target> | 10628 | <target state="translated">Enkel gebruikers van dit exemplaar van PeerTube kunnen deze video zien</target> |
10038 | 10629 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">328</context></context-group> | |
10039 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">328</context></context-group></trans-unit> | 10630 | </trans-unit> |
10040 | <trans-unit id="ngb.alert.close" datatype="html"> | 10631 | <trans-unit id="ngb.alert.close" datatype="html"> |
10041 | <source>Close</source> | 10632 | <source>Close</source> |
10042 | <target state="translated">Sluiten</target> | 10633 | <target state="translated">Sluiten</target> |
10043 | 10634 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">58</context></context-group> | |
10044 | 10635 | </trans-unit> | |
10045 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/alert/alert.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | ||
10046 | <trans-unit id="ngb.carousel.slide-number" datatype="html"> | 10636 | <trans-unit id="ngb.carousel.slide-number" datatype="html"> |
10047 | <source>Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </source> | 10637 | <source>Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </source> |
10048 | <target state="translated">Dia <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> van <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </target> | 10638 | <target state="translated">Dia <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> van <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </target> |
10049 | |||
10050 | <note priority="1" from="description">Currently selected slide number read by screen reader</note> | 10639 | <note priority="1" from="description">Currently selected slide number read by screen reader</note> |
10051 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">114</context></context-group></trans-unit> | 10640 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">114</context></context-group> |
10641 | </trans-unit> | ||
10052 | <trans-unit id="ngb.carousel.previous" datatype="html"> | 10642 | <trans-unit id="ngb.carousel.previous" datatype="html"> |
10053 | <source>Previous</source> | 10643 | <source>Previous</source> |
10054 | <target state="translated">Vorige</target> | 10644 | <target state="translated">Vorige</target> |
10055 | 10645 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">132</context></context-group> | |
10056 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">132</context></context-group></trans-unit> | 10646 | </trans-unit> |
10057 | <trans-unit id="ngb.carousel.next" datatype="html"> | 10647 | <trans-unit id="ngb.carousel.next" datatype="html"> |
10058 | <source>Next</source> | 10648 | <source>Next</source> |
10059 | <target state="translated">Volgende</target> | 10649 | <target state="translated">Volgende</target> |
10060 | 10650 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">147</context></context-group> | |
10061 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">147</context></context-group></trans-unit> | 10651 | </trans-unit> |
10062 | <trans-unit id="ngb.datepicker.previous-month" datatype="html"> | 10652 | <trans-unit id="ngb.datepicker.previous-month" datatype="html"> |
10063 | <source>Previous month</source> | 10653 | <source>Previous month</source> |
10064 | <target state="translated">Vorige maand</target> | 10654 | <target state="translated">Vorige maand</target> |
10065 | 10655 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">24</context></context-group> | |
10066 | 10656 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">35</context></context-group> | |
10067 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">24</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">35</context></context-group></trans-unit> | 10657 | </trans-unit> |
10068 | <trans-unit id="ngb.datepicker.next-month" datatype="html"> | 10658 | <trans-unit id="ngb.datepicker.next-month" datatype="html"> |
10069 | <source>Next month</source> | 10659 | <source>Next month</source> |
10070 | <target state="translated">Volgende maand</target> | 10660 | <target state="translated">Volgende maand</target> |
10071 | 10661 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">47</context></context-group> | |
10072 | 10662 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">60</context></context-group> | |
10073 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">47</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">60</context></context-group></trans-unit> | 10663 | </trans-unit> |
10074 | <trans-unit id="ngb.datepicker.select-month" datatype="html"> | 10664 | <trans-unit id="ngb.datepicker.select-month" datatype="html"> |
10075 | <source>Select month</source> | 10665 | <source>Select month</source> |
10076 | <target state="translated">Maand selecteren</target> | 10666 | <target state="translated">Maand selecteren</target> |
10077 | 10667 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">44</context></context-group> | |
10078 | 10668 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">49</context></context-group> | |
10079 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">44</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">49</context></context-group></trans-unit> | 10669 | </trans-unit> |
10080 | <trans-unit id="ngb.datepicker.select-year" datatype="html"> | 10670 | <trans-unit id="ngb.datepicker.select-year" datatype="html"> |
10081 | <source>Select year</source> | 10671 | <source>Select year</source> |
10082 | <target state="translated">Jaar selecteren</target> | 10672 | <target state="translated">Jaar selecteren</target> |
10083 | 10673 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">59</context></context-group> | |
10084 | 10674 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">74</context></context-group> | |
10085 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">59</context></context-group><context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">74</context></context-group></trans-unit> | 10675 | </trans-unit> |
10086 | <trans-unit id="ngb.pagination.first" datatype="html"> | 10676 | <trans-unit id="ngb.pagination.first" datatype="html"> |
10087 | <source>««</source> | 10677 | <source>««</source> |
10088 | <target state="translated">««</target> | 10678 | <target state="translated">««</target> |
10089 | 10679 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">182</context></context-group> | |
10090 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">182</context></context-group></trans-unit> | 10680 | </trans-unit> |
10091 | <trans-unit id="ngb.pagination.previous" datatype="html"> | 10681 | <trans-unit id="ngb.pagination.previous" datatype="html"> |
10092 | <source>«</source> | 10682 | <source>«</source> |
10093 | <target state="translated">«</target> | 10683 | <target state="translated">«</target> |
10094 | 10684 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">186</context></context-group> | |
10095 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">186</context></context-group></trans-unit> | 10685 | </trans-unit> |
10096 | <trans-unit id="ngb.pagination.next" datatype="html"> | 10686 | <trans-unit id="ngb.pagination.next" datatype="html"> |
10097 | <source>»</source> | 10687 | <source>»</source> |
10098 | <target state="translated">»</target> | 10688 | <target state="translated">»</target> |
10099 | 10689 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">194</context></context-group> | |
10100 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">194</context></context-group></trans-unit> | 10690 | </trans-unit> |
10101 | <trans-unit id="ngb.pagination.last" datatype="html"> | 10691 | <trans-unit id="ngb.pagination.last" datatype="html"> |
10102 | <source>»»</source> | 10692 | <source>»»</source> |
10103 | <target state="translated">»»</target> | 10693 | <target state="translated">»»</target> |
10104 | 10694 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">201</context></context-group> | |
10105 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">201</context></context-group></trans-unit> | 10695 | </trans-unit> |
10106 | <trans-unit id="ngb.pagination.first-aria" datatype="html"> | 10696 | <trans-unit id="ngb.pagination.first-aria" datatype="html"> |
10107 | <source>First</source> | 10697 | <source>First</source> |
10108 | <target state="translated">Eerste</target> | 10698 | <target state="translated">Eerste</target> |
10109 | 10699 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">208</context></context-group> | |
10110 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">208</context></context-group></trans-unit> | 10700 | </trans-unit> |
10111 | <trans-unit id="ngb.pagination.previous-aria" datatype="html"> | 10701 | <trans-unit id="ngb.pagination.previous-aria" datatype="html"> |
10112 | <source>Previous</source> | 10702 | <source>Previous</source> |
10113 | <target state="translated">Vorige</target> | 10703 | <target state="translated">Vorige</target> |
10114 | 10704 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">215</context></context-group> | |
10115 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">215</context></context-group></trans-unit> | 10705 | </trans-unit> |
10116 | <trans-unit id="ngb.pagination.next-aria" datatype="html"> | 10706 | <trans-unit id="ngb.pagination.next-aria" datatype="html"> |
10117 | <source>Next</source> | 10707 | <source>Next</source> |
10118 | <target state="translated">Volgende</target> | 10708 | <target state="translated">Volgende</target> |
10119 | 10709 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">226</context></context-group> | |
10120 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">226</context></context-group></trans-unit> | 10710 | </trans-unit> |
10121 | <trans-unit id="ngb.pagination.last-aria" datatype="html"> | 10711 | <trans-unit id="ngb.pagination.last-aria" datatype="html"> |
10122 | <source>Last</source> | 10712 | <source>Last</source> |
10123 | <target state="translated">Laatste</target> | 10713 | <target state="translated">Laatste</target> |
10124 | 10714 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">232</context></context-group> | |
10125 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">232</context></context-group></trans-unit> | 10715 | </trans-unit> |
10126 | <trans-unit id="ngb.progressbar.value" datatype="html"> | 10716 | <trans-unit id="ngb.progressbar.value" datatype="html"> |
10127 | <source><x id="INTERPOLATION"/></source> | 10717 | <source><x id="INTERPOLATION"/></source> |
10128 | <target state="translated"><x id="INTERPOLATION"/></target> | 10718 | <target state="translated"><x id="INTERPOLATION"/></target> |
10129 | 10719 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/progressbar/progressbar.ts</context><context context-type="linenumber">32</context></context-group> | |
10130 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/progressbar/progressbar.ts</context><context context-type="linenumber">32</context></context-group></trans-unit> | 10720 | </trans-unit> |
10131 | <trans-unit id="ngb.timepicker.HH" datatype="html"> | 10721 | <trans-unit id="ngb.timepicker.HH" datatype="html"> |
10132 | <source>HH</source> | 10722 | <source>HH</source> |
10133 | <target state="translated">UU</target> | 10723 | <target state="translated">UU</target> |
10134 | 10724 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">40</context></context-group> | |
10135 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">40</context></context-group></trans-unit> | 10725 | </trans-unit> |
10136 | <trans-unit id="ngb.timepicker.hours" datatype="html"> | 10726 | <trans-unit id="ngb.timepicker.hours" datatype="html"> |
10137 | <source>Hours</source> | 10727 | <source>Hours</source> |
10138 | <target state="translated">Uren</target> | 10728 | <target state="translated">Uren</target> |
10139 | 10729 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">46</context></context-group> | |
10140 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">46</context></context-group></trans-unit> | 10730 | </trans-unit> |
10141 | <trans-unit id="ngb.timepicker.MM" datatype="html"> | 10731 | <trans-unit id="ngb.timepicker.MM" datatype="html"> |
10142 | <source>MM</source> | 10732 | <source>MM</source> |
10143 | <target state="translated">MM</target> | 10733 | <target state="translated">MM</target> |
10144 | 10734 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">51</context></context-group> | |
10145 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> | 10735 | </trans-unit> |
10146 | <trans-unit id="ngb.timepicker.minutes" datatype="html"> | 10736 | <trans-unit id="ngb.timepicker.minutes" datatype="html"> |
10147 | <source>Minutes</source> | 10737 | <source>Minutes</source> |
10148 | <target state="translated">Minuten</target> | 10738 | <target state="translated">Minuten</target> |
10149 | 10739 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">58</context></context-group> | |
10150 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">58</context></context-group></trans-unit> | 10740 | </trans-unit> |
10151 | <trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | 10741 | <trans-unit id="ngb.timepicker.increment-hours" datatype="html"> |
10152 | <source>Increment hours</source> | 10742 | <source>Increment hours</source> |
10153 | <target state="translated">Uren vermeerderen</target> | 10743 | <target state="translated">Uren vermeerderen</target> |
10154 | 10744 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">63</context></context-group> | |
10155 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">63</context></context-group></trans-unit> | 10745 | </trans-unit> |
10156 | <trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | 10746 | <trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> |
10157 | <source>Decrement hours</source> | 10747 | <source>Decrement hours</source> |
10158 | <target state="translated">Uren verminderen</target> | 10748 | <target state="translated">Uren verminderen</target> |
10159 | 10749 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">69</context></context-group> | |
10160 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">69</context></context-group></trans-unit> | 10750 | </trans-unit> |
10161 | <trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | 10751 | <trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> |
10162 | <source>Increment minutes</source> | 10752 | <source>Increment minutes</source> |
10163 | <target state="translated">Minuten vermeerderen</target> | 10753 | <target state="translated">Minuten vermeerderen</target> |
10164 | 10754 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">76</context></context-group> | |
10165 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">76</context></context-group></trans-unit> | 10755 | </trans-unit> |
10166 | <trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | 10756 | <trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> |
10167 | <source>Decrement minutes</source> | 10757 | <source>Decrement minutes</source> |
10168 | <target state="translated">Minuten verminderen</target> | 10758 | <target state="translated">Minuten verminderen</target> |
10169 | 10759 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">82</context></context-group> | |
10170 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> | 10760 | </trans-unit> |
10171 | <trans-unit id="ngb.timepicker.SS" datatype="html"> | 10761 | <trans-unit id="ngb.timepicker.SS" datatype="html"> |
10172 | <source>SS</source> | 10762 | <source>SS</source> |
10173 | <target state="translated">SS</target> | 10763 | <target state="translated">SS</target> |
10174 | 10764 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">87</context></context-group> | |
10175 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">87</context></context-group></trans-unit> | 10765 | </trans-unit> |
10176 | <trans-unit id="ngb.timepicker.seconds" datatype="html"> | 10766 | <trans-unit id="ngb.timepicker.seconds" datatype="html"> |
10177 | <source>Seconds</source> | 10767 | <source>Seconds</source> |
10178 | <target state="translated">Seconden</target> | 10768 | <target state="translated">Seconden</target> |
10179 | 10769 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">92</context></context-group> | |
10180 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">92</context></context-group></trans-unit> | 10770 | </trans-unit> |
10181 | <trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | 10771 | <trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> |
10182 | <source>Increment seconds</source> | 10772 | <source>Increment seconds</source> |
10183 | <target state="translated">Seconds vermeerderen</target> | 10773 | <target state="translated">Seconds vermeerderen</target> |
10184 | 10774 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">100</context></context-group> | |
10185 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">100</context></context-group></trans-unit> | 10775 | </trans-unit> |
10186 | <trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | 10776 | <trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> |
10187 | <source>Decrement seconds</source> | 10777 | <source>Decrement seconds</source> |
10188 | <target state="translated">Seconden verminderen</target> | 10778 | <target state="translated">Seconden verminderen</target> |
10189 | 10779 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">106</context></context-group> | |
10190 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">106</context></context-group></trans-unit> | 10780 | </trans-unit> |
10191 | <trans-unit id="ngb.timepicker.PM" datatype="html"> | 10781 | <trans-unit id="ngb.timepicker.PM" datatype="html"> |
10192 | <source><x id="INTERPOLATION"/></source> | 10782 | <source><x id="INTERPOLATION"/></source> |
10193 | <target state="translated"><x id="INTERPOLATION"/></target> | 10783 | <target state="translated"><x id="INTERPOLATION"/></target> |
10194 | 10784 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">123</context></context-group> | |
10195 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">123</context></context-group></trans-unit> | 10785 | </trans-unit> |
10196 | <trans-unit id="ngb.timepicker.AM" datatype="html"> | 10786 | <trans-unit id="ngb.timepicker.AM" datatype="html"> |
10197 | <source><x id="INTERPOLATION"/></source> | 10787 | <source><x id="INTERPOLATION"/></source> |
10198 | <target state="translated"><x id="INTERPOLATION"/></target> | 10788 | <target state="translated"><x id="INTERPOLATION"/></target> |
10199 | 10789 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">115</context></context-group> | |
10200 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/timepicker/timepicker.ts</context><context context-type="linenumber">115</context></context-group></trans-unit> | 10790 | </trans-unit> |
10201 | <trans-unit id="ngb.toast.close-aria" datatype="html"> | 10791 | <trans-unit id="ngb.toast.close-aria" datatype="html"> |
10202 | <source>Close</source> | 10792 | <source>Close</source> |
10203 | <target state="translated">Sluiten</target> | 10793 | <target state="translated">Sluiten</target> |
10204 | 10794 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/toast/toast.ts</context><context context-type="linenumber">78</context></context-group> | |
10205 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/toast/toast.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 10795 | </trans-unit> |
10206 | <trans-unit id="5210096066382592800"> | 10796 | <trans-unit id="5210096066382592800"> |
10207 | <source>Video to import updated.</source> | 10797 | <source>Video to import updated.</source> |
10208 | <target>Video naar import bijgewerkt.</target> | 10798 | <target>Video naar import bijgewerkt.</target> |
10209 | 10799 | <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">142</context></context-group> | |
10210 | 10800 | <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">143</context></context-group> | |
10211 | <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">142</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">143</context></context-group></trans-unit> | 10801 | </trans-unit> |
10212 | <trans-unit id="3284171506518522275"> | 10802 | <trans-unit id="3284171506518522275"> |
10213 | <source>Your video was uploaded to your account and is private.</source> | 10803 | <source>Your video was uploaded to your account and is private.</source> |
10214 | <target>Jouw video is geupload naar jouw account en is privé. | 10804 | <target>Jouw video is geupload naar jouw account en is privé. |
10215 | </target> | 10805 | </target> |
10216 | 10806 | ||
10217 | <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">118</context></context-group></trans-unit> | 10807 | <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">125</context></context-group></trans-unit> |
10218 | <trans-unit id="5699822024600815733"> | 10808 | <trans-unit id="5699822024600815733"> |
10219 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10809 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10220 | <target>Maar geassocieerde data(tags, beschrijving...) zullen verloren raken, weet je zeker dat je deze pagina wilt verlaten?</target> | 10810 | <target>Maar geassocieerde data(tags, beschrijving...) zullen verloren raken, weet je zeker dat je deze pagina wilt verlaten?</target> |
10221 | 10811 | ||
10222 | <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">119</context></context-group></trans-unit> | 10812 | <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> |
10223 | <trans-unit id="1219739004043110649"> | 10813 | <trans-unit id="1219739004043110649"> |
10224 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10814 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10225 | <target>Jouw video is nog niet geupload, weet je zeker dat je deze pagina wilt verlaten?</target> | 10815 | <target>Jouw video is nog niet geupload, weet je zeker dat je deze pagina wilt verlaten?</target> |
10226 | 10816 | ||
10227 | <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">121</context></context-group></trans-unit> | 10817 | <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">128</context></context-group></trans-unit> |
10228 | <trans-unit id="6932865105766151309" datatype="html"> | 10818 | <trans-unit id="6932865105766151309" datatype="html"> |
10229 | <source>Upload</source> | 10819 | <source>Upload</source> |
10230 | <target state="translated">Uploaden</target> | 10820 | <target state="translated">Uploaden</target> |
10231 | 10821 | ||
10232 | <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">227</context></context-group></trans-unit> | 10822 | <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">234</context></context-group></trans-unit> |
10233 | <trans-unit id="8278735427925094503"> | 10823 | <trans-unit id="8278735427925094503"> |
10234 | <source>Upload <x id="PH"/> </source> | 10824 | <source>Upload <x id="PH"/> </source> |
10235 | <target> | 10825 | <target> |
10236 | <x id="PH"/> uploaden | 10826 | <x id="PH"/> uploaden |
10237 | </target> | 10827 | </target> |
10238 | 10828 | ||
10239 | <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">229</context></context-group></trans-unit> | 10829 | <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">236</context></context-group></trans-unit> |
10240 | |||
10241 | <trans-unit id="5981816353437801748"> | 10830 | <trans-unit id="5981816353437801748"> |
10242 | <source>Video published.</source> | 10831 | <source>Video published.</source> |
10243 | <target>Video gepubliceerd.</target> | 10832 | <target>Video gepubliceerd.</target> |
10244 | 10833 | ||
10245 | <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">251</context></context-group></trans-unit> | 10834 | <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">258</context></context-group></trans-unit> |
10246 | |||
10247 | |||
10248 | <trans-unit id="764164089183618119"> | 10835 | <trans-unit id="764164089183618119"> |
10249 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 10836 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
10250 | <target>Je hebt niet-opgeslagen wijzigingen! Als je vertrekt, gaan je wijzigingen verloren.</target> | 10837 | <target>Je hebt niet-opgeslagen wijzigingen! Als je vertrekt, gaan je wijzigingen verloren.</target> |
10251 | 10838 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">94</context></context-group> | |
10252 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">94</context></context-group></trans-unit> | 10839 | </trans-unit> |
10253 | <trans-unit id="8306050839443016954"> | 10840 | <trans-unit id="8306050839443016954"> |
10254 | <source>Video updated.</source> | 10841 | <source>Video updated.</source> |
10255 | <target>Video geupdate.</target> | 10842 | <target>Video geupdate.</target> |
10256 | 10843 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">158</context></context-group> | |
10257 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">158</context></context-group></trans-unit> | 10844 | </trans-unit> |
10258 | <trans-unit id="5512208811126492983" datatype="html"> | 10845 | <trans-unit id="5512208811126492983" datatype="html"> |
10259 | <source>Report comment</source> | 10846 | <source>Report comment</source> |
10260 | <target state="translated">Reactie aangeven</target> | 10847 | <target state="translated">Reactie aangeven</target> |
@@ -10263,24 +10850,26 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10263 | <trans-unit id="6775540171466219199" datatype="html"> | 10850 | <trans-unit id="6775540171466219199" datatype="html"> |
10264 | <source>Stop autoplaying next video</source> | 10851 | <source>Stop autoplaying next video</source> |
10265 | <target state="translated">Automatisch afspelen volgende video stoppen</target> | 10852 | <target state="translated">Automatisch afspelen volgende video stoppen</target> |
10266 | 10853 | <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">221</context></context-group> | |
10267 | <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">221</context></context-group></trans-unit> | 10854 | </trans-unit> |
10268 | <trans-unit id="5149234672404299151" datatype="html"> | 10855 | <trans-unit id="5149234672404299151" datatype="html"> |
10269 | <source>Autoplay next video</source> | 10856 | <source>Autoplay next video</source> |
10270 | <target state="translated">Automatisch volgende video afspelen</target> | 10857 | <target state="translated">Automatisch volgende video afspelen</target> |
10271 | 10858 | <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">222</context></context-group> | |
10272 | <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">222</context></context-group></trans-unit> | 10859 | </trans-unit> |
10273 | <trans-unit id="5870421136141540382" datatype="html"> | 10860 | <trans-unit id="5870421136141540382" datatype="html"> |
10274 | <source>Stop looping playlist videos</source> | 10861 | <source>Stop looping playlist videos</source> |
10275 | <target state="translated">Stoppen met In lus afspelen van video's uit afspeellijst</target> | 10862 | <target state="translated">Stoppen met In lus afspelen van video's uit afspeellijst</target> |
10276 | 10863 | <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">227</context></context-group> | |
10277 | <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">227</context></context-group></trans-unit> | 10864 | </trans-unit> |
10278 | <trans-unit id="1599585307037758139" datatype="html"> | 10865 | <trans-unit id="1599585307037758139" datatype="html"> |
10279 | <source>Loop playlist videos</source> | 10866 | <source>Loop playlist videos</source> |
10280 | <target state="translated">Video's uit afspeellijst in lus afspelen</target> | 10867 | <target state="translated">Video's uit afspeellijst in lus afspelen</target> |
10281 | 10868 | <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">228</context></context-group> | |
10282 | <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">228</context></context-group></trans-unit><trans-unit id="3704292036525161260" datatype="html"> | 10869 | </trans-unit> |
10283 | <source>Placeholder image</source><target state="new">Placeholder image</target> | 10870 | <trans-unit id="3704292036525161260" datatype="html"> |
10871 | <source>Placeholder image</source> | ||
10872 | <target state="new">Placeholder image</target> | ||
10284 | <context-group purpose="location"> | 10873 | <context-group purpose="location"> |
10285 | <context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context> | 10874 | <context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.html</context> |
10286 | <context context-type="linenumber">11</context> | 10875 | <context context-type="linenumber">11</context> |
@@ -10289,129 +10878,126 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10289 | <trans-unit id="961774488937452220" datatype="html"> | 10878 | <trans-unit id="961774488937452220" datatype="html"> |
10290 | <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> | 10879 | <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> |
10291 | <target state="translated">Deze video is niet beschikbaar op dit exemplaar van PeerTube. Wil je doorverwezen worden naar het originele exemplaar <a href="<x id="PH"/>"><x id="PH_1"/></a>?</target> | 10880 | <target state="translated">Deze video is niet beschikbaar op dit exemplaar van PeerTube. Wil je doorverwezen worden naar het originele exemplaar <a href="<x id="PH"/>"><x id="PH_1"/></a>?</target> |
10292 | 10881 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">296</context></context-group> | |
10293 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">296</context></context-group></trans-unit> | 10882 | </trans-unit> |
10294 | <trans-unit id="5761611056224181752" datatype="html"> | 10883 | <trans-unit id="5761611056224181752" datatype="html"> |
10295 | <source>Redirection</source> | 10884 | <source>Redirection</source> |
10296 | <target state="translated">Doorverwijzing</target> | 10885 | <target state="translated">Doorverwijzing</target> |
10297 | 10886 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">297</context></context-group> | |
10298 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">297</context></context-group></trans-unit> | 10887 | </trans-unit> |
10299 | <trans-unit id="8858527736400081688"> | 10888 | <trans-unit id="8858527736400081688"> |
10300 | <source>This video contains mature or explicit content. Are you sure you want to watch it?</source> | 10889 | <source>This video contains mature or explicit content. Are you sure you want to watch it?</source> |
10301 | <target>Deze video bevat volwassen of expliciete inhoud. Weet je zeker dat je hem wilt kijken?</target> | 10890 | <target>Deze video bevat volwassen of expliciete inhoud. Weet je zeker dat je hem wilt kijken?</target> |
10302 | 10891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">343</context></context-group> | |
10303 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">343</context></context-group></trans-unit> | 10892 | </trans-unit> |
10304 | <trans-unit id="3937119019020041049"> | 10893 | <trans-unit id="3937119019020041049"> |
10305 | <source>Mature or explicit content</source> | 10894 | <source>Mature or explicit content</source> |
10306 | <target>Volwassen of expliciete content</target> | 10895 | <target>Volwassen of expliciete content</target> |
10307 | 10896 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">344</context></context-group> | |
10308 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 10897 | </trans-unit> |
10309 | <trans-unit id="1755474755114288376" datatype="html"> | 10898 | <trans-unit id="1755474755114288376" datatype="html"> |
10310 | <source>Up Next</source> | 10899 | <source>Up Next</source> |
10311 | <target state="translated">Volgende</target> | 10900 | <target state="translated">Volgende</target> |
10312 | 10901 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">415</context></context-group> | |
10313 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">415</context></context-group></trans-unit> | 10902 | </trans-unit> |
10314 | <trans-unit id="2159130950882492111" datatype="html"> | 10903 | <trans-unit id="2159130950882492111" datatype="html"> |
10315 | <source>Cancel</source> | 10904 | <source>Cancel</source> |
10316 | <target state="translated">Annuleren</target> | 10905 | <target state="translated">Annuleren</target> |
10317 | 10906 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">646</context></context-group> | |
10318 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">646</context></context-group></trans-unit> | 10907 | </trans-unit> |
10319 | <trans-unit id="3354816756665089864" datatype="html"> | 10908 | <trans-unit id="3354816756665089864" datatype="html"> |
10320 | <source>Autoplay is suspended</source> | 10909 | <source>Autoplay is suspended</source> |
10321 | <target state="translated">Automatisch afspelen is opgeschort</target> | 10910 | <target state="translated">Automatisch afspelen is opgeschort</target> |
10322 | 10911 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">417</context></context-group> | |
10323 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">417</context></context-group></trans-unit> | 10912 | </trans-unit> |
10324 | <trans-unit id="7895294730547405228" datatype="html"> | 10913 | <trans-unit id="7895294730547405228" datatype="html"> |
10325 | <source>Enter/exit fullscreen (requires player focus)</source> | 10914 | <source>Enter/exit fullscreen (requires player focus)</source> |
10326 | <target state="translated">Volledig scherm ingaan/uitgaan (vereist focus op afspeler)</target> | 10915 | <target state="translated">Volledig scherm ingaan/uitgaan (vereist focus op afspeler)</target> |
10327 | 10916 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">688</context></context-group> | |
10328 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">688</context></context-group></trans-unit> | 10917 | </trans-unit> |
10329 | <trans-unit id="7618388257165864759" datatype="html"> | 10918 | <trans-unit id="7618388257165864759" datatype="html"> |
10330 | <source>Play/Pause the video (requires player focus)</source> | 10919 | <source>Play/Pause the video (requires player focus)</source> |
10331 | <target state="translated">De video afspelen/pauseren (vereist focus op de afspeler)</target> | 10920 | <target state="translated">De video afspelen/pauseren (vereist focus op de afspeler)</target> |
10332 | 10921 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">689</context></context-group> | |
10333 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">689</context></context-group></trans-unit> | 10922 | </trans-unit> |
10334 | <trans-unit id="7761890399634216630" datatype="html"> | 10923 | <trans-unit id="7761890399634216630" datatype="html"> |
10335 | <source>Mute/unmute the video (requires player focus)</source> | 10924 | <source>Mute/unmute the video (requires player focus)</source> |
10336 | <target state="translated">De video dempen of niet meer dempen (vereist focus op de speler)</target> | 10925 | <target state="translated">De video dempen of niet meer dempen (vereist focus op de speler)</target> |
10337 | 10926 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">690</context></context-group> | |
10338 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">690</context></context-group></trans-unit> | 10927 | </trans-unit> |
10339 | <trans-unit id="5996585232248234904" datatype="html"> | 10928 | <trans-unit id="5996585232248234904" datatype="html"> |
10340 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</source> | 10929 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</source> |
10341 | <target state="translated">Naar een percentage van de video springen: 0 is 0% and 9 is 90% (vereist focus op de speler)</target> | 10930 | <target state="translated">Naar een percentage van de video springen: 0 is 0% and 9 is 90% (vereist focus op de speler)</target> |
10342 | 10931 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">692</context></context-group> | |
10343 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">692</context></context-group></trans-unit> | 10932 | </trans-unit> |
10344 | <trans-unit id="3748765405903319998" datatype="html"> | 10933 | <trans-unit id="3748765405903319998" datatype="html"> |
10345 | <source>Increase the volume (requires player focus)</source> | 10934 | <source>Increase the volume (requires player focus)</source> |
10346 | <target state="translated">Het volume verhogen (vereist focus op de speler)</target> | 10935 | <target state="translated">Het volume verhogen (vereist focus op de speler)</target> |
10347 | 10936 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">694</context></context-group> | |
10348 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">694</context></context-group></trans-unit> | 10937 | </trans-unit> |
10349 | <trans-unit id="5810704036407159982" datatype="html"> | 10938 | <trans-unit id="5810704036407159982" datatype="html"> |
10350 | <source>Decrease the volume (requires player focus)</source> | 10939 | <source>Decrease the volume (requires player focus)</source> |
10351 | <target state="translated">Het volume verlagen (vereist focus op de speler)</target> | 10940 | <target state="translated">Het volume verlagen (vereist focus op de speler)</target> |
10352 | 10941 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">695</context></context-group> | |
10353 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">695</context></context-group></trans-unit> | 10942 | </trans-unit> |
10354 | <trans-unit id="2622048822548065691" datatype="html"> | 10943 | <trans-unit id="2622048822548065691" datatype="html"> |
10355 | <source>Seek the video forward (requires player focus)</source> | 10944 | <source>Seek the video forward (requires player focus)</source> |
10356 | <target state="translated">Vooruitspringen in de video (vereist focus op de speler)</target> | 10945 | <target state="translated">Vooruitspringen in de video (vereist focus op de speler)</target> |
10357 | 10946 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">697</context></context-group> | |
10358 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">697</context></context-group></trans-unit> | 10947 | </trans-unit> |
10359 | <trans-unit id="6540078205109221153" datatype="html"> | 10948 | <trans-unit id="6540078205109221153" datatype="html"> |
10360 | <source>Seek the video backward (requires player focus)</source> | 10949 | <source>Seek the video backward (requires player focus)</source> |
10361 | <target state="translated">Achteruit springen in de video (vereist focus op de speler)</target> | 10950 | <target state="translated">Achteruit springen in de video (vereist focus op de speler)</target> |
10362 | 10951 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">698</context></context-group> | |
10363 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">698</context></context-group></trans-unit> | 10952 | </trans-unit> |
10364 | <trans-unit id="1956491957766210808" datatype="html"> | 10953 | <trans-unit id="1956491957766210808" datatype="html"> |
10365 | <source>Increase playback rate (requires player focus)</source> | 10954 | <source>Increase playback rate (requires player focus)</source> |
10366 | <target state="translated">Afspelen versnellen (vereist focus op de speler)</target> | 10955 | <target state="translated">Afspelen versnellen (vereist focus op de speler)</target> |
10367 | 10956 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">700</context></context-group> | |
10368 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">700</context></context-group></trans-unit> | 10957 | </trans-unit> |
10369 | <trans-unit id="5495529997674803186" datatype="html"> | 10958 | <trans-unit id="5495529997674803186" datatype="html"> |
10370 | <source>Decrease playback rate (requires player focus)</source> | 10959 | <source>Decrease playback rate (requires player focus)</source> |
10371 | <target state="translated">Afspelen vertragen (vereist focus op de speler)</target> | 10960 | <target state="translated">Afspelen vertragen (vereist focus op de speler)</target> |
10372 | 10961 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">701</context></context-group> | |
10373 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">701</context></context-group></trans-unit> | 10962 | </trans-unit> |
10374 | <trans-unit id="3178343147230721210" datatype="html"> | 10963 | <trans-unit id="3178343147230721210" datatype="html"> |
10375 | <source>Navigate in the video frame by frame (requires player focus)</source> | 10964 | <source>Navigate in the video frame by frame (requires player focus)</source> |
10376 | <target state="translated">Frame per frame door de video navigeren (vereist focus op de speler)</target> | 10965 | <target state="translated">Frame per frame door de video navigeren (vereist focus op de speler)</target> |
10377 | 10966 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">703</context></context-group> | |
10378 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">703</context></context-group></trans-unit> | 10967 | </trans-unit> |
10379 | <trans-unit id="8025996572234182184"> | 10968 | <trans-unit id="8025996572234182184"> |
10380 | <source>Like the video</source> | 10969 | <source>Like the video</source> |
10381 | <target>Like de video</target> | 10970 | <target>Like de video</target> |
10382 | 10971 | <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> | |
10383 | <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> | 10972 | </trans-unit> |
10384 | <trans-unit id="7692127636377222448"> | 10973 | <trans-unit id="7692127636377222448"> |
10385 | <source>Dislike the video</source> | 10974 | <source>Dislike the video</source> |
10386 | <target>Dislike de video</target> | 10975 | <target>Dislike de video</target> |
10387 | 10976 | <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> | |
10388 | <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> | 10977 | </trans-unit> |
10389 | <trans-unit id="1729036051846673606" datatype="html"> | 10978 | <trans-unit id="1729036051846673606" datatype="html"> |
10390 | <source>When active, the next video is automatically played after the current one.</source> | 10979 | <source>When active, the next video is automatically played after the current one.</source> |
10391 | <target state="translated">De volgende video speelt automatisch na de huidige als die actief is.</target> | 10980 | <target state="translated">De volgende video speelt automatisch na de huidige als die actief is.</target> |
10392 | 10981 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts</context><context context-type="linenumber">61</context></context-group> | |
10393 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/recommendations/recommended-videos.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit> | 10982 | </trans-unit> |
10394 | <trans-unit id="2431286785954354122" datatype="html"> | 10983 | <trans-unit id="2431286785954354122" datatype="html"> |
10395 | <source>Recently added</source> | 10984 | <source>Recently added</source> |
10396 | <target state="translated">Recent toegevoegd</target> | 10985 | <target state="translated">Recent toegevoegd</target> |
10397 | 10986 | <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> | |
10398 | <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> | 10987 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">137</context></context-group> |
10399 | 10988 | </trans-unit> | |
10400 | |||
10401 | <trans-unit id="12646164819555880"> | 10989 | <trans-unit id="12646164819555880"> |
10402 | <source>Videos from your subscriptions</source> | 10990 | <source>Videos from your subscriptions</source> |
10403 | <target>Video's uit je abonnementen</target> | 10991 | <target>Video's uit je abonnementen</target> |
10404 | 10992 | <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> | |
10405 | <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> | 10993 | </trans-unit> |
10406 | |||
10407 | |||
10408 | <trans-unit id="1812379335568847528" datatype="html"> | 10994 | <trans-unit id="1812379335568847528" datatype="html"> |
10409 | <source>Subscriptions</source> | 10995 | <source>Subscriptions</source> |
10410 | <target state="translated">Abonnementen</target> | 10996 | <target state="translated">Abonnementen</target> |
10411 | 10997 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">66</context></context-group> | |
10412 | 10998 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">46</context></context-group> | |
10413 | 10999 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">59</context></context-group> | |
10414 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">66</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">46</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">59</context></context-group></trans-unit> | 11000 | </trans-unit> |
10415 | <trans-unit id="186236568870281953" datatype="html"> | 11001 | <trans-unit id="186236568870281953" datatype="html"> |
10416 | <source>History</source> | 11002 | <source>History</source> |
10417 | <target state="translated">Geschiedenis</target> | 11003 | <target state="translated">Geschiedenis</target> |
@@ -10428,10 +11014,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10428 | <trans-unit id="8681933925782924101" datatype="html"> | 11014 | <trans-unit id="8681933925782924101" datatype="html"> |
10429 | <source>Local videos</source> | 11015 | <source>Local videos</source> |
10430 | <target state="translated">Lokale video's</target> | 11016 | <target state="translated">Lokale video's</target> |
10431 | 11017 | <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> | |
10432 | 11018 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">142</context></context-group> | |
10433 | <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="3037358578603095196" datatype="html"> | 11019 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">143</context></context-group> |
10434 | <source>Only videos uploaded on this instance are displayed</source><target state="new">Only videos uploaded on this instance are displayed</target> | 11020 | </trans-unit> |
11021 | <trans-unit id="3037358578603095196" datatype="html"> | ||
11022 | <source>Only videos uploaded on this instance are displayed</source> | ||
11023 | <target state="new">Only videos uploaded on this instance are displayed</target> | ||
10435 | <context-group purpose="location"> | 11024 | <context-group purpose="location"> |
10436 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> | 11025 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> |
10437 | <context context-type="linenumber">190</context> | 11026 | <context context-type="linenumber">190</context> |
@@ -10440,28 +11029,29 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10440 | <trans-unit id="4668975178372693951" datatype="html"> | 11029 | <trans-unit id="4668975178372693951" datatype="html"> |
10441 | <source>Discover videos</source> | 11030 | <source>Discover videos</source> |
10442 | <target state="translated">Video's ontdekken</target> | 11031 | <target state="translated">Video's ontdekken</target> |
10443 | 11032 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">19</context></context-group> | |
10444 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/videos-routing.module.ts</context><context context-type="linenumber">19</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> | 11033 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">124</context></context-group> |
11034 | </trans-unit> | ||
10445 | <trans-unit id="8067135025051844577" datatype="html"> | 11035 | <trans-unit id="8067135025051844577" datatype="html"> |
10446 | <source>Trending videos</source> | 11036 | <source>Trending videos</source> |
10447 | <target state="translated">Populaire videos</target> | 11037 | <target state="translated">Populaire videos</target> |
10448 | 11038 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">130</context></context-group> | |
10449 | <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> | 11039 | </trans-unit> |
10450 | <trans-unit id="664221386829541948" datatype="html"> | 11040 | <trans-unit id="664221386829541948" datatype="html"> |
10451 | <source>Recently added videos</source> | 11041 | <source>Recently added videos</source> |
10452 | <target state="translated">Recent toegevoegde video's</target> | 11042 | <target state="translated">Recent toegevoegde video's</target> |
10453 | 11043 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">136</context></context-group> | |
10454 | <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> | 11044 | </trans-unit> |
10455 | <trans-unit id="8212906256415538361" datatype="html"> | 11045 | <trans-unit id="8212906256415538361" datatype="html"> |
10456 | <source>Upload a video</source> | 11046 | <source>Upload a video</source> |
10457 | <target state="translated">Een video uploaden</target> | 11047 | <target state="translated">Een video uploaden</target> |
10458 | 11048 | <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">91</context></context-group> | |
10459 | <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">91</context></context-group></trans-unit> | 11049 | </trans-unit> |
10460 | <trans-unit id="7590784934397800835" datatype="html"> | 11050 | <trans-unit id="7590784934397800835" datatype="html"> |
10461 | <source>Edit a video</source> | 11051 | <source>Edit a video</source> |
10462 | <target state="translated">Een video bewerken</target> | 11052 | <target state="translated">Een video bewerken</target> |
10463 | 11053 | <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">100</context></context-group> | |
10464 | <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">100</context></context-group></trans-unit> | 11054 | </trans-unit> |
10465 | </body> | 11055 | </body> |
10466 | </file> | 11056 | </file> |
10467 | </xliff> | 11057 | </xliff> |
diff --git a/client/src/locale/angular.nn.xlf b/client/src/locale/angular.nn.xlf index dfae18907..ec8a34598 100644 --- a/client/src/locale/angular.nn.xlf +++ b/client/src/locale/angular.nn.xlf | |||
@@ -189,7 +189,7 @@ | |||
189 | </trans-unit> | 189 | </trans-unit> |
190 | <trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | 190 | <trans-unit id="ngb.timepicker.increment-hours" datatype="html"> |
191 | <source>Increment hours</source> | 191 | <source>Increment hours</source> |
192 | <target/> | 192 | <target>Gå fram timar</target> |
193 | <context-group purpose="location"> | 193 | <context-group purpose="location"> |
194 | <context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts</context> | 194 | <context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts</context> |
195 | <context context-type="linenumber">62,63</context> | 195 | <context context-type="linenumber">62,63</context> |
@@ -197,7 +197,7 @@ | |||
197 | </trans-unit> | 197 | </trans-unit> |
198 | <trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | 198 | <trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> |
199 | <source>Decrement hours</source> | 199 | <source>Decrement hours</source> |
200 | <target/> | 200 | <target>Gå tilbake timar</target> |
201 | <context-group purpose="location"> | 201 | <context-group purpose="location"> |
202 | <context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts</context> | 202 | <context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts</context> |
203 | <context context-type="linenumber">67,68</context> | 203 | <context context-type="linenumber">67,68</context> |
@@ -205,7 +205,7 @@ | |||
205 | </trans-unit> | 205 | </trans-unit> |
206 | <trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | 206 | <trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> |
207 | <source>Increment minutes</source> | 207 | <source>Increment minutes</source> |
208 | <target/> | 208 | <target>Gå fram minutt</target> |
209 | <context-group purpose="location"> | 209 | <context-group purpose="location"> |
210 | <context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts</context> | 210 | <context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts</context> |
211 | <context context-type="linenumber">75,76</context> | 211 | <context context-type="linenumber">75,76</context> |
@@ -213,7 +213,7 @@ | |||
213 | </trans-unit> | 213 | </trans-unit> |
214 | <trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | 214 | <trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> |
215 | <source>Decrement minutes</source> | 215 | <source>Decrement minutes</source> |
216 | <target/> | 216 | <target>Gå tilbake minutt</target> |
217 | <context-group purpose="location"> | 217 | <context-group purpose="location"> |
218 | <context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts</context> | 218 | <context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts</context> |
219 | <context context-type="linenumber">82</context> | 219 | <context context-type="linenumber">82</context> |
@@ -237,7 +237,7 @@ | |||
237 | </trans-unit> | 237 | </trans-unit> |
238 | <trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | 238 | <trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> |
239 | <source>Increment seconds</source> | 239 | <source>Increment seconds</source> |
240 | <target/> | 240 | <target>Gå fram sekund</target> |
241 | <context-group purpose="location"> | 241 | <context-group purpose="location"> |
242 | <context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts</context> | 242 | <context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts</context> |
243 | <context context-type="linenumber">98,99</context> | 243 | <context context-type="linenumber">98,99</context> |
@@ -245,7 +245,7 @@ | |||
245 | </trans-unit> | 245 | </trans-unit> |
246 | <trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | 246 | <trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> |
247 | <source>Decrement seconds</source> | 247 | <source>Decrement seconds</source> |
248 | <target/> | 248 | <target>Gå tilbake sekund</target> |
249 | <context-group purpose="location"> | 249 | <context-group purpose="location"> |
250 | <context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts</context> | 250 | <context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/src/timepicker/timepicker.ts</context> |
251 | <context context-type="linenumber">105,109</context> | 251 | <context context-type="linenumber">105,109</context> |
@@ -269,7 +269,7 @@ | |||
269 | </trans-unit> | 269 | </trans-unit> |
270 | <trans-unit id="ngb.toast.close-aria" datatype="html"> | 270 | <trans-unit id="ngb.toast.close-aria" datatype="html"> |
271 | <source>Close</source> | 271 | <source>Close</source> |
272 | <target/> | 272 | <target>Lukk</target> |
273 | <context-group purpose="location"> | 273 | <context-group purpose="location"> |
274 | <context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/src/toast/toast.ts</context> | 274 | <context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/src/toast/toast.ts</context> |
275 | <context context-type="linenumber">76,85</context> | 275 | <context context-type="linenumber">76,85</context> |
@@ -277,7 +277,7 @@ | |||
277 | </trans-unit> | 277 | </trans-unit> |
278 | <trans-unit id="3701439542279610547" datatype="html"> | 278 | <trans-unit id="3701439542279610547" datatype="html"> |
279 | <source>Follows</source> | 279 | <source>Follows</source> |
280 | <target/> | 280 | <target>Fylgjer</target> |
281 | <context-group purpose="location"> | 281 | <context-group purpose="location"> |
282 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> | 282 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> |
283 | <context context-type="linenumber">2</context> | 283 | <context context-type="linenumber">2</context> |
@@ -293,7 +293,7 @@ | |||
293 | </trans-unit> | 293 | </trans-unit> |
294 | <trans-unit id="3857357852909495917" datatype="html"> | 294 | <trans-unit id="3857357852909495917" datatype="html"> |
295 | <source>This instance does not have instances followers.</source> | 295 | <source>This instance does not have instances followers.</source> |
296 | <target/> | 296 | <target>Ingen nettstader fylgjer denne nettstaden.</target> |
297 | <context-group purpose="location"> | 297 | <context-group purpose="location"> |
298 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> | 298 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> |
299 | <context context-type="linenumber">6</context> | 299 | <context context-type="linenumber">6</context> |
@@ -301,7 +301,7 @@ | |||
301 | </trans-unit> | 301 | </trans-unit> |
302 | <trans-unit id="8438752523256358076" datatype="html"> | 302 | <trans-unit id="8438752523256358076" datatype="html"> |
303 | <source>Show full list</source> | 303 | <source>Show full list</source> |
304 | <target/> | 304 | <target>Vis heile lista</target> |
305 | <context-group purpose="location"> | 305 | <context-group purpose="location"> |
306 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> | 306 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> |
307 | <context context-type="linenumber">12</context> | 307 | <context context-type="linenumber">12</context> |
@@ -321,7 +321,7 @@ | |||
321 | </trans-unit> | 321 | </trans-unit> |
322 | <trans-unit id="7128556172318221342" datatype="html"> | 322 | <trans-unit id="7128556172318221342" datatype="html"> |
323 | <source>This instance is not following any other.</source> | 323 | <source>This instance is not following any other.</source> |
324 | <target/> | 324 | <target>Denne nettstaden fylgjer ingen andre.</target> |
325 | <context-group purpose="location"> | 325 | <context-group purpose="location"> |
326 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> | 326 | <context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context> |
327 | <context context-type="linenumber">18</context> | 327 | <context context-type="linenumber">18</context> |
@@ -337,7 +337,7 @@ | |||
337 | </trans-unit> | 337 | </trans-unit> |
338 | <trans-unit id="8253752633925167769" datatype="html"> | 338 | <trans-unit id="8253752633925167769" datatype="html"> |
339 | <source>Contact administrator</source> | 339 | <source>Contact administrator</source> |
340 | <target/> | 340 | <target>Kontakt styraren</target> |
341 | <context-group purpose="location"> | 341 | <context-group purpose="location"> |
342 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> | 342 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> |
343 | <context context-type="linenumber">7</context> | 343 | <context context-type="linenumber">7</context> |
diff --git a/client/src/locale/angular.oc.xlf b/client/src/locale/angular.oc.xlf index dbc492270..e9abf5c4d 100644 --- a/client/src/locale/angular.oc.xlf +++ b/client/src/locale/angular.oc.xlf | |||
@@ -323,7 +323,7 @@ | |||
323 | 323 | ||
324 | 324 | ||
325 | 325 | ||
326 | <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">294</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> | 326 | <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">301</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> |
327 | <trans-unit id="6438815964972582865" datatype="html"> | 327 | <trans-unit id="6438815964972582865" datatype="html"> |
328 | <source>The following link contains a private token and should not be shared with anyone.</source> | 328 | <source>The following link contains a private token and should not be shared with anyone.</source> |
329 | <target state="new"> The following link contains a private token and should not be shared with anyone. </target> | 329 | <target state="new"> The following link contains a private token and should not be shared with anyone. </target> |
@@ -397,12 +397,12 @@ | |||
397 | <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> | 397 | <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> |
398 | <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> | 398 | <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> |
399 | 399 | ||
400 | <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">330</context></context-group></trans-unit> | 400 | <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">337</context></context-group></trans-unit> |
401 | <trans-unit id="7873395933409147217" datatype="html"> | 401 | <trans-unit id="7873395933409147217" datatype="html"> |
402 | <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> | 402 | <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> |
403 | <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> | 403 | <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> |
404 | 404 | ||
405 | <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">349</context></context-group></trans-unit> | 405 | <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">356</context></context-group></trans-unit> |
406 | <trans-unit id="5235042777215655908" datatype="html"> | 406 | <trans-unit id="5235042777215655908" datatype="html"> |
407 | <source>subtitles</source> | 407 | <source>subtitles</source> |
408 | <target state="new">subtitles</target> | 408 | <target state="new">subtitles</target> |
@@ -415,7 +415,7 @@ | |||
415 | </target> | 415 | </target> |
416 | 416 | ||
417 | 417 | ||
418 | <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">48</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> | 418 | <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">48</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">23</context></context-group></trans-unit> |
419 | <trans-unit id="3099741642167775297"> | 419 | <trans-unit id="3099741642167775297"> |
420 | <source>Download</source> | 420 | <source>Download</source> |
421 | <target>Telecargar</target> | 421 | <target>Telecargar</target> |
@@ -2645,7 +2645,7 @@ The link will expire within 1 hour.</target> | |||
2645 | <source>Upload on hold</source> | 2645 | <source>Upload on hold</source> |
2646 | <target state="new">Upload on hold</target> | 2646 | <target state="new">Upload on hold</target> |
2647 | 2647 | ||
2648 | <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">167</context></context-group></trans-unit> | 2648 | <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">174</context></context-group></trans-unit> |
2649 | <trans-unit id="285180972645018518" datatype="html"> | 2649 | <trans-unit id="285180972645018518" datatype="html"> |
2650 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2650 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2651 | <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> | 2651 | <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> |
@@ -11149,34 +11149,34 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11149 | <source>Your video was uploaded to your account and is private.</source> | 11149 | <source>Your video was uploaded to your account and is private.</source> |
11150 | <target>La vidèo es estada enviada a vòstre compte e es privada.</target> | 11150 | <target>La vidèo es estada enviada a vòstre compte e es privada.</target> |
11151 | 11151 | ||
11152 | <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">118</context></context-group></trans-unit> | 11152 | <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">125</context></context-group></trans-unit> |
11153 | <trans-unit id="5699822024600815733"> | 11153 | <trans-unit id="5699822024600815733"> |
11154 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 11154 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
11155 | <target>Mas las donadas associadas (etiquetas, descripcion...) seràn perdudas, volètz vertadièrament quitar la pagina ?</target> | 11155 | <target>Mas las donadas associadas (etiquetas, descripcion...) seràn perdudas, volètz vertadièrament quitar la pagina ?</target> |
11156 | 11156 | ||
11157 | <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">119</context></context-group></trans-unit> | 11157 | <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> |
11158 | <trans-unit id="1219739004043110649"> | 11158 | <trans-unit id="1219739004043110649"> |
11159 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 11159 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
11160 | <target>La vidèo es pas encara complètament enviada, volètz vertadièrament quitar la pagina ?</target> | 11160 | <target>La vidèo es pas encara complètament enviada, volètz vertadièrament quitar la pagina ?</target> |
11161 | 11161 | ||
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">121</context></context-group></trans-unit> | 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">128</context></context-group></trans-unit> |
11163 | <trans-unit id="6932865105766151309" datatype="html"> | 11163 | <trans-unit id="6932865105766151309" datatype="html"> |
11164 | <source>Upload</source> | 11164 | <source>Upload</source> |
11165 | <target state="new">Upload</target> | 11165 | <target state="new">Upload</target> |
11166 | 11166 | ||
11167 | <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">227</context></context-group></trans-unit> | 11167 | <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">234</context></context-group></trans-unit> |
11168 | <trans-unit id="8278735427925094503"> | 11168 | <trans-unit id="8278735427925094503"> |
11169 | <source>Upload <x id="PH"/> </source> | 11169 | <source>Upload <x id="PH"/> </source> |
11170 | <target>Enviar | 11170 | <target>Enviar |
11171 | <x id="PH"/> | 11171 | <x id="PH"/> |
11172 | </target> | 11172 | </target> |
11173 | 11173 | ||
11174 | <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">229</context></context-group></trans-unit> | 11174 | <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">236</context></context-group></trans-unit> |
11175 | <trans-unit id="5981816353437801748"> | 11175 | <trans-unit id="5981816353437801748"> |
11176 | <source>Video published.</source> | 11176 | <source>Video published.</source> |
11177 | <target>Vidèo publicada.</target> | 11177 | <target>Vidèo publicada.</target> |
11178 | 11178 | ||
11179 | <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">251</context></context-group></trans-unit> | 11179 | <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">258</context></context-group></trans-unit> |
11180 | <trans-unit id="764164089183618119"> | 11180 | <trans-unit id="764164089183618119"> |
11181 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 11181 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
11182 | <target>Avètz de modificacions pas enregistradas. Se partissètz vòstras modificacions seràn perdudas. </target> | 11182 | <target>Avètz de modificacions pas enregistradas. Se partissètz vòstras modificacions seràn perdudas. </target> |
diff --git a/client/src/locale/angular.pl-PL.xlf b/client/src/locale/angular.pl-PL.xlf index b06dd0396..36a4dfa14 100644 --- a/client/src/locale/angular.pl-PL.xlf +++ b/client/src/locale/angular.pl-PL.xlf | |||
@@ -273,7 +273,7 @@ | |||
273 | <target state="translated">film</target> | 273 | <target state="translated">film</target> |
274 | 274 | ||
275 | 275 | ||
276 | <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">294</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> | 276 | <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">301</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> |
277 | <trans-unit id="6438815964972582865" datatype="html"> | 277 | <trans-unit id="6438815964972582865" datatype="html"> |
278 | <source>The following link contains a private token and should not be shared with anyone.</source> | 278 | <source>The following link contains a private token and should not be shared with anyone.</source> |
279 | <target state="translated">Następujący odnośnik zawiera prywatny token i nie należy się nim z nikim dzielić.</target> | 279 | <target state="translated">Następujący odnośnik zawiera prywatny token i nie należy się nim z nikim dzielić.</target> |
@@ -344,12 +344,12 @@ | |||
344 | <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> | 344 | <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> |
345 | <target state="translated">Twoja powierzchnia na filmy została przekroczona przez ten film (rozmiar filmu: <x id="PH" equiv-text="videoSizeBytes"/>, wykorzystano: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, powierzchnia: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> | 345 | <target state="translated">Twoja powierzchnia na filmy została przekroczona przez ten film (rozmiar filmu: <x id="PH" equiv-text="videoSizeBytes"/>, wykorzystano: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, powierzchnia: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> |
346 | 346 | ||
347 | <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">330</context></context-group></trans-unit> | 347 | <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">337</context></context-group></trans-unit> |
348 | <trans-unit id="7873395933409147217" datatype="html"> | 348 | <trans-unit id="7873395933409147217" datatype="html"> |
349 | <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> | 349 | <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> |
350 | <target state="translated">Twoja dzienna powierzchnia na filmy została przekroczona przez ten film (rozmiar filmu: <x id="PH" equiv-text="videoSizeBytes"/>, wykorzystano: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, powierzchnia <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> | 350 | <target state="translated">Twoja dzienna powierzchnia na filmy została przekroczona przez ten film (rozmiar filmu: <x id="PH" equiv-text="videoSizeBytes"/>, wykorzystano: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, powierzchnia <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> |
351 | 351 | ||
352 | <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">349</context></context-group></trans-unit> | 352 | <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">356</context></context-group></trans-unit> |
353 | <trans-unit id="5235042777215655908" datatype="html"> | 353 | <trans-unit id="5235042777215655908" datatype="html"> |
354 | <source>subtitles</source> | 354 | <source>subtitles</source> |
355 | <target state="translated">napisy</target> | 355 | <target state="translated">napisy</target> |
@@ -362,7 +362,7 @@ | |||
362 | </target> | 362 | </target> |
363 | 363 | ||
364 | 364 | ||
365 | <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">48</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> | 365 | <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">48</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">23</context></context-group></trans-unit> |
366 | <trans-unit id="3099741642167775297"> | 366 | <trans-unit id="3099741642167775297"> |
367 | <source>Download</source> | 367 | <source>Download</source> |
368 | <target>Pobierz</target> | 368 | <target>Pobierz</target> |
@@ -2535,7 +2535,7 @@ The link will expire within 1 hour.</source> | |||
2535 | <source>Upload on hold</source> | 2535 | <source>Upload on hold</source> |
2536 | <target state="translated">Oczekujące wrzucenie</target> | 2536 | <target state="translated">Oczekujące wrzucenie</target> |
2537 | 2537 | ||
2538 | <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">167</context></context-group></trans-unit> | 2538 | <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">174</context></context-group></trans-unit> |
2539 | <trans-unit id="285180972645018518" datatype="html"> | 2539 | <trans-unit id="285180972645018518" datatype="html"> |
2540 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2540 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2541 | <target state="translated">Niestety, możliwość wysyłania jest wyłączona dla Twojego konta. Jeżeli chcesz dodać filmy, administrator musi odblokować Twój przydział powierzchni.</target> | 2541 | <target state="translated">Niestety, możliwość wysyłania jest wyłączona dla Twojego konta. Jeżeli chcesz dodać filmy, administrator musi odblokować Twój przydział powierzchni.</target> |
@@ -10724,34 +10724,34 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10724 | <source>Your video was uploaded to your account and is private.</source> | 10724 | <source>Your video was uploaded to your account and is private.</source> |
10725 | <target state="translated">Film został wrzucony na twoje konto i jest prywatny.</target> | 10725 | <target state="translated">Film został wrzucony na twoje konto i jest prywatny.</target> |
10726 | 10726 | ||
10727 | <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">118</context></context-group></trans-unit> | 10727 | <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">125</context></context-group></trans-unit> |
10728 | <trans-unit id="5699822024600815733"> | 10728 | <trans-unit id="5699822024600815733"> |
10729 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10729 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10730 | <target>Powiązane dane (tagi, opis…) zostaną utracone, czy na pewno chcesz opuścić tą stronę?</target> | 10730 | <target>Powiązane dane (tagi, opis…) zostaną utracone, czy na pewno chcesz opuścić tą stronę?</target> |
10731 | 10731 | ||
10732 | <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">119</context></context-group></trans-unit> | 10732 | <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> |
10733 | <trans-unit id="1219739004043110649"> | 10733 | <trans-unit id="1219739004043110649"> |
10734 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10734 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10735 | <target>Twój film nie został jeszcze wysłany, czy na pewno chcesz opuścić tą stronę?</target> | 10735 | <target>Twój film nie został jeszcze wysłany, czy na pewno chcesz opuścić tą stronę?</target> |
10736 | 10736 | ||
10737 | <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">121</context></context-group></trans-unit> | 10737 | <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">128</context></context-group></trans-unit> |
10738 | <trans-unit id="6932865105766151309" datatype="html"> | 10738 | <trans-unit id="6932865105766151309" datatype="html"> |
10739 | <source>Upload</source> | 10739 | <source>Upload</source> |
10740 | <target state="translated">Wyślij</target> | 10740 | <target state="translated">Wyślij</target> |
10741 | 10741 | ||
10742 | <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">227</context></context-group></trans-unit> | 10742 | <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">234</context></context-group></trans-unit> |
10743 | <trans-unit id="8278735427925094503" datatype="html"> | 10743 | <trans-unit id="8278735427925094503" datatype="html"> |
10744 | <source>Upload <x id="PH"/> </source> | 10744 | <source>Upload <x id="PH"/> </source> |
10745 | <target state="translated">Wrzuć | 10745 | <target state="translated">Wrzuć |
10746 | <x id="PH"/> | 10746 | <x id="PH"/> |
10747 | </target> | 10747 | </target> |
10748 | 10748 | ||
10749 | <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">229</context></context-group></trans-unit> | 10749 | <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">236</context></context-group></trans-unit> |
10750 | <trans-unit id="5981816353437801748"> | 10750 | <trans-unit id="5981816353437801748"> |
10751 | <source>Video published.</source> | 10751 | <source>Video published.</source> |
10752 | <target>Opublikowano film.</target> | 10752 | <target>Opublikowano film.</target> |
10753 | 10753 | ||
10754 | <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">251</context></context-group></trans-unit> | 10754 | <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">258</context></context-group></trans-unit> |
10755 | <trans-unit id="764164089183618119" datatype="html"> | 10755 | <trans-unit id="764164089183618119" datatype="html"> |
10756 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 10756 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
10757 | <target state="translated">Masz niezapisane zmiany! Jeżeli zamkniesz to okno, twoje zmiany zostaną stracone.</target> | 10757 | <target state="translated">Masz niezapisane zmiany! Jeżeli zamkniesz to okno, twoje zmiany zostaną stracone.</target> |
diff --git a/client/src/locale/angular.pt-BR.xlf b/client/src/locale/angular.pt-BR.xlf index 4fd4216d2..a3e242273 100644 --- a/client/src/locale/angular.pt-BR.xlf +++ b/client/src/locale/angular.pt-BR.xlf | |||
@@ -285,7 +285,7 @@ | |||
285 | <target state="translated">vídeo</target> | 285 | <target state="translated">vídeo</target> |
286 | 286 | ||
287 | 287 | ||
288 | <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">294</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> | 288 | <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">301</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> |
289 | <trans-unit id="6438815964972582865" datatype="html"> | 289 | <trans-unit id="6438815964972582865" datatype="html"> |
290 | <source>The following link contains a private token and should not be shared with anyone.</source> | 290 | <source>The following link contains a private token and should not be shared with anyone.</source> |
291 | <target state="translated">Os seguintes links contêm um token privado e não deverá ser compartilhado com ninguém.</target> | 291 | <target state="translated">Os seguintes links contêm um token privado e não deverá ser compartilhado com ninguém.</target> |
@@ -356,12 +356,12 @@ | |||
356 | <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> | 356 | <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> |
357 | <target state="translated">Sua cota de vídeo foi excedida com este vídeo (tamanho do vídeo: <x id="PH" equiv-text="videoSizeBytes"/>, usado: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> | 357 | <target state="translated">Sua cota de vídeo foi excedida com este vídeo (tamanho do vídeo: <x id="PH" equiv-text="videoSizeBytes"/>, usado: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, quota: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> |
358 | 358 | ||
359 | <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">330</context></context-group></trans-unit> | 359 | <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">337</context></context-group></trans-unit> |
360 | <trans-unit id="7873395933409147217" datatype="html"> | 360 | <trans-unit id="7873395933409147217" datatype="html"> |
361 | <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> | 361 | <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> |
362 | <target state="translated">Sua cota diária de vídeo foi excedida com este vídeo (tamanho do vídeo: <x id="PH" equiv-text="videoSizeBytes"/>, usado: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, quota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> | 362 | <target state="translated">Sua cota diária de vídeo foi excedida com este vídeo (tamanho do vídeo: <x id="PH" equiv-text="videoSizeBytes"/>, usado: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, quota: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> |
363 | 363 | ||
364 | <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">349</context></context-group></trans-unit> | 364 | <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">356</context></context-group></trans-unit> |
365 | <trans-unit id="5235042777215655908" datatype="html"> | 365 | <trans-unit id="5235042777215655908" datatype="html"> |
366 | <source>subtitles</source> | 366 | <source>subtitles</source> |
367 | <target state="translated">subtítulos</target> | 367 | <target state="translated">subtítulos</target> |
@@ -374,7 +374,7 @@ | |||
374 | </target> | 374 | </target> |
375 | 375 | ||
376 | 376 | ||
377 | <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">48</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> | 377 | <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">48</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">23</context></context-group></trans-unit> |
378 | <trans-unit id="3099741642167775297"> | 378 | <trans-unit id="3099741642167775297"> |
379 | <source>Download</source> | 379 | <source>Download</source> |
380 | <target>Download</target> | 380 | <target>Download</target> |
@@ -2609,7 +2609,7 @@ The link will expire within 1 hour.</source> | |||
2609 | <source>Upload on hold</source> | 2609 | <source>Upload on hold</source> |
2610 | <target state="new">Upload on hold</target> | 2610 | <target state="new">Upload on hold</target> |
2611 | 2611 | ||
2612 | <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">167</context></context-group></trans-unit> | 2612 | <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">174</context></context-group></trans-unit> |
2613 | <trans-unit id="285180972645018518" datatype="html"> | 2613 | <trans-unit id="285180972645018518" datatype="html"> |
2614 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2614 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2615 | <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> | 2615 | <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> |
@@ -11061,34 +11061,34 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11061 | <source>Your video was uploaded to your account and is private.</source> | 11061 | <source>Your video was uploaded to your account and is private.</source> |
11062 | <target>Seu vídeo foi enviado para sua conta e é privado.</target> | 11062 | <target>Seu vídeo foi enviado para sua conta e é privado.</target> |
11063 | 11063 | ||
11064 | <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">118</context></context-group></trans-unit> | 11064 | <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">125</context></context-group></trans-unit> |
11065 | <trans-unit id="5699822024600815733"> | 11065 | <trans-unit id="5699822024600815733"> |
11066 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 11066 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
11067 | <target>Mas dados associados (tags, descrição…) serão perdidas, tem certeza que deseja sair dessa página?</target> | 11067 | <target>Mas dados associados (tags, descrição…) serão perdidas, tem certeza que deseja sair dessa página?</target> |
11068 | 11068 | ||
11069 | <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">119</context></context-group></trans-unit> | 11069 | <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> |
11070 | <trans-unit id="1219739004043110649"> | 11070 | <trans-unit id="1219739004043110649"> |
11071 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 11071 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
11072 | <target>Seu vídeo ainda não foi atualizado, você tem certeza que deseja sair dessa página?</target> | 11072 | <target>Seu vídeo ainda não foi atualizado, você tem certeza que deseja sair dessa página?</target> |
11073 | 11073 | ||
11074 | <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">121</context></context-group></trans-unit> | 11074 | <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">128</context></context-group></trans-unit> |
11075 | <trans-unit id="6932865105766151309" datatype="html"> | 11075 | <trans-unit id="6932865105766151309" datatype="html"> |
11076 | <source>Upload</source> | 11076 | <source>Upload</source> |
11077 | <target state="new">Upload</target> | 11077 | <target state="new">Upload</target> |
11078 | 11078 | ||
11079 | <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">227</context></context-group></trans-unit> | 11079 | <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">234</context></context-group></trans-unit> |
11080 | <trans-unit id="8278735427925094503" datatype="html"> | 11080 | <trans-unit id="8278735427925094503" datatype="html"> |
11081 | <source>Upload <x id="PH"/> </source> | 11081 | <source>Upload <x id="PH"/> </source> |
11082 | <target state="translated">Subir | 11082 | <target state="translated">Subir |
11083 | <x id="PH"/> | 11083 | <x id="PH"/> |
11084 | </target> | 11084 | </target> |
11085 | 11085 | ||
11086 | <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">229</context></context-group></trans-unit> | 11086 | <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">236</context></context-group></trans-unit> |
11087 | <trans-unit id="5981816353437801748"> | 11087 | <trans-unit id="5981816353437801748"> |
11088 | <source>Video published.</source> | 11088 | <source>Video published.</source> |
11089 | <target>Vídeo publicado.</target> | 11089 | <target>Vídeo publicado.</target> |
11090 | 11090 | ||
11091 | <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">251</context></context-group></trans-unit> | 11091 | <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">258</context></context-group></trans-unit> |
11092 | <trans-unit id="764164089183618119"> | 11092 | <trans-unit id="764164089183618119"> |
11093 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 11093 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
11094 | <target>Você tem modificações não salvas! Se sair desta páginas, as modificações serão perdidas.</target> | 11094 | <target>Você tem modificações não salvas! Se sair desta páginas, as modificações serão perdidas.</target> |
diff --git a/client/src/locale/angular.pt-PT.xlf b/client/src/locale/angular.pt-PT.xlf index f8f939d14..c02975266 100644 --- a/client/src/locale/angular.pt-PT.xlf +++ b/client/src/locale/angular.pt-PT.xlf | |||
@@ -385,7 +385,7 @@ | |||
385 | <source>video</source> | 385 | <source>video</source> |
386 | <target state="new">video</target> | 386 | <target state="new">video</target> |
387 | 387 | ||
388 | <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">294</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="6438815964972582865" datatype="html"> | 388 | <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">301</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="6438815964972582865" datatype="html"> |
389 | <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> | 389 | <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> |
390 | 390 | ||
391 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> | 391 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> |
@@ -447,10 +447,10 @@ | |||
447 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> | 447 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> |
448 | <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> | 448 | <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> |
449 | 449 | ||
450 | <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">330</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> | 450 | <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">337</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> |
451 | <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> | 451 | <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> |
452 | 452 | ||
453 | <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">349</context></context-group></trans-unit><trans-unit id="5235042777215655908" datatype="html"> | 453 | <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">356</context></context-group></trans-unit><trans-unit id="5235042777215655908" datatype="html"> |
454 | <source>subtitles</source><target state="new">subtitles</target> | 454 | <source>subtitles</source><target state="new">subtitles</target> |
455 | 455 | ||
456 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> | 456 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> |
@@ -460,7 +460,7 @@ | |||
460 | Cancelar | 460 | Cancelar |
461 | </target> | 461 | </target> |
462 | 462 | ||
463 | <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">48</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> | 463 | <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">48</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">23</context></context-group></trans-unit> |
464 | <trans-unit id="3099741642167775297"> | 464 | <trans-unit id="3099741642167775297"> |
465 | <source>Download</source> | 465 | <source>Download</source> |
466 | <target>Transferir</target> | 466 | <target>Transferir</target> |
@@ -2424,7 +2424,7 @@ The link will expire within 1 hour.</target> | |||
2424 | <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"> | 2424 | <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"> |
2425 | <source>Upload on hold</source><target state="new">Upload on hold</target> | 2425 | <source>Upload on hold</source><target state="new">Upload on hold</target> |
2426 | 2426 | ||
2427 | <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">167</context></context-group></trans-unit> | 2427 | <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">174</context></context-group></trans-unit> |
2428 | <trans-unit id="285180972645018518" datatype="html"> | 2428 | <trans-unit id="285180972645018518" datatype="html"> |
2429 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2429 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2430 | <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> | 2430 | <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> |
@@ -10242,20 +10242,20 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10242 | <source>Your video was uploaded to your account and is private.</source> | 10242 | <source>Your video was uploaded to your account and is private.</source> |
10243 | <target>Seu vídeo foi enviado para sua conta e é privado.</target> | 10243 | <target>Seu vídeo foi enviado para sua conta e é privado.</target> |
10244 | 10244 | ||
10245 | <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">118</context></context-group></trans-unit> | 10245 | <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">125</context></context-group></trans-unit> |
10246 | <trans-unit id="5699822024600815733"> | 10246 | <trans-unit id="5699822024600815733"> |
10247 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10247 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10248 | <target>Mas dados associados (tags, descrição…) serão perdidas, tem certeza que deseja sair dessa página?</target> | 10248 | <target>Mas dados associados (tags, descrição…) serão perdidas, tem certeza que deseja sair dessa página?</target> |
10249 | 10249 | ||
10250 | <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">119</context></context-group></trans-unit> | 10250 | <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> |
10251 | <trans-unit id="1219739004043110649"> | 10251 | <trans-unit id="1219739004043110649"> |
10252 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10252 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10253 | <target>Seu vídeo ainda não foi atualizado, você tem certeza que deseja sair dessa página?</target> | 10253 | <target>Seu vídeo ainda não foi atualizado, você tem certeza que deseja sair dessa página?</target> |
10254 | 10254 | ||
10255 | <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">121</context></context-group></trans-unit><trans-unit id="6932865105766151309" datatype="html"> | 10255 | <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">128</context></context-group></trans-unit><trans-unit id="6932865105766151309" datatype="html"> |
10256 | <source>Upload</source><target state="new">Upload</target> | 10256 | <source>Upload</source><target state="new">Upload</target> |
10257 | 10257 | ||
10258 | <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">227</context></context-group></trans-unit> | 10258 | <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">234</context></context-group></trans-unit> |
10259 | <trans-unit id="8278735427925094503" datatype="html"> | 10259 | <trans-unit id="8278735427925094503" datatype="html"> |
10260 | <source>Upload | 10260 | <source>Upload |
10261 | <x id="PH"/> | 10261 | <x id="PH"/> |
@@ -10264,13 +10264,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10264 | <x id="PH"/> | 10264 | <x id="PH"/> |
10265 | </target> | 10265 | </target> |
10266 | 10266 | ||
10267 | <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">229</context></context-group></trans-unit> | 10267 | <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">236</context></context-group></trans-unit> |
10268 | 10268 | ||
10269 | <trans-unit id="5981816353437801748"> | 10269 | <trans-unit id="5981816353437801748"> |
10270 | <source>Video published.</source> | 10270 | <source>Video published.</source> |
10271 | <target>Vídeo publicado.</target> | 10271 | <target>Vídeo publicado.</target> |
10272 | 10272 | ||
10273 | <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">251</context></context-group></trans-unit> | 10273 | <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">258</context></context-group></trans-unit> |
10274 | 10274 | ||
10275 | 10275 | ||
10276 | <trans-unit id="764164089183618119"> | 10276 | <trans-unit id="764164089183618119"> |
diff --git a/client/src/locale/angular.ru-RU.xlf b/client/src/locale/angular.ru-RU.xlf index 6747bd3eb..da2561b60 100644 --- a/client/src/locale/angular.ru-RU.xlf +++ b/client/src/locale/angular.ru-RU.xlf | |||
@@ -253,9 +253,9 @@ | |||
253 | <trans-unit id="1006562256968398209" datatype="html"> | 253 | <trans-unit id="1006562256968398209" datatype="html"> |
254 | <source>video</source> | 254 | <source>video</source> |
255 | <target state="translated">видео</target> | 255 | <target state="translated">видео</target> |
256 | <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">294</context></context-group> | 256 | |
257 | <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> | 257 | |
258 | </trans-unit> | 258 | <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">301</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> |
259 | <trans-unit id="6438815964972582865" datatype="html"> | 259 | <trans-unit id="6438815964972582865" datatype="html"> |
260 | <source>The following link contains a private token and should not be shared with anyone.</source> | 260 | <source>The following link contains a private token and should not be shared with anyone.</source> |
261 | <target state="translated">Следующая ссылка содержит личный токен и никому не может быть передана.</target> | 261 | <target state="translated">Следующая ссылка содержит личный токен и никому не может быть передана.</target> |
@@ -325,13 +325,13 @@ | |||
325 | <trans-unit id="6995024616159044376" datatype="html"> | 325 | <trans-unit id="6995024616159044376" datatype="html"> |
326 | <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> | 326 | <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> |
327 | <target state="translated">Ваша квота для этого видео превышена (размер видео: <x id="PH" equiv-text="videoSizeBytes"/>, использовано: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, квота: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> | 327 | <target state="translated">Ваша квота для этого видео превышена (размер видео: <x id="PH" equiv-text="videoSizeBytes"/>, использовано: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, квота: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> |
328 | <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">330</context></context-group> | 328 | |
329 | </trans-unit> | 329 | <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">337</context></context-group></trans-unit> |
330 | <trans-unit id="7873395933409147217" datatype="html"> | 330 | <trans-unit id="7873395933409147217" datatype="html"> |
331 | <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> | 331 | <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> |
332 | <target state="translated">Ваша дневная квота для этого видео превышена (размер видео: <x id="PH" equiv-text="videoSizeBytes"/>, использовано: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, квота: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> | 332 | <target state="translated">Ваша дневная квота для этого видео превышена (размер видео: <x id="PH" equiv-text="videoSizeBytes"/>, использовано: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, квота: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> |
333 | <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">349</context></context-group> | 333 | |
334 | </trans-unit> | 334 | <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">356</context></context-group></trans-unit> |
335 | <trans-unit id="5235042777215655908" datatype="html"> | 335 | <trans-unit id="5235042777215655908" datatype="html"> |
336 | <source>subtitles</source> | 336 | <source>subtitles</source> |
337 | <target state="translated">субтитры</target> | 337 | <target state="translated">субтитры</target> |
@@ -342,9 +342,9 @@ | |||
342 | <target> | 342 | <target> |
343 | Отмена | 343 | Отмена |
344 | </target> | 344 | </target> |
345 | <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">48</context></context-group> | 345 | |
346 | <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> | 346 | |
347 | </trans-unit> | 347 | <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">48</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">23</context></context-group></trans-unit> |
348 | <trans-unit id="3099741642167775297"> | 348 | <trans-unit id="3099741642167775297"> |
349 | <source>Download</source> | 349 | <source>Download</source> |
350 | <target>Скачать</target> | 350 | <target>Скачать</target> |
@@ -906,10 +906,10 @@ | |||
906 | <trans-unit id="2392488717875840729" datatype="html"> | 906 | <trans-unit id="2392488717875840729" datatype="html"> |
907 | <source>User</source> | 907 | <source>User</source> |
908 | <target state="translated">Пользователь</target> | 908 | <target state="translated">Пользователь</target> |
909 | 909 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group> | |
910 | 910 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">27</context></context-group> | |
911 | 911 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group> | |
912 | <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">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group></trans-unit> | 912 | </trans-unit> |
913 | <trans-unit id="4209525355702493436"> | 913 | <trans-unit id="4209525355702493436"> |
914 | <source>Ban</source> | 914 | <source>Ban</source> |
915 | <target>Заблокировать</target> | 915 | <target>Заблокировать</target> |
@@ -2027,14 +2027,14 @@ The link will expire within 1 hour.</source> | |||
2027 | <trans-unit id="6179532215548637839" datatype="html"> | 2027 | <trans-unit id="6179532215548637839" datatype="html"> |
2028 | <source>extensions</source> | 2028 | <source>extensions</source> |
2029 | <target state="translated">расширения</target> | 2029 | <target state="translated">расширения</target> |
2030 | 2030 | <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> | |
2031 | <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> | 2031 | </trans-unit> |
2032 | <trans-unit id="8054921481196967348" datatype="html"> | 2032 | <trans-unit id="8054921481196967348" datatype="html"> |
2033 | <source>This image is too large.</source> | 2033 | <source>This image is too large.</source> |
2034 | <target state="translated">Это изображение слишком большое.</target> | 2034 | <target state="translated">Это изображение слишком большое.</target> |
2035 | 2035 | <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> | |
2036 | 2036 | <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> | |
2037 | <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> | 2037 | </trans-unit> |
2038 | <trans-unit id="6259523075362402245" datatype="html"> | 2038 | <trans-unit id="6259523075362402245" datatype="html"> |
2039 | <source>Upload a new banner</source> | 2039 | <source>Upload a new banner</source> |
2040 | <target state="translated">Загрузите новый баннер</target> | 2040 | <target state="translated">Загрузите новый баннер</target> |
@@ -2059,13 +2059,13 @@ The link will expire within 1 hour.</source> | |||
2059 | <trans-unit id="3220184757632006830" datatype="html"> | 2059 | <trans-unit id="3220184757632006830" datatype="html"> |
2060 | <source>Account avatar</source> | 2060 | <source>Account avatar</source> |
2061 | <target state="translated">Аватар аккаунта</target> | 2061 | <target state="translated">Аватар аккаунта</target> |
2062 | 2062 | <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> | |
2063 | <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> | 2063 | </trans-unit> |
2064 | <trans-unit id="1138964882426023395" datatype="html"> | 2064 | <trans-unit id="1138964882426023395" datatype="html"> |
2065 | <source>Channel avatar</source> | 2065 | <source>Channel avatar</source> |
2066 | <target state="translated">Аватар канала</target> | 2066 | <target state="translated">Аватар канала</target> |
2067 | 2067 | <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> | |
2068 | <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> | 2068 | </trans-unit> |
2069 | <trans-unit id="1358902062258458923" datatype="html"> | 2069 | <trans-unit id="1358902062258458923" datatype="html"> |
2070 | <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> | 2070 | <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> |
2071 | <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> | 2071 | <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> |
@@ -2514,8 +2514,8 @@ The link will expire within 1 hour.</source> | |||
2514 | <trans-unit id="6161604372916832458" datatype="html"> | 2514 | <trans-unit id="6161604372916832458" datatype="html"> |
2515 | <source>Upload on hold</source> | 2515 | <source>Upload on hold</source> |
2516 | <target state="translated">Загрузка приостановлена</target> | 2516 | <target state="translated">Загрузка приостановлена</target> |
2517 | <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">167</context></context-group> | 2517 | |
2518 | </trans-unit> | 2518 | <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">174</context></context-group></trans-unit> |
2519 | <trans-unit id="285180972645018518" datatype="html"> | 2519 | <trans-unit id="285180972645018518" datatype="html"> |
2520 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2520 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2521 | <target state="translated">Извините, загрузка файлов недоступна для вашей учётной записи. Если вы хотите добавлять видео, свяжитесь с администратором.</target> | 2521 | <target state="translated">Извините, загрузка файлов недоступна для вашей учётной записи. Если вы хотите добавлять видео, свяжитесь с администратором.</target> |
@@ -3306,9 +3306,8 @@ The link will expire within 1 hour.</source> | |||
3306 | <trans-unit id="9160510009013134726" datatype="html"> | 3306 | <trans-unit id="9160510009013134726" datatype="html"> |
3307 | <source>Unfollow</source> | 3307 | <source>Unfollow</source> |
3308 | <target state="translated">Отписаться</target> | 3308 | <target state="translated">Отписаться</target> |
3309 | 3309 | <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> | |
3310 | 3310 | </trans-unit> | |
3311 | <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> | ||
3312 | <trans-unit id="8246779176913476983" datatype="html"> | 3311 | <trans-unit id="8246779176913476983" datatype="html"> |
3313 | <source>Open instance in a new tab</source> | 3312 | <source>Open instance in a new tab</source> |
3314 | <target state="translated">Открыть экземпляр в новой вкладке</target> | 3313 | <target state="translated">Открыть экземпляр в новой вкладке</target> |
@@ -4837,8 +4836,8 @@ The link will expire within 1 hour.</source> | |||
4837 | <trans-unit id="2149300564474427551"> | 4836 | <trans-unit id="2149300564474427551"> |
4838 | <source>Administrator</source> | 4837 | <source>Administrator</source> |
4839 | <target>Администратор</target> | 4838 | <target>Администратор</target> |
4840 | 4839 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group> | |
4841 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group></trans-unit> | 4840 | </trans-unit> |
4842 | <trans-unit id="3171683206914962995"> | 4841 | <trans-unit id="3171683206914962995"> |
4843 | <source>Admin email</source> | 4842 | <source>Admin email</source> |
4844 | <target>Электронная почта администратора</target> | 4843 | <target>Электронная почта администратора</target> |
@@ -5402,8 +5401,6 @@ color: red; | |||
5402 | <context context-type="linenumber">66</context> | 5401 | <context context-type="linenumber">66</context> |
5403 | </context-group> | 5402 | </context-group> |
5404 | </trans-unit> | 5403 | </trans-unit> |
5405 | |||
5406 | |||
5407 | <trans-unit id="5723033003381016192" datatype="html"> | 5404 | <trans-unit id="5723033003381016192" datatype="html"> |
5408 | <source>Scope:</source> | 5405 | <source>Scope:</source> |
5409 | <target state="translated">Область просмотра:</target> | 5406 | <target state="translated">Область просмотра:</target> |
@@ -5412,7 +5409,6 @@ color: red; | |||
5412 | <context context-type="linenumber">81</context> | 5409 | <context context-type="linenumber">81</context> |
5413 | </context-group> | 5410 | </context-group> |
5414 | </trans-unit> | 5411 | </trans-unit> |
5415 | |||
5416 | <trans-unit id="8481241275509347668" datatype="html"> | 5412 | <trans-unit id="8481241275509347668" datatype="html"> |
5417 | <source>Local videos (this instance)</source> | 5413 | <source>Local videos (this instance)</source> |
5418 | <target state="translated">Локальные видео (этот экземпляр)</target> | 5414 | <target state="translated">Локальные видео (этот экземпляр)</target> |
@@ -5421,7 +5417,6 @@ color: red; | |||
5421 | <context context-type="linenumber">85</context> | 5417 | <context context-type="linenumber">85</context> |
5422 | </context-group> | 5418 | </context-group> |
5423 | </trans-unit> | 5419 | </trans-unit> |
5424 | |||
5425 | <trans-unit id="8383401711408398806" datatype="html"> | 5420 | <trans-unit id="8383401711408398806" datatype="html"> |
5426 | <source>Federated videos (this instance + followed instances)</source> | 5421 | <source>Federated videos (this instance + followed instances)</source> |
5427 | <target state="translated">Видео федерации (этот экземпляр + отслеживаемые экземпляры)</target> | 5422 | <target state="translated">Видео федерации (этот экземпляр + отслеживаемые экземпляры)</target> |
@@ -5446,7 +5441,6 @@ color: red; | |||
5446 | <context context-type="linenumber">99</context> | 5441 | <context context-type="linenumber">99</context> |
5447 | </context-group> | 5442 | </context-group> |
5448 | </trans-unit> | 5443 | </trans-unit> |
5449 | |||
5450 | <trans-unit id="1370537846415473089" datatype="html"> | 5444 | <trans-unit id="1370537846415473089" datatype="html"> |
5451 | <source>Categories:</source> | 5445 | <source>Categories:</source> |
5452 | <target state="translated">Категории:</target> | 5446 | <target state="translated">Категории:</target> |
@@ -5798,7 +5792,7 @@ color: red; | |||
5798 | </trans-unit> | 5792 | </trans-unit> |
5799 | <trans-unit id="5511928240200239994" datatype="html"> | 5793 | <trans-unit id="5511928240200239994" datatype="html"> |
5800 | <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> | 5794 | <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> |
5801 | <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>"/>, an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>аватар<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> и <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>описание<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</target> | 5795 | <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>"/>, <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>аватар<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> и <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>описание<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</target> |
5802 | <context-group purpose="location"> | 5796 | <context-group purpose="location"> |
5803 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> | 5797 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> |
5804 | <context context-type="linenumber">5</context> | 5798 | <context context-type="linenumber">5</context> |
@@ -6681,8 +6675,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6681 | <trans-unit id="784681343382270982" datatype="html"> | 6675 | <trans-unit id="784681343382270982" datatype="html"> |
6682 | <source>Remove this filter</source> | 6676 | <source>Remove this filter</source> |
6683 | <target state="translated">Удалить этот фильтр</target> | 6677 | <target state="translated">Удалить этот фильтр</target> |
6684 | 6678 | <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> | |
6685 | <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> | 6679 | </trans-unit> |
6686 | <trans-unit id="5254305728396198887" datatype="html"> | 6680 | <trans-unit id="5254305728396198887" datatype="html"> |
6687 | <source>Sensitive content</source> | 6681 | <source>Sensitive content</source> |
6688 | <target state="translated">Конфиденциальный контент</target> | 6682 | <target state="translated">Конфиденциальный контент</target> |
@@ -8370,9 +8364,9 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8370 | <trans-unit id="7916647920967632052" datatype="html"> | 8364 | <trans-unit id="7916647920967632052" datatype="html"> |
8371 | <source>max size</source> | 8365 | <source>max size</source> |
8372 | <target state="translated">максимальный размер</target> | 8366 | <target state="translated">максимальный размер</target> |
8373 | 8367 | <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> | |
8374 | 8368 | <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> | |
8375 | <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> | 8369 | </trans-unit> |
8376 | <trans-unit id="6489275254908395777" datatype="html"> | 8370 | <trans-unit id="6489275254908395777" datatype="html"> |
8377 | <source>Maximize editor</source> | 8371 | <source>Maximize editor</source> |
8378 | <target state="translated">Развернуть редактор</target> | 8372 | <target state="translated">Развернуть редактор</target> |
@@ -9804,16 +9798,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9804 | <trans-unit id="6952960992592445535" datatype="html"> | 9798 | <trans-unit id="6952960992592445535" datatype="html"> |
9805 | <source><x id="PH"/> (channel page) </source> | 9799 | <source><x id="PH"/> (channel page) </source> |
9806 | <target state="translated"><x id="PH"/> (страница канала) </target> | 9800 | <target state="translated"><x id="PH"/> (страница канала) </target> |
9807 | 9801 | <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">19</context></context-group> | |
9808 | 9802 | <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> | |
9809 | 9803 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">113</context></context-group> | |
9810 | <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">19</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">113</context></context-group></trans-unit> | 9804 | </trans-unit> |
9811 | <trans-unit id="1209500590333005801" datatype="html"> | 9805 | <trans-unit id="1209500590333005801" datatype="html"> |
9812 | <source><x id="PH"/> (account page) </source> | 9806 | <source><x id="PH"/> (account page) </source> |
9813 | <target state="translated"><x id="PH"/> (страница аккаунта) </target> | 9807 | <target state="translated"><x id="PH"/> (страница аккаунта) </target> |
9814 | 9808 | <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> | |
9815 | 9809 | <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> | |
9816 | <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">39</context></context-group></trans-unit> | 9810 | </trans-unit> |
9817 | <trans-unit id="2516633974298697807"> | 9811 | <trans-unit id="2516633974298697807"> |
9818 | <source>Emphasis</source> | 9812 | <source>Emphasis</source> |
9819 | <target>Подчёркивание</target> | 9813 | <target>Подчёркивание</target> |
@@ -10213,8 +10207,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10213 | <trans-unit id="4968151111061046122"> | 10207 | <trans-unit id="4968151111061046122"> |
10214 | <source>Moderator</source> | 10208 | <source>Moderator</source> |
10215 | <target>Модератор</target> | 10209 | <target>Модератор</target> |
10216 | 10210 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group> | |
10217 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group></trans-unit> | 10211 | </trans-unit> |
10218 | <trans-unit id="2279527393438260622" datatype="html"> | 10212 | <trans-unit id="2279527393438260622" datatype="html"> |
10219 | <source>Search videos, playlists, channels…</source> | 10213 | <source>Search videos, playlists, channels…</source> |
10220 | <target state="translated">Искать видео, плейлисты, каналы…</target> | 10214 | <target state="translated">Искать видео, плейлисты, каналы…</target> |
@@ -10760,33 +10754,33 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10760 | <trans-unit id="3284171506518522275"> | 10754 | <trans-unit id="3284171506518522275"> |
10761 | <source>Your video was uploaded to your account and is private.</source> | 10755 | <source>Your video was uploaded to your account and is private.</source> |
10762 | <target>Ваше видео было загружено на ваш аккаунт и является приватным.</target> | 10756 | <target>Ваше видео было загружено на ваш аккаунт и является приватным.</target> |
10763 | <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">118</context></context-group> | 10757 | |
10764 | </trans-unit> | 10758 | <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">125</context></context-group></trans-unit> |
10765 | <trans-unit id="5699822024600815733"> | 10759 | <trans-unit id="5699822024600815733"> |
10766 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10760 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10767 | <target>Но связанные данные (теги, описание...) будут потеряны, вы уверены, что хотите покинуть эту страницу?</target> | 10761 | <target>Но связанные данные (теги, описание...) будут потеряны, вы уверены, что хотите покинуть эту страницу?</target> |
10768 | <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">119</context></context-group> | 10762 | |
10769 | </trans-unit> | 10763 | <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> |
10770 | <trans-unit id="1219739004043110649"> | 10764 | <trans-unit id="1219739004043110649"> |
10771 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10765 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10772 | <target>Ваше видео еще не загружено, вы уверены, что хотите покинуть эту страницу?</target> | 10766 | <target>Ваше видео еще не загружено, вы уверены, что хотите покинуть эту страницу?</target> |
10773 | <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">121</context></context-group> | 10767 | |
10774 | </trans-unit> | 10768 | <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">128</context></context-group></trans-unit> |
10775 | <trans-unit id="6932865105766151309" datatype="html"> | 10769 | <trans-unit id="6932865105766151309" datatype="html"> |
10776 | <source>Upload</source> | 10770 | <source>Upload</source> |
10777 | <target state="translated">Загрузить</target> | 10771 | <target state="translated">Загрузить</target> |
10778 | <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">227</context></context-group> | 10772 | |
10779 | </trans-unit> | 10773 | <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">234</context></context-group></trans-unit> |
10780 | <trans-unit id="8278735427925094503" datatype="html"> | 10774 | <trans-unit id="8278735427925094503" datatype="html"> |
10781 | <source>Upload <x id="PH"/> </source> | 10775 | <source>Upload <x id="PH"/> </source> |
10782 | <target state="translated">Загрузить <x id="PH"/> </target> | 10776 | <target state="translated">Загрузить <x id="PH"/> </target> |
10783 | <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">229</context></context-group> | 10777 | |
10784 | </trans-unit> | 10778 | <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">236</context></context-group></trans-unit> |
10785 | <trans-unit id="5981816353437801748"> | 10779 | <trans-unit id="5981816353437801748"> |
10786 | <source>Video published.</source> | 10780 | <source>Video published.</source> |
10787 | <target>Видео опубликовано.</target> | 10781 | <target>Видео опубликовано.</target> |
10788 | <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">251</context></context-group> | 10782 | |
10789 | </trans-unit> | 10783 | <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">258</context></context-group></trans-unit> |
10790 | <trans-unit id="764164089183618119"> | 10784 | <trans-unit id="764164089183618119"> |
10791 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 10785 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
10792 | <target>У вас есть несохраненные изменения! Если вы уйдете, ваши изменения будут потеряны.</target> | 10786 | <target>У вас есть несохраненные изменения! Если вы уйдете, ваши изменения будут потеряны.</target> |
diff --git a/client/src/locale/angular.sk-SK.xlf b/client/src/locale/angular.sk-SK.xlf index d709684b5..f15ca7a3d 100644 --- a/client/src/locale/angular.sk-SK.xlf +++ b/client/src/locale/angular.sk-SK.xlf | |||
@@ -393,7 +393,7 @@ | |||
393 | <source>video</source> | 393 | <source>video</source> |
394 | <target state="new">video</target> | 394 | <target state="new">video</target> |
395 | 395 | ||
396 | <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">294</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="6438815964972582865" datatype="html"> | 396 | <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">301</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="6438815964972582865" datatype="html"> |
397 | <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> | 397 | <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> |
398 | 398 | ||
399 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> | 399 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> |
@@ -455,10 +455,10 @@ | |||
455 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> | 455 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> |
456 | <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> | 456 | <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> |
457 | 457 | ||
458 | <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">330</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> | 458 | <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">337</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> |
459 | <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> | 459 | <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> |
460 | 460 | ||
461 | <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">349</context></context-group></trans-unit><trans-unit id="5235042777215655908" datatype="html"> | 461 | <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">356</context></context-group></trans-unit><trans-unit id="5235042777215655908" datatype="html"> |
462 | <source>subtitles</source><target state="new">subtitles</target> | 462 | <source>subtitles</source><target state="new">subtitles</target> |
463 | 463 | ||
464 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> | 464 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> |
@@ -470,7 +470,7 @@ | |||
470 | Cancel | 470 | Cancel |
471 | </target> | 471 | </target> |
472 | 472 | ||
473 | <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">48</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> | 473 | <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">48</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">23</context></context-group></trans-unit> |
474 | <trans-unit id="3099741642167775297" datatype="html"> | 474 | <trans-unit id="3099741642167775297" datatype="html"> |
475 | <source>Download</source> | 475 | <source>Download</source> |
476 | <target state="new">Download</target> | 476 | <target state="new">Download</target> |
@@ -2484,7 +2484,7 @@ The link will expire within 1 hour.</target> | |||
2484 | <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"> | 2484 | <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"> |
2485 | <source>Upload on hold</source><target state="new">Upload on hold</target> | 2485 | <source>Upload on hold</source><target state="new">Upload on hold</target> |
2486 | 2486 | ||
2487 | <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">167</context></context-group></trans-unit> | 2487 | <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">174</context></context-group></trans-unit> |
2488 | <trans-unit id="285180972645018518" datatype="html"> | 2488 | <trans-unit id="285180972645018518" datatype="html"> |
2489 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2489 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2490 | <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> | 2490 | <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> |
@@ -10361,20 +10361,20 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10361 | <source>Your video was uploaded to your account and is private.</source> | 10361 | <source>Your video was uploaded to your account and is private.</source> |
10362 | <target state="new">Your video was uploaded to your account and is private.</target> | 10362 | <target state="new">Your video was uploaded to your account and is private.</target> |
10363 | 10363 | ||
10364 | <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">118</context></context-group></trans-unit> | 10364 | <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">125</context></context-group></trans-unit> |
10365 | <trans-unit id="5699822024600815733" datatype="html"> | 10365 | <trans-unit id="5699822024600815733" datatype="html"> |
10366 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10366 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10367 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> | 10367 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> |
10368 | 10368 | ||
10369 | <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">119</context></context-group></trans-unit> | 10369 | <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> |
10370 | <trans-unit id="1219739004043110649" datatype="html"> | 10370 | <trans-unit id="1219739004043110649" datatype="html"> |
10371 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10371 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10372 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> | 10372 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> |
10373 | 10373 | ||
10374 | <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">121</context></context-group></trans-unit><trans-unit id="6932865105766151309" datatype="html"> | 10374 | <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">128</context></context-group></trans-unit><trans-unit id="6932865105766151309" datatype="html"> |
10375 | <source>Upload</source><target state="new">Upload</target> | 10375 | <source>Upload</source><target state="new">Upload</target> |
10376 | 10376 | ||
10377 | <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">227</context></context-group></trans-unit> | 10377 | <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">234</context></context-group></trans-unit> |
10378 | <trans-unit id="8278735427925094503" datatype="html"> | 10378 | <trans-unit id="8278735427925094503" datatype="html"> |
10379 | <source>Upload | 10379 | <source>Upload |
10380 | <x id="PH"/> | 10380 | <x id="PH"/> |
@@ -10383,13 +10383,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10383 | <x id="PH"/> | 10383 | <x id="PH"/> |
10384 | </target> | 10384 | </target> |
10385 | 10385 | ||
10386 | <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">229</context></context-group></trans-unit> | 10386 | <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">236</context></context-group></trans-unit> |
10387 | 10387 | ||
10388 | <trans-unit id="5981816353437801748" datatype="html"> | 10388 | <trans-unit id="5981816353437801748" datatype="html"> |
10389 | <source>Video published.</source> | 10389 | <source>Video published.</source> |
10390 | <target state="new">Video published.</target> | 10390 | <target state="new">Video published.</target> |
10391 | 10391 | ||
10392 | <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">251</context></context-group></trans-unit> | 10392 | <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">258</context></context-group></trans-unit> |
10393 | 10393 | ||
10394 | 10394 | ||
10395 | <trans-unit id="764164089183618119" datatype="html"> | 10395 | <trans-unit id="764164089183618119" datatype="html"> |
diff --git a/client/src/locale/angular.sl-SI.xlf b/client/src/locale/angular.sl-SI.xlf index 5b51f2dfa..a4feea015 100644 --- a/client/src/locale/angular.sl-SI.xlf +++ b/client/src/locale/angular.sl-SI.xlf | |||
@@ -367,7 +367,7 @@ | |||
367 | <source>video</source> | 367 | <source>video</source> |
368 | <target state="new">video</target> | 368 | <target state="new">video</target> |
369 | 369 | ||
370 | <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">294</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> | 370 | <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">301</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> |
371 | <trans-unit id="6438815964972582865" datatype="html"> | 371 | <trans-unit id="6438815964972582865" datatype="html"> |
372 | <source>The following link contains a private token and should not be shared with anyone.</source> | 372 | <source>The following link contains a private token and should not be shared with anyone.</source> |
373 | <target state="new"> The following link contains a private token and should not be shared with anyone. </target> | 373 | <target state="new"> The following link contains a private token and should not be shared with anyone. </target> |
@@ -438,10 +438,10 @@ | |||
438 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> | 438 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> |
439 | <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> | 439 | <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> |
440 | 440 | ||
441 | <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">330</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> | 441 | <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">337</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> |
442 | <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> | 442 | <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> |
443 | 443 | ||
444 | <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">349</context></context-group></trans-unit> | 444 | <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">356</context></context-group></trans-unit> |
445 | <trans-unit id="5235042777215655908" datatype="html"> | 445 | <trans-unit id="5235042777215655908" datatype="html"> |
446 | <source>subtitles</source> | 446 | <source>subtitles</source> |
447 | <target state="new">subtitles</target> | 447 | <target state="new">subtitles</target> |
@@ -453,7 +453,7 @@ | |||
453 | Prekliči | 453 | Prekliči |
454 | </target> | 454 | </target> |
455 | 455 | ||
456 | <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">48</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> | 456 | <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">48</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">23</context></context-group></trans-unit> |
457 | <trans-unit id="3099741642167775297" datatype="html"> | 457 | <trans-unit id="3099741642167775297" datatype="html"> |
458 | <source>Download</source> | 458 | <source>Download</source> |
459 | <target state="new">Download</target> | 459 | <target state="new">Download</target> |
@@ -2612,7 +2612,7 @@ The link will expire within 1 hour.</target> | |||
2612 | <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"> | 2612 | <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"> |
2613 | <source>Upload on hold</source><target state="new">Upload on hold</target> | 2613 | <source>Upload on hold</source><target state="new">Upload on hold</target> |
2614 | 2614 | ||
2615 | <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">167</context></context-group></trans-unit> | 2615 | <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">174</context></context-group></trans-unit> |
2616 | <trans-unit id="285180972645018518" datatype="html"> | 2616 | <trans-unit id="285180972645018518" datatype="html"> |
2617 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2617 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2618 | <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> | 2618 | <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> |
@@ -11057,35 +11057,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11057 | <source>Your video was uploaded to your account and is private.</source> | 11057 | <source>Your video was uploaded to your account and is private.</source> |
11058 | <target state="new">Your video was uploaded to your account and is private.</target> | 11058 | <target state="new">Your video was uploaded to your account and is private.</target> |
11059 | 11059 | ||
11060 | <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">118</context></context-group></trans-unit> | 11060 | <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">125</context></context-group></trans-unit> |
11061 | <trans-unit id="5699822024600815733" datatype="html"> | 11061 | <trans-unit id="5699822024600815733" datatype="html"> |
11062 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 11062 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
11063 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> | 11063 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> |
11064 | 11064 | ||
11065 | <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">119</context></context-group></trans-unit> | 11065 | <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> |
11066 | <trans-unit id="1219739004043110649" datatype="html"> | 11066 | <trans-unit id="1219739004043110649" datatype="html"> |
11067 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 11067 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
11068 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> | 11068 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> |
11069 | 11069 | ||
11070 | <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">121</context></context-group></trans-unit> | 11070 | <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">128</context></context-group></trans-unit> |
11071 | <trans-unit id="6932865105766151309" datatype="html"> | 11071 | <trans-unit id="6932865105766151309" datatype="html"> |
11072 | <source>Upload</source> | 11072 | <source>Upload</source> |
11073 | <target state="new">Upload</target> | 11073 | <target state="new">Upload</target> |
11074 | 11074 | ||
11075 | <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">227</context></context-group></trans-unit> | 11075 | <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">234</context></context-group></trans-unit> |
11076 | <trans-unit id="8278735427925094503" datatype="html"> | 11076 | <trans-unit id="8278735427925094503" datatype="html"> |
11077 | <source>Upload <x id="PH"/> </source> | 11077 | <source>Upload <x id="PH"/> </source> |
11078 | <target state="new">Upload | 11078 | <target state="new">Upload |
11079 | <x id="PH"/> | 11079 | <x id="PH"/> |
11080 | </target> | 11080 | </target> |
11081 | 11081 | ||
11082 | <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">229</context></context-group></trans-unit> | 11082 | <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">236</context></context-group></trans-unit> |
11083 | 11083 | ||
11084 | <trans-unit id="5981816353437801748" datatype="html"> | 11084 | <trans-unit id="5981816353437801748" datatype="html"> |
11085 | <source>Video published.</source> | 11085 | <source>Video published.</source> |
11086 | <target state="new">Video published.</target> | 11086 | <target state="new">Video published.</target> |
11087 | 11087 | ||
11088 | <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">251</context></context-group></trans-unit> | 11088 | <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">258</context></context-group></trans-unit> |
11089 | 11089 | ||
11090 | 11090 | ||
11091 | <trans-unit id="764164089183618119" datatype="html"> | 11091 | <trans-unit id="764164089183618119" datatype="html"> |
diff --git a/client/src/locale/angular.sv-SE.xlf b/client/src/locale/angular.sv-SE.xlf index b553563a1..cb1cd7726 100644 --- a/client/src/locale/angular.sv-SE.xlf +++ b/client/src/locale/angular.sv-SE.xlf | |||
@@ -5,13 +5,13 @@ | |||
5 | <trans-unit id="219462505467671767" datatype="html"> | 5 | <trans-unit id="219462505467671767" datatype="html"> |
6 | <source>Close the left menu</source> | 6 | <source>Close the left menu</source> |
7 | <target state="translated">Stäng vänstermenyn</target> | 7 | <target state="translated">Stäng vänstermenyn</target> |
8 | 8 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">133</context></context-group> | |
9 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">133</context></context-group></trans-unit> | 9 | </trans-unit> |
10 | <trans-unit id="3455550526898419928" datatype="html"> | 10 | <trans-unit id="3455550526898419928" datatype="html"> |
11 | <source>Open the left menu</source> | 11 | <source>Open the left menu</source> |
12 | <target state="translated">Öppna vänstermenyn</target> | 12 | <target state="translated">Öppna vänstermenyn</target> |
13 | 13 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">135</context></context-group> | |
14 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">135</context></context-group></trans-unit> | 14 | </trans-unit> |
15 | <trans-unit id="9075761896562520962"> | 15 | <trans-unit id="9075761896562520962"> |
16 | <source>You don't have notifications.</source> | 16 | <source>You don't have notifications.</source> |
17 | <target>Du har inga notifikationer.</target> | 17 | <target>Du har inga notifikationer.</target> |
@@ -255,9 +255,9 @@ | |||
255 | <trans-unit id="1006562256968398209" datatype="html"> | 255 | <trans-unit id="1006562256968398209" datatype="html"> |
256 | <source>video</source> | 256 | <source>video</source> |
257 | <target state="translated">video</target> | 257 | <target state="translated">video</target> |
258 | <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">294</context></context-group> | 258 | |
259 | <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> | 259 | |
260 | </trans-unit> | 260 | <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">301</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> |
261 | <trans-unit id="6438815964972582865" datatype="html"> | 261 | <trans-unit id="6438815964972582865" datatype="html"> |
262 | <source>The following link contains a private token and should not be shared with anyone.</source> | 262 | <source>The following link contains a private token and should not be shared with anyone.</source> |
263 | <target state="translated">Följande länk innehåller en personlig nyckel och bör ej delas med någon annan.</target> | 263 | <target state="translated">Följande länk innehåller en personlig nyckel och bör ej delas med någon annan.</target> |
@@ -329,13 +329,13 @@ | |||
329 | <trans-unit id="6995024616159044376" datatype="html"> | 329 | <trans-unit id="6995024616159044376" datatype="html"> |
330 | <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> | 330 | <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> |
331 | <target state="translated">Din videokvot kommer överskridas av den här videon (videostorlek: <x id="PH" equiv-text="videoSizeBytes"/>, använt: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, kvot: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> | 331 | <target state="translated">Din videokvot kommer överskridas av den här videon (videostorlek: <x id="PH" equiv-text="videoSizeBytes"/>, använt: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, kvot: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> |
332 | <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">330</context></context-group> | 332 | |
333 | </trans-unit> | 333 | <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">337</context></context-group></trans-unit> |
334 | <trans-unit id="7873395933409147217" datatype="html"> | 334 | <trans-unit id="7873395933409147217" datatype="html"> |
335 | <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> | 335 | <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> |
336 | <target state="translated">Din dagliga videokvot kommer överskridas av den här videon (videostorlek: <x id="PH" equiv-text="videoSizeBytes"/>, använt: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, kvot:<x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> | 336 | <target state="translated">Din dagliga videokvot kommer överskridas av den här videon (videostorlek: <x id="PH" equiv-text="videoSizeBytes"/>, använt: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, kvot:<x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> |
337 | <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">349</context></context-group> | 337 | |
338 | </trans-unit> | 338 | <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">356</context></context-group></trans-unit> |
339 | <trans-unit id="5235042777215655908" datatype="html"> | 339 | <trans-unit id="5235042777215655908" datatype="html"> |
340 | <source>subtitles</source> | 340 | <source>subtitles</source> |
341 | <target state="translated">undertexter</target> | 341 | <target state="translated">undertexter</target> |
@@ -346,9 +346,9 @@ | |||
346 | <target> | 346 | <target> |
347 | Avbryt | 347 | Avbryt |
348 | </target> | 348 | </target> |
349 | <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">48</context></context-group> | 349 | |
350 | <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> | 350 | |
351 | </trans-unit> | 351 | <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">48</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">23</context></context-group></trans-unit> |
352 | <trans-unit id="3099741642167775297"> | 352 | <trans-unit id="3099741642167775297"> |
353 | <source>Download</source> | 353 | <source>Download</source> |
354 | <target>Ladda ner</target> | 354 | <target>Ladda ner</target> |
@@ -812,9 +812,9 @@ | |||
812 | <trans-unit id="2906587845957718064"> | 812 | <trans-unit id="2906587845957718064"> |
813 | <source>Local</source> | 813 | <source>Local</source> |
814 | <target>Lokalt</target> | 814 | <target>Lokalt</target> |
815 | 815 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">4</context></context-group> | |
816 | 816 | <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> | |
817 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/instance-statistics.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-filters.model.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> | 817 | </trans-unit> |
818 | <trans-unit id="1670306451865226564"> | 818 | <trans-unit id="1670306451865226564"> |
819 | <source>users</source> | 819 | <source>users</source> |
820 | <target>användare</target> | 820 | <target>användare</target> |
@@ -914,10 +914,10 @@ | |||
914 | <trans-unit id="2392488717875840729" datatype="html"> | 914 | <trans-unit id="2392488717875840729" datatype="html"> |
915 | <source>User</source> | 915 | <source>User</source> |
916 | <target state="translated">Användare</target> | 916 | <target state="translated">Användare</target> |
917 | 917 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group> | |
918 | 918 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">27</context></context-group> | |
919 | 919 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group> | |
920 | <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">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group></trans-unit> | 920 | </trans-unit> |
921 | <trans-unit id="4209525355702493436"> | 921 | <trans-unit id="4209525355702493436"> |
922 | <source>Ban</source> | 922 | <source>Ban</source> |
923 | <target>Blockera</target> | 923 | <target>Blockera</target> |
@@ -1220,89 +1220,89 @@ The link will expire within 1 hour.</source> | |||
1220 | <trans-unit id="1516969129397662377"> | 1220 | <trans-unit id="1516969129397662377"> |
1221 | <source>Welcome to PeerTube, dear administrator!</source> | 1221 | <source>Welcome to PeerTube, dear administrator!</source> |
1222 | <target>Välkommen till PeerTube, kära administratör!</target> | 1222 | <target>Välkommen till PeerTube, kära administratör!</target> |
1223 | 1223 | <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> | |
1224 | <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> | 1224 | </trans-unit> |
1225 | <trans-unit id="807030720531713957"> | 1225 | <trans-unit id="807030720531713957"> |
1226 | <source>CLI documentation</source> | 1226 | <source>CLI documentation</source> |
1227 | <target>Kommandotolk | 1227 | <target>Kommandotolk |
1228 | dokumentation</target> | 1228 | dokumentation</target> |
1229 | 1229 | <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> | |
1230 | <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> | 1230 | </trans-unit> |
1231 | <trans-unit id="199127249622290422" datatype="html"> | 1231 | <trans-unit id="199127249622290422" datatype="html"> |
1232 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> | 1232 | <source>Upload or import videos, parse logs, prune storage directories, reset user password...</source> |
1233 | <target state="translated">Ladda upp eller importera videor, sök i loggfiler, beskär lagringskataloger, återställ användares lösenord …</target> | 1233 | <target state="translated">Ladda upp eller importera videor, sök i loggfiler, beskär lagringskataloger, återställ användares lösenord …</target> |
1234 | 1234 | <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> | |
1235 | <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> | 1235 | </trans-unit> |
1236 | <trans-unit id="249453844439446209"> | 1236 | <trans-unit id="249453844439446209"> |
1237 | <source>Administer documentation</source> | 1237 | <source>Administer documentation</source> |
1238 | <target>Administration | 1238 | <target>Administration |
1239 | dokumentation</target> | 1239 | dokumentation</target> |
1240 | 1240 | <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> | |
1241 | <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> | 1241 | </trans-unit> |
1242 | <trans-unit id="5910950876330656326" datatype="html"> | 1242 | <trans-unit id="5910950876330656326" datatype="html"> |
1243 | <source>Managing users, following other instances, dealing with spammers...</source> | 1243 | <source>Managing users, following other instances, dealing with spammers...</source> |
1244 | <target state="translated">Hanterar användare, följer andra instanser, tar hand om skräppost …</target> | 1244 | <target state="translated">Hanterar användare, följer andra instanser, tar hand om skräppost …</target> |
1245 | 1245 | <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> | |
1246 | <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> | 1246 | </trans-unit> |
1247 | <trans-unit id="879127294610588497"> | 1247 | <trans-unit id="879127294610588497"> |
1248 | <source>Use documentation</source> | 1248 | <source>Use documentation</source> |
1249 | <target>Användning | 1249 | <target>Användning |
1250 | dokumentation</target> | 1250 | dokumentation</target> |
1251 | 1251 | <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> | |
1252 | <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> | 1252 | </trans-unit> |
1253 | <trans-unit id="3848077896245199337" datatype="html"> | 1253 | <trans-unit id="3848077896245199337" datatype="html"> |
1254 | <source>Setup your account, managing video playlists, discover third-party applications...</source> | 1254 | <source>Setup your account, managing video playlists, discover third-party applications...</source> |
1255 | <target state="translated">Skapa ditt konto, hantera spellistor, upptäck tredjepartsapplikationer …</target> | 1255 | <target state="translated">Skapa ditt konto, hantera spellistor, upptäck tredjepartsapplikationer …</target> |
1256 | 1256 | <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> | |
1257 | <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> | 1257 | </trans-unit> |
1258 | <trans-unit id="6284442506490785579"> | 1258 | <trans-unit id="6284442506490785579"> |
1259 | <source>Useful links</source> | 1259 | <source>Useful links</source> |
1260 | <target>Användbara länkar</target> | 1260 | <target>Användbara länkar</target> |
1261 | 1261 | <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> | |
1262 | <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> | 1262 | </trans-unit> |
1263 | <trans-unit id="5170617864166788170" datatype="html"> | 1263 | <trans-unit id="5170617864166788170" datatype="html"> |
1264 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> | 1264 | <source>Official PeerTube website (news, support, contribute...): <x id="START_LINK"/>https://joinpeertube.org<x id="CLOSE_LINK"/></source> |
1265 | <target state="translated">PeerTubes officiella webbplats (nyheter, support, att bidra …): <x id="START_LINK"/>joinpeertube.org<x id="CLOSE_LINK"/></target> | 1265 | <target state="translated">PeerTubes officiella webbplats (nyheter, support, att bidra …): <x id="START_LINK"/>joinpeertube.org<x id="CLOSE_LINK"/></target> |
1266 | 1266 | <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> | |
1267 | <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> | 1267 | </trans-unit> |
1268 | <trans-unit id="4614992717645869756"> | 1268 | <trans-unit id="4614992717645869756"> |
1269 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> | 1269 | <source>Put your instance on the public PeerTube index: <x id="START_LINK"/>https://instances.joinpeertube.org/instances<x id="CLOSE_LINK"/></source> |
1270 | <target>Lägg till din instans i PeerTubes offentliga register: <x id="START_LINK"/>instances.joinpeertube.org<x id="CLOSE_LINK"/></target> | 1270 | <target>Lägg till din instans i PeerTubes offentliga register: <x id="START_LINK"/>instances.joinpeertube.org<x id="CLOSE_LINK"/></target> |
1271 | 1271 | <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> | |
1272 | <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> | 1272 | </trans-unit> |
1273 | <trans-unit id="2081626998027585315"> | 1273 | <trans-unit id="2081626998027585315"> |
1274 | <source>It's time to configure your instance!</source> | 1274 | <source>It's time to configure your instance!</source> |
1275 | <target>Det är dags att konfigurera din instans!</target> | 1275 | <target>Det är dags att konfigurera din instans!</target> |
1276 | 1276 | <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> | |
1277 | <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> | 1277 | </trans-unit> |
1278 | <trans-unit id="5083058563861587027"> | 1278 | <trans-unit id="5083058563861587027"> |
1279 | <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> | 1279 | <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> |
1280 | <target>Att välja ett <x id="START_TAG_STRONG"/>namn för instansen<x id="CLOSE_TAG_STRONG"/>, <x id="START_TAG_STRONG"/>författa en beskrivning<x id="CLOSE_TAG_STRONG"/>, beskriva <x id="START_TAG_STRONG"/>vem du är<x id="CLOSE_TAG_STRONG"/>, varför <x id="START_TAG_STRONG"/>du har startat instansen<x id="CLOSE_TAG_STRONG"/> och <x id="START_TAG_STRONG"/>hur länge<x id="CLOSE_TAG_STRONG"/> du tänker <x id="START_TAG_STRONG"/>underhålla den<x id="CLOSE_TAG_STRONG"/> är mycket viktig information för att dina användare ska kunna skapa sig en bild av instansen. </target> | 1280 | <target>Att välja ett <x id="START_TAG_STRONG"/>namn för instansen<x id="CLOSE_TAG_STRONG"/>, <x id="START_TAG_STRONG"/>författa en beskrivning<x id="CLOSE_TAG_STRONG"/>, beskriva <x id="START_TAG_STRONG"/>vem du är<x id="CLOSE_TAG_STRONG"/>, varför <x id="START_TAG_STRONG"/>du har startat instansen<x id="CLOSE_TAG_STRONG"/> och <x id="START_TAG_STRONG"/>hur länge<x id="CLOSE_TAG_STRONG"/> du tänker <x id="START_TAG_STRONG"/>underhålla den<x id="CLOSE_TAG_STRONG"/> är mycket viktig information för att dina användare ska kunna skapa sig en bild av instansen. </target> |
1281 | 1281 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">58</context></context-group> | |
1282 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit> | 1282 | </trans-unit> |
1283 | <trans-unit id="5329436244765769292" datatype="html"> | 1283 | <trans-unit id="5329436244765769292" datatype="html"> |
1284 | <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> | 1284 | <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> |
1285 | <target state="translated">Om du vill öppna för registreringar, vänligen välj <x id="START_TAG_STRONG"/>dina modereringsregler<x id="CLOSE_TAG_STRONG"/> och <x id="START_TAG_STRONG"/>instansens användarvillkor<x id="CLOSE_TAG_STRONG"/>, samt specificera kategorier och de språk dina moderatorer talar. På så vis hjälper du användare att registrera sig på <x id="START_TAG_STRONG"/>rätt<x id="CLOSE_TAG_STRONG"/> PeerTube-instans. </target> | 1285 | <target state="translated">Om du vill öppna för registreringar, vänligen välj <x id="START_TAG_STRONG"/>dina modereringsregler<x id="CLOSE_TAG_STRONG"/> och <x id="START_TAG_STRONG"/>instansens användarvillkor<x id="CLOSE_TAG_STRONG"/>, samt specificera kategorier och de språk dina moderatorer talar. På så vis hjälper du användare att registrera sig på <x id="START_TAG_STRONG"/>rätt<x id="CLOSE_TAG_STRONG"/> PeerTube-instans. </target> |
1286 | 1286 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">64</context></context-group> | |
1287 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 1287 | </trans-unit> |
1288 | <trans-unit id="5704345824323933019"> | 1288 | <trans-unit id="5704345824323933019"> |
1289 | <source>Remind me later</source> | 1289 | <source>Remind me later</source> |
1290 | <target>Påminn mig senare</target> | 1290 | <target>Påminn mig senare</target> |
1291 | 1291 | <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> | |
1292 | 1292 | <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> | |
1293 | <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/admin-welcome-modal.component.html</context><context context-type="linenumber">74</context></context-group></trans-unit> | 1293 | </trans-unit> |
1294 | <trans-unit id="7997432701743294657" datatype="html"> | 1294 | <trans-unit id="7997432701743294657" datatype="html"> |
1295 | <source>Set up</source> | 1295 | <source>Set up</source> |
1296 | <target state="new"> Set up </target> | 1296 | <target state="translated">Konfigurera</target> |
1297 | 1297 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">35</context></context-group> | |
1298 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context><context context-type="linenumber">35</context></context-group></trans-unit> | 1298 | </trans-unit> |
1299 | <trans-unit id="9202089339019827574"> | 1299 | <trans-unit id="9202089339019827574"> |
1300 | <source>Configure my instance</source> | 1300 | <source>Configure my instance</source> |
1301 | <target> | 1301 | <target> |
1302 | Konfigurera min instans | 1302 | Konfigurera min instans |
1303 | </target> | 1303 | </target> |
1304 | 1304 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">81</context></context-group> | |
1305 | <context-group purpose="location"><context context-type="sourcefile">src/app/modal/admin-welcome-modal.component.html</context><context context-type="linenumber">81</context></context-group></trans-unit> | 1305 | </trans-unit> |
1306 | <trans-unit id="9005121595859995793"> | 1306 | <trans-unit id="9005121595859995793"> |
1307 | <source>Configuration warning!</source> | 1307 | <source>Configuration warning!</source> |
1308 | <target>Konfigurationsvarning!</target> | 1308 | <target>Konfigurationsvarning!</target> |
@@ -1625,29 +1625,31 @@ The link will expire within 1 hour.</source> | |||
1625 | <trans-unit id="5108072242786374364" datatype="html"> | 1625 | <trans-unit id="5108072242786374364" datatype="html"> |
1626 | <source>Welcome to <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, dear user!</source> | 1626 | <source>Welcome to <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, dear user!</source> |
1627 | <target state="translated">Välkommen till <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, kära användare!</target> | 1627 | <target state="translated">Välkommen till <x id="INTERPOLATION" equiv-text="{{ instanceName }}"/>, kära användare!</target> |
1628 | 1628 | <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> | |
1629 | <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> | 1629 | </trans-unit> |
1630 | <trans-unit id="8821712929823045567" datatype="html"> | 1630 | <trans-unit id="8821712929823045567" datatype="html"> |
1631 | <source>It's time to set up your account profile!</source> | 1631 | <source>It's time to set up your account profile!</source> |
1632 | <target state="translated">Det är dags att skapa din kontoprofil!</target> | 1632 | <target state="translated">Det är dags att skapa din kontoprofil!</target> |
1633 | 1633 | <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> | |
1634 | <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> | 1634 | </trans-unit> |
1635 | <trans-unit id="7239874680342223476" datatype="html"> | 1635 | <trans-unit id="7239874680342223476" datatype="html"> |
1636 | <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> | 1636 | <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> |
1637 | <target state="translated">Hjälp moderatorer och andra <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>lära känna dig<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> genom att:</target> | 1637 | <target state="translated">Hjälp moderatorer och andra <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>lära känna dig<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> genom att:</target> |
1638 | 1638 | <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> | |
1639 | <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> | 1639 | </trans-unit> |
1640 | <trans-unit id="5856432243446401016" datatype="html"> | 1640 | <trans-unit id="5856432243446401016" datatype="html"> |
1641 | <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> | 1641 | <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> |
1642 | <target state="translated">Ladda upp en <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>profilbild<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 1642 | <target state="translated">Ladda upp en <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>profilbild<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
1643 | 1643 | <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> | |
1644 | <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> | 1644 | </trans-unit> |
1645 | <trans-unit id="3221645359464920754" datatype="html"> | 1645 | <trans-unit id="3221645359464920754" datatype="html"> |
1646 | <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> | 1646 | <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> |
1647 | <target state="translated">Skriv en <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>beskrivning<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 1647 | <target state="translated">Skriv en <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>beskrivning<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
1648 | 1648 | <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> | |
1649 | <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"> | 1649 | </trans-unit> |
1650 | <source>Don't show me this anymore</source><target state="new">Don't show me this anymore</target> | 1650 | <trans-unit id="2218100934178971211" datatype="html"> |
1651 | <source>Don't show me this anymore</source> | ||
1652 | <target state="translated">Visa inte mig detta igen</target> | ||
1651 | <context-group purpose="location"> | 1653 | <context-group purpose="location"> |
1652 | <context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context> | 1654 | <context context-type="sourcefile">src/app/modal/account-setup-warning-modal.component.html</context> |
1653 | <context context-type="linenumber">23</context> | 1655 | <context context-type="linenumber">23</context> |
@@ -1853,19 +1855,19 @@ The link will expire within 1 hour.</source> | |||
1853 | <trans-unit id="2180217594100853008" datatype="html"> | 1855 | <trans-unit id="2180217594100853008" datatype="html"> |
1854 | <source>Live videos</source> | 1856 | <source>Live videos</source> |
1855 | <target state="new">Live videos</target> | 1857 | <target state="new">Live videos</target> |
1856 | 1858 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">29</context></context-group> | |
1857 | 1859 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">64</context></context-group> | |
1858 | 1860 | <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> | |
1859 | 1861 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">158</context></context-group> | |
1860 | <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/+search/search-filters.component.ts</context><context context-type="linenumber">64</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">158</context></context-group></trans-unit> | 1862 | </trans-unit> |
1861 | <trans-unit id="2392481201920342009" datatype="html"> | 1863 | <trans-unit id="2392481201920342009" datatype="html"> |
1862 | <source>VOD videos</source> | 1864 | <source>VOD videos</source> |
1863 | <target state="new">VOD videos</target> | 1865 | <target state="new">VOD videos</target> |
1864 | 1866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.html</context><context context-type="linenumber">34</context></context-group> | |
1865 | 1867 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">60</context></context-group> | |
1866 | 1868 | <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> | |
1867 | 1869 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">164</context></context-group> | |
1868 | <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/+search/search-filters.component.ts</context><context context-type="linenumber">60</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">164</context></context-group></trans-unit> | 1870 | </trans-unit> |
1869 | <trans-unit id="7970752988844762769"> | 1871 | <trans-unit id="7970752988844762769"> |
1870 | <source>Published date</source> | 1872 | <source>Published date</source> |
1871 | <target>Publiceringsdatum</target> | 1873 | <target>Publiceringsdatum</target> |
@@ -2042,28 +2044,28 @@ The link will expire within 1 hour.</source> | |||
2042 | <trans-unit id="6179532215548637839" datatype="html"> | 2044 | <trans-unit id="6179532215548637839" datatype="html"> |
2043 | <source>extensions</source> | 2045 | <source>extensions</source> |
2044 | <target state="translated">tillägg</target> | 2046 | <target state="translated">tillägg</target> |
2045 | 2047 | <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> | |
2046 | <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> | 2048 | </trans-unit> |
2047 | <trans-unit id="8054921481196967348" datatype="html"> | 2049 | <trans-unit id="8054921481196967348" datatype="html"> |
2048 | <source>This image is too large.</source> | 2050 | <source>This image is too large.</source> |
2049 | <target state="translated">Den här bilden är för stor.</target> | 2051 | <target state="translated">Den här bilden är för stor.</target> |
2050 | 2052 | <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> | |
2051 | 2053 | <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> | |
2052 | <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> | 2054 | </trans-unit> |
2053 | <trans-unit id="6259523075362402245" datatype="html"> | 2055 | <trans-unit id="6259523075362402245" datatype="html"> |
2054 | <source>Upload a new banner</source> | 2056 | <source>Upload a new banner</source> |
2055 | <target state="translated">Ladda upp ett nytt baner</target> | 2057 | <target state="translated">Ladda upp en ny omslagsbild</target> |
2056 | <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> | 2058 | <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> |
2057 | <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> | 2059 | <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> |
2058 | </trans-unit> | 2060 | </trans-unit> |
2059 | <trans-unit id="1117672957968812680" datatype="html"> | 2061 | <trans-unit id="1117672957968812680" datatype="html"> |
2060 | <source>Change your banner</source> | 2062 | <source>Change your banner</source> |
2061 | <target state="translated">Ändra ditt baner</target> | 2063 | <target state="translated">Ändra din omslagsbild</target> |
2062 | <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> | 2064 | <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> |
2063 | </trans-unit> | 2065 | </trans-unit> |
2064 | <trans-unit id="3394080812181176794" datatype="html"> | 2066 | <trans-unit id="3394080812181176794" datatype="html"> |
2065 | <source>Remove banner</source> | 2067 | <source>Remove banner</source> |
2066 | <target state="translated">Ta bort baner</target> | 2068 | <target state="translated">Ta bort omslagsbild</target> |
2067 | <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> | 2069 | <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> |
2068 | </trans-unit> | 2070 | </trans-unit> |
2069 | <trans-unit id="7306351600905511107" datatype="html"> | 2071 | <trans-unit id="7306351600905511107" datatype="html"> |
@@ -2074,13 +2076,13 @@ The link will expire within 1 hour.</source> | |||
2074 | <trans-unit id="3220184757632006830" datatype="html"> | 2076 | <trans-unit id="3220184757632006830" datatype="html"> |
2075 | <source>Account avatar</source> | 2077 | <source>Account avatar</source> |
2076 | <target state="translated">Kontots profilbild</target> | 2078 | <target state="translated">Kontots profilbild</target> |
2077 | 2079 | <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> | |
2078 | <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> | 2080 | </trans-unit> |
2079 | <trans-unit id="1138964882426023395" datatype="html"> | 2081 | <trans-unit id="1138964882426023395" datatype="html"> |
2080 | <source>Channel avatar</source> | 2082 | <source>Channel avatar</source> |
2081 | <target state="translated">Kanalens profilbild</target> | 2083 | <target state="translated">Kanalens profilbild</target> |
2082 | 2084 | <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> | |
2083 | <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> | 2085 | </trans-unit> |
2084 | <trans-unit id="1358902062258458923" datatype="html"> | 2086 | <trans-unit id="1358902062258458923" datatype="html"> |
2085 | <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> | 2087 | <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> |
2086 | <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-kompatibel<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> med stöd för <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>anpassade PeerTube HTML-taggar<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> | 2088 | <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-kompatibel<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> med stöd för <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>anpassade PeerTube HTML-taggar<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> |
@@ -2099,7 +2101,7 @@ The link will expire within 1 hour.</source> | |||
2099 | </trans-unit> | 2101 | </trans-unit> |
2100 | <trans-unit id="283609029522452529" datatype="html"> | 2102 | <trans-unit id="283609029522452529" datatype="html"> |
2101 | <source>Error in channel miniature component: <x id="PH" equiv-text="err.message"/></source> | 2103 | <source>Error in channel miniature component: <x id="PH" equiv-text="err.message"/></source> |
2102 | <target state="new">Error in channel miniature component: <x id="PH" equiv-text="err.message"/></target> | 2104 | <target state="translated">Fel i komponenten för kanalminiatyr: <x id="PH" equiv-text="err.message"/></target> |
2103 | <context-group purpose="location"> | 2105 | <context-group purpose="location"> |
2104 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts</context> | 2106 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts</context> |
2105 | <context context-type="linenumber">57</context> | 2107 | <context context-type="linenumber">57</context> |
@@ -2107,7 +2109,7 @@ The link will expire within 1 hour.</source> | |||
2107 | </trans-unit> | 2109 | </trans-unit> |
2108 | <trans-unit id="3059355667050002541" datatype="html"> | 2110 | <trans-unit id="3059355667050002541" datatype="html"> |
2109 | <source>Error in playlist miniature component: <x id="PH" equiv-text="err.message"/></source> | 2111 | <source>Error in playlist miniature component: <x id="PH" equiv-text="err.message"/></source> |
2110 | <target state="new">Error in playlist miniature component: <x id="PH" equiv-text="err.message"/></target> | 2112 | <target state="translated">Fel i komponenten för spellisteminiatyr: <x id="PH" equiv-text="err.message"/></target> |
2111 | <context-group purpose="location"> | 2113 | <context-group purpose="location"> |
2112 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/playlist-miniature-markup.component.ts</context> | 2114 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/playlist-miniature-markup.component.ts</context> |
2113 | <context context-type="linenumber">47</context> | 2115 | <context context-type="linenumber">47</context> |
@@ -2115,7 +2117,7 @@ The link will expire within 1 hour.</source> | |||
2115 | </trans-unit> | 2117 | </trans-unit> |
2116 | <trans-unit id="863691161959989717" datatype="html"> | 2118 | <trans-unit id="863691161959989717" datatype="html"> |
2117 | <source>Error in video miniature component: <x id="PH" equiv-text="err.message"/></source> | 2119 | <source>Error in video miniature component: <x id="PH" equiv-text="err.message"/></source> |
2118 | <target state="new">Error in video miniature component: <x id="PH" equiv-text="err.message"/></target> | 2120 | <target state="translated">Fel i komponenten för videominiatyr: <x id="PH" equiv-text="err.message"/></target> |
2119 | <context-group purpose="location"> | 2121 | <context-group purpose="location"> |
2120 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts</context> | 2122 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/video-miniature-markup.component.ts</context> |
2121 | <context context-type="linenumber">59</context> | 2123 | <context context-type="linenumber">59</context> |
@@ -2123,7 +2125,7 @@ The link will expire within 1 hour.</source> | |||
2123 | </trans-unit> | 2125 | </trans-unit> |
2124 | <trans-unit id="1247256698916587400" datatype="html"> | 2126 | <trans-unit id="1247256698916587400" datatype="html"> |
2125 | <source>Error in videos list component: <x id="PH" equiv-text="err.message"/></source> | 2127 | <source>Error in videos list component: <x id="PH" equiv-text="err.message"/></source> |
2126 | <target state="new">Error in videos list component: <x id="PH" equiv-text="err.message"/></target> | 2128 | <target state="translated">Fel i komponenten för videolistan: <x id="PH" equiv-text="err.message"/></target> |
2127 | <context-group purpose="location"> | 2129 | <context-group purpose="location"> |
2128 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.ts</context> | 2130 | <context context-type="sourcefile">src/app/shared/shared-custom-markup/peertube-custom-tags/videos-list-markup.component.ts</context> |
2129 | <context context-type="linenumber">77</context> | 2131 | <context context-type="linenumber">77</context> |
@@ -2533,8 +2535,8 @@ The link will expire within 1 hour.</source> | |||
2533 | <trans-unit id="6161604372916832458" datatype="html"> | 2535 | <trans-unit id="6161604372916832458" datatype="html"> |
2534 | <source>Upload on hold</source> | 2536 | <source>Upload on hold</source> |
2535 | <target state="translated">Uppladdning pausad</target> | 2537 | <target state="translated">Uppladdning pausad</target> |
2536 | <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">167</context></context-group> | 2538 | |
2537 | </trans-unit> | 2539 | <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">174</context></context-group></trans-unit> |
2538 | <trans-unit id="285180972645018518" datatype="html"> | 2540 | <trans-unit id="285180972645018518" datatype="html"> |
2539 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2541 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2540 | <target state="translated">Uppladdning är inte aktiverat från ditt konto. Om du vill lägga upp videor, måste en administratör låsa upp din videokvot.</target> | 2542 | <target state="translated">Uppladdning är inte aktiverat från ditt konto. Om du vill lägga upp videor, måste en administratör låsa upp din videokvot.</target> |
@@ -2550,7 +2552,7 @@ The link will expire within 1 hour.</source> | |||
2550 | </trans-unit> | 2552 | </trans-unit> |
2551 | <trans-unit id="438743381693904838" datatype="html"> | 2553 | <trans-unit id="438743381693904838" datatype="html"> |
2552 | <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> | 2554 | <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> |
2553 | <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> | 2555 | <target state="translated">Din dagliga videokvot räcker inte till. Om du vill lägga till fler videor måste du vänta 24 timmar eller be en administratör öka din kvot.</target> |
2554 | <context-group purpose="location"> | 2556 | <context-group purpose="location"> |
2555 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 2557 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
2556 | <context context-type="linenumber">106</context> | 2558 | <context context-type="linenumber">106</context> |
@@ -2558,7 +2560,7 @@ The link will expire within 1 hour.</source> | |||
2558 | </trans-unit> | 2560 | </trans-unit> |
2559 | <trans-unit id="6796692581512042469" datatype="html"> | 2561 | <trans-unit id="6796692581512042469" datatype="html"> |
2560 | <source>Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.</source> | 2562 | <source>Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.</source> |
2561 | <target state="new">Your video quota is insufficient. If you want to add more videos, an admin must increase your quota.</target> | 2563 | <target state="translated">Din videokvot räcker inte till. Om du vill lägga till fler videor måste en administratör öka din kvot.</target> |
2562 | <context-group purpose="location"> | 2564 | <context-group purpose="location"> |
2563 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> | 2565 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add.component.ts</context> |
2564 | <context context-type="linenumber">108</context> | 2566 | <context context-type="linenumber">108</context> |
@@ -2872,7 +2874,7 @@ The link will expire within 1 hour.</source> | |||
2872 | </trans-unit> | 2874 | </trans-unit> |
2873 | <trans-unit id="6981359593518942576" datatype="html"> | 2875 | <trans-unit id="6981359593518942576" datatype="html"> |
2874 | <source>Open the video on the origin instance</source> | 2876 | <source>Open the video on the origin instance</source> |
2875 | <target state="new">Open the video on the origin instance</target> | 2877 | <target state="translated">Öppna videon på ursprungsinstansen</target> |
2876 | <context-group purpose="location"> | 2878 | <context-group purpose="location"> |
2877 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context> | 2879 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/metadata/video-attributes.component.html</context> |
2878 | <context context-type="linenumber">14</context> | 2880 | <context context-type="linenumber">14</context> |
@@ -2940,8 +2942,7 @@ The link will expire within 1 hour.</source> | |||
2940 | </trans-unit> | 2942 | </trans-unit> |
2941 | <trans-unit id="9080034597841586171" datatype="html"> | 2943 | <trans-unit id="9080034597841586171" datatype="html"> |
2942 | <source>The video is being moved to an external server, it may not work properly.</source> | 2944 | <source>The video is being moved to an external server, it may not work properly.</source> |
2943 | <target state="new"> The video is being moved to an external server, it may not work properly. | 2945 | <target state="translated">Videon håller på att flyttas till en extern server, vilket kan ge orsaka till problem.</target> |
2944 | </target> | ||
2945 | <context-group purpose="location"> | 2946 | <context-group purpose="location"> |
2946 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 2947 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
2947 | <context context-type="linenumber">10,11</context> | 2948 | <context context-type="linenumber">10,11</context> |
@@ -3323,9 +3324,8 @@ The link will expire within 1 hour.</source> | |||
3323 | <trans-unit id="9160510009013134726" datatype="html"> | 3324 | <trans-unit id="9160510009013134726" datatype="html"> |
3324 | <source>Unfollow</source> | 3325 | <source>Unfollow</source> |
3325 | <target state="translated">Sluta följa</target> | 3326 | <target state="translated">Sluta följa</target> |
3326 | 3327 | <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> | |
3327 | 3328 | </trans-unit> | |
3328 | <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> | ||
3329 | <trans-unit id="8246779176913476983" datatype="html"> | 3329 | <trans-unit id="8246779176913476983" datatype="html"> |
3330 | <source>Open instance in a new tab</source> | 3330 | <source>Open instance in a new tab</source> |
3331 | <target state="translated">Öppna instansen i en ny flik</target> | 3331 | <target state="translated">Öppna instansen i en ny flik</target> |
@@ -3707,7 +3707,7 @@ The link will expire within 1 hour.</source> | |||
3707 | </trans-unit> | 3707 | </trans-unit> |
3708 | <trans-unit id="8390803680962035202" datatype="html"> | 3708 | <trans-unit id="8390803680962035202" datatype="html"> |
3709 | <source>Follower</source> | 3709 | <source>Follower</source> |
3710 | <target state="new">Follower</target> | 3710 | <target state="translated">Följare</target> |
3711 | <context-group purpose="location"> | 3711 | <context-group purpose="location"> |
3712 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> | 3712 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> |
3713 | <context context-type="linenumber">24</context> | 3713 | <context context-type="linenumber">24</context> |
@@ -4110,7 +4110,7 @@ The link will expire within 1 hour.</source> | |||
4110 | </trans-unit> | 4110 | </trans-unit> |
4111 | <trans-unit id="8731139416455609016" datatype="html"> | 4111 | <trans-unit id="8731139416455609016" datatype="html"> |
4112 | <source>Videos with the most views during the last <x id="PH" equiv-text="this.trendingDays"/> days</source> | 4112 | <source>Videos with the most views during the last <x id="PH" equiv-text="this.trendingDays"/> days</source> |
4113 | <target state="new">Videos with the most views during the last <x id="PH" equiv-text="this.trendingDays"/> days</target> | 4113 | <target state="translated">Videor med flest visningar under de senaste <x id="PH" equiv-text="this.trendingDays"/> dagarna</target> |
4114 | <context-group purpose="location"> | 4114 | <context-group purpose="location"> |
4115 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> | 4115 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> |
4116 | <context context-type="linenumber">209</context> | 4116 | <context context-type="linenumber">209</context> |
@@ -4858,8 +4858,8 @@ The link will expire within 1 hour.</source> | |||
4858 | <trans-unit id="2149300564474427551"> | 4858 | <trans-unit id="2149300564474427551"> |
4859 | <source>Administrator</source> | 4859 | <source>Administrator</source> |
4860 | <target>Administratör</target> | 4860 | <target>Administratör</target> |
4861 | 4861 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group> | |
4862 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group></trans-unit> | 4862 | </trans-unit> |
4863 | <trans-unit id="3171683206914962995"> | 4863 | <trans-unit id="3171683206914962995"> |
4864 | <source>Admin email</source> | 4864 | <source>Admin email</source> |
4865 | <target>Administratörens e-postadress</target> | 4865 | <target>Administratörens e-postadress</target> |
@@ -5345,7 +5345,7 @@ color: red; | |||
5345 | </trans-unit> | 5345 | </trans-unit> |
5346 | <trans-unit id="6317170736181476800" datatype="html"> | 5346 | <trans-unit id="6317170736181476800" datatype="html"> |
5347 | <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> | 5347 | <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> |
5348 | <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> | 5348 | <target state="translated">Uppdatera <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)">"/>dina inställningar<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</a >"/></target> |
5349 | <context-group purpose="location"> | 5349 | <context-group purpose="location"> |
5350 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5350 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5351 | <context context-type="linenumber">3,7</context> | 5351 | <context context-type="linenumber">3,7</context> |
@@ -5353,7 +5353,7 @@ color: red; | |||
5353 | </trans-unit> | 5353 | </trans-unit> |
5354 | <trans-unit id="1405600824334286337" datatype="html"> | 5354 | <trans-unit id="1405600824334286337" datatype="html"> |
5355 | <source>More filters</source> | 5355 | <source>More filters</source> |
5356 | <target state="new">More filters</target> | 5356 | <target state="translated">Fler filter</target> |
5357 | <context-group purpose="location"> | 5357 | <context-group purpose="location"> |
5358 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5358 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5359 | <context context-type="linenumber">20</context> | 5359 | <context context-type="linenumber">20</context> |
@@ -5361,7 +5361,7 @@ color: red; | |||
5361 | </trans-unit> | 5361 | </trans-unit> |
5362 | <trans-unit id="8867436033163146458" datatype="html"> | 5362 | <trans-unit id="8867436033163146458" datatype="html"> |
5363 | <source>Less filters</source> | 5363 | <source>Less filters</source> |
5364 | <target state="new">Less filters</target> | 5364 | <target state="translated">Färre filter</target> |
5365 | <context-group purpose="location"> | 5365 | <context-group purpose="location"> |
5366 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5366 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5367 | <context context-type="linenumber">21</context> | 5367 | <context context-type="linenumber">21</context> |
@@ -5369,7 +5369,7 @@ color: red; | |||
5369 | </trans-unit> | 5369 | </trans-unit> |
5370 | <trans-unit id="7028708681117573961" datatype="html"> | 5370 | <trans-unit id="7028708681117573961" datatype="html"> |
5371 | <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> | 5371 | <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> |
5372 | <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> | 5372 | <target state="translated">Sortera efter <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>”Senast tillagt”<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
5373 | <context-group purpose="location"> | 5373 | <context-group purpose="location"> |
5374 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5374 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5375 | <context context-type="linenumber">46</context> | 5375 | <context context-type="linenumber">46</context> |
@@ -5377,7 +5377,7 @@ color: red; | |||
5377 | </trans-unit> | 5377 | </trans-unit> |
5378 | <trans-unit id="5691258609562173281" datatype="html"> | 5378 | <trans-unit id="5691258609562173281" datatype="html"> |
5379 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> | 5379 | <source>Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source> |
5380 | <target state="new">Sort by <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>"Views"<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> | 5380 | <target state="translated">Sortera efter <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>”Visningar”<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
5381 | <context-group purpose="location"> | 5381 | <context-group purpose="location"> |
5382 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5382 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5383 | <context context-type="linenumber">48</context> | 5383 | <context context-type="linenumber">48</context> |
@@ -5385,7 +5385,7 @@ color: red; | |||
5385 | </trans-unit> | 5385 | </trans-unit> |
5386 | <trans-unit id="3224510615614621760" datatype="html"> | 5386 | <trans-unit id="3224510615614621760" datatype="html"> |
5387 | <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> | 5387 | <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> |
5388 | <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> | 5388 | <target state="translated">Sortera efter <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>”Populärt”<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
5389 | <context-group purpose="location"> | 5389 | <context-group purpose="location"> |
5390 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5390 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5391 | <context context-type="linenumber">49</context> | 5391 | <context context-type="linenumber">49</context> |
@@ -5393,7 +5393,7 @@ color: red; | |||
5393 | </trans-unit> | 5393 | </trans-unit> |
5394 | <trans-unit id="3082811226222076503" datatype="html"> | 5394 | <trans-unit id="3082811226222076503" datatype="html"> |
5395 | <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> | 5395 | <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> |
5396 | <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> | 5396 | <target state="translated">Sortera efter <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>”Bäst”<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
5397 | <context-group purpose="location"> | 5397 | <context-group purpose="location"> |
5398 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5398 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5399 | <context context-type="linenumber">50</context> | 5399 | <context context-type="linenumber">50</context> |
@@ -5401,7 +5401,7 @@ color: red; | |||
5401 | </trans-unit> | 5401 | </trans-unit> |
5402 | <trans-unit id="4322133526902910662" datatype="html"> | 5402 | <trans-unit id="4322133526902910662" datatype="html"> |
5403 | <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> | 5403 | <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> |
5404 | <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> | 5404 | <target state="translated">Sortera efter <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>”Gillningar”<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target> |
5405 | <context-group purpose="location"> | 5405 | <context-group purpose="location"> |
5406 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5406 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5407 | <context context-type="linenumber">51</context> | 5407 | <context context-type="linenumber">51</context> |
@@ -5409,7 +5409,7 @@ color: red; | |||
5409 | </trans-unit> | 5409 | </trans-unit> |
5410 | <trans-unit id="2343321245279384373" datatype="html"> | 5410 | <trans-unit id="2343321245279384373" datatype="html"> |
5411 | <source>Languages:</source> | 5411 | <source>Languages:</source> |
5412 | <target state="new">Languages:</target> | 5412 | <target state="translated">Språk:</target> |
5413 | <context-group purpose="location"> | 5413 | <context-group purpose="location"> |
5414 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5414 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5415 | <context context-type="linenumber">59</context> | 5415 | <context context-type="linenumber">59</context> |
@@ -5417,35 +5417,31 @@ color: red; | |||
5417 | </trans-unit> | 5417 | </trans-unit> |
5418 | <trans-unit id="5063779773341398537" datatype="html"> | 5418 | <trans-unit id="5063779773341398537" datatype="html"> |
5419 | <source>Sensitive content:</source> | 5419 | <source>Sensitive content:</source> |
5420 | <target state="new">Sensitive content:</target> | 5420 | <target state="translated">Känsligt innehåll:</target> |
5421 | <context-group purpose="location"> | 5421 | <context-group purpose="location"> |
5422 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5422 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5423 | <context context-type="linenumber">66</context> | 5423 | <context context-type="linenumber">66</context> |
5424 | </context-group> | 5424 | </context-group> |
5425 | </trans-unit> | 5425 | </trans-unit> |
5426 | |||
5427 | |||
5428 | <trans-unit id="5723033003381016192" datatype="html"> | 5426 | <trans-unit id="5723033003381016192" datatype="html"> |
5429 | <source>Scope:</source> | 5427 | <source>Scope:</source> |
5430 | <target state="new">Scope:</target> | 5428 | <target state="translated">Omfång:</target> |
5431 | <context-group purpose="location"> | 5429 | <context-group purpose="location"> |
5432 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5430 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5433 | <context context-type="linenumber">81</context> | 5431 | <context context-type="linenumber">81</context> |
5434 | </context-group> | 5432 | </context-group> |
5435 | </trans-unit> | 5433 | </trans-unit> |
5436 | |||
5437 | <trans-unit id="8481241275509347668" datatype="html"> | 5434 | <trans-unit id="8481241275509347668" datatype="html"> |
5438 | <source>Local videos (this instance)</source> | 5435 | <source>Local videos (this instance)</source> |
5439 | <target state="new">Local videos (this instance)</target> | 5436 | <target state="translated">Lokala videor (den här instansen)</target> |
5440 | <context-group purpose="location"> | 5437 | <context-group purpose="location"> |
5441 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> | 5438 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters-header.component.html</context> |
5442 | <context context-type="linenumber">85</context> | 5439 | <context context-type="linenumber">85</context> |
5443 | </context-group> | 5440 | </context-group> |
5444 | </trans-unit> | 5441 | </trans-unit> |
5445 | |||
5446 | <trans-unit id="8383401711408398806" datatype="html"> | 5442 | <trans-unit id="8383401711408398806" datatype="html"> |
5447 | <source>Federated videos (this instance + followed instances)</source> | 5443 | <source>Federated videos (this instance + followed instances)</source> |
5448 | <target state="new">Federated videos (this instance + followed instances)</target> | 5444 | <target state="translated">Federerade videor (den här och följda instanser)</target> |
5449 | <context-group purpose="location"> | 5445 | <context-group purpose="location"> |
5450 | <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> |
5451 | <context context-type="linenumber">90</context> | 5447 | <context context-type="linenumber">90</context> |
@@ -5453,7 +5449,7 @@ color: red; | |||
5453 | </trans-unit> | 5449 | </trans-unit> |
5454 | <trans-unit id="2736556170366900089" datatype="html"> | 5450 | <trans-unit id="2736556170366900089" datatype="html"> |
5455 | <source>Type:</source> | 5451 | <source>Type:</source> |
5456 | <target state="new">Type:</target> | 5452 | <target state="translated">Typ:</target> |
5457 | <context-group purpose="location"> | 5453 | <context-group purpose="location"> |
5458 | <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> |
5459 | <context context-type="linenumber">95</context> | 5455 | <context context-type="linenumber">95</context> |
@@ -5461,16 +5457,15 @@ color: red; | |||
5461 | </trans-unit> | 5457 | </trans-unit> |
5462 | <trans-unit id="1744425032255703211" datatype="html"> | 5458 | <trans-unit id="1744425032255703211" datatype="html"> |
5463 | <source>VOD & Live videos</source> | 5459 | <source>VOD & Live videos</source> |
5464 | <target state="new">VOD & Live videos</target> | 5460 | <target state="translated">Video on demand & direktsändningar</target> |
5465 | <context-group purpose="location"> | 5461 | <context-group purpose="location"> |
5466 | <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> |
5467 | <context context-type="linenumber">99</context> | 5463 | <context context-type="linenumber">99</context> |
5468 | </context-group> | 5464 | </context-group> |
5469 | </trans-unit> | 5465 | </trans-unit> |
5470 | |||
5471 | <trans-unit id="1370537846415473089" datatype="html"> | 5466 | <trans-unit id="1370537846415473089" datatype="html"> |
5472 | <source>Categories:</source> | 5467 | <source>Categories:</source> |
5473 | <target state="new">Categories:</target> | 5468 | <target state="translated">Kategorier:</target> |
5474 | <context-group purpose="location"> | 5469 | <context-group purpose="location"> |
5475 | <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> |
5476 | <context context-type="linenumber">114</context> | 5471 | <context context-type="linenumber">114</context> |
@@ -5478,7 +5473,7 @@ color: red; | |||
5478 | </trans-unit> | 5473 | </trans-unit> |
5479 | <trans-unit id="4250125031269088402" datatype="html"> | 5474 | <trans-unit id="4250125031269088402" datatype="html"> |
5480 | <source>Moderation:</source> | 5475 | <source>Moderation:</source> |
5481 | <target state="new">Moderation:</target> | 5476 | <target state="translated">Moderering:</target> |
5482 | <context-group purpose="location"> | 5477 | <context-group purpose="location"> |
5483 | <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> |
5484 | <context context-type="linenumber">120</context> | 5479 | <context context-type="linenumber">120</context> |
@@ -5711,7 +5706,7 @@ color: red; | |||
5711 | </trans-unit> | 5706 | </trans-unit> |
5712 | <trans-unit id="3582855804901374179" datatype="html"> | 5707 | <trans-unit id="3582855804901374179" datatype="html"> |
5713 | <source>Banner image of your channel</source> | 5708 | <source>Banner image of your channel</source> |
5714 | <target state="translated">Din kanals banerbild</target> | 5709 | <target state="translated">Din kanals omslagsbild</target> |
5715 | <context-group purpose="location"> | 5710 | <context-group purpose="location"> |
5716 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context> | 5711 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-edit.component.html</context> |
5717 | <context context-type="linenumber">30</context> | 5712 | <context context-type="linenumber">30</context> |
@@ -5819,7 +5814,7 @@ color: red; | |||
5819 | </trans-unit> | 5814 | </trans-unit> |
5820 | <trans-unit id="5511928240200239994" datatype="html"> | 5815 | <trans-unit id="5511928240200239994" datatype="html"> |
5821 | <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> | 5816 | <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> |
5822 | <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> | 5817 | <target state="translated">Några av dina kanaler är inte fullt inställda. Gör dem välkomnande och mer tydliga genom att lägga till en <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>omslagsbild<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, an <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>profilbild<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> och en <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>beskrivning<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>.</target> |
5823 | <context-group purpose="location"> | 5818 | <context-group purpose="location"> |
5824 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> | 5819 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> |
5825 | <context context-type="linenumber">5</context> | 5820 | <context context-type="linenumber">5</context> |
@@ -5827,7 +5822,7 @@ color: red; | |||
5827 | </trans-unit> | 5822 | </trans-unit> |
5828 | <trans-unit id="5339945526545410198" datatype="html"> | 5823 | <trans-unit id="5339945526545410198" datatype="html"> |
5829 | <source>Set up my channels</source> | 5824 | <source>Set up my channels</source> |
5830 | <target state="new">Set up my channels</target> | 5825 | <target state="translated">Ställ in mina kanaler</target> |
5831 | <context-group purpose="location"> | 5826 | <context-group purpose="location"> |
5832 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> | 5827 | <context context-type="sourcefile">src/app/shared/shared-main/misc/channels-setup-message.component.html</context> |
5833 | <context context-type="linenumber">6</context> | 5828 | <context context-type="linenumber">6</context> |
@@ -5931,8 +5926,10 @@ color: red; | |||
5931 | <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> | 5926 | <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> |
5932 | <target>Om du behöver hjälp att använda PeerTube, kan du ta en titt på <x id="START_LINK"/>dokumentationen<x id="CLOSE_LINK"/>. </target> | 5927 | <target>Om du behöver hjälp att använda PeerTube, kan du ta en titt på <x id="START_LINK"/>dokumentationen<x id="CLOSE_LINK"/>. </target> |
5933 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">14</context></context-group> | 5928 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context><context context-type="linenumber">14</context></context-group> |
5934 | </trans-unit><trans-unit id="8844610145426272276" datatype="html"> | 5929 | </trans-unit> |
5935 | <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> | 5930 | <trans-unit id="8844610145426272276" datatype="html"> |
5931 | <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> | ||
5932 | <target state="translated">För att hjälpa moderatorer och andra användare veta <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>vem du är<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>, kan du <x id="START_LINK" ctype="x-a" equiv-text="<a routerLink="/my-account/settings">"/>konfigurera ditt kontos profil<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> genom att lägga till en <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>profilbild<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> och en <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>beskrivning<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/>. </target> | ||
5936 | <context-group purpose="location"> | 5933 | <context-group purpose="location"> |
5937 | <context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context> | 5934 | <context context-type="sourcefile">src/app/+signup/shared/signup-success.component.html</context> |
5938 | <context context-type="linenumber">18,19</context> | 5935 | <context context-type="linenumber">18,19</context> |
@@ -6144,7 +6141,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6144 | </trans-unit> | 6141 | </trans-unit> |
6145 | <trans-unit id="4433306639366959484" datatype="html"> | 6142 | <trans-unit id="4433306639366959484" datatype="html"> |
6146 | <source>Please type the name of the video channel (<x id="PH" equiv-text="videoChannel.name"/>) to confirm</source> | 6143 | <source>Please type the name of the video channel (<x id="PH" equiv-text="videoChannel.name"/>) to confirm</source> |
6147 | <target state="new">Please type the name of the video channel (<x id="PH" equiv-text="videoChannel.name"/>) to confirm</target> | 6144 | <target state="translated">Skriv namnet på din videokanal (<x id="PH" equiv-text="videoChannel.name"/>) för att bekräfta</target> |
6148 | <context-group purpose="location"> | 6145 | <context-group purpose="location"> |
6149 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context> | 6146 | <context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.ts</context> |
6150 | <context context-type="linenumber">48</context> | 6147 | <context context-type="linenumber">48</context> |
@@ -6248,7 +6245,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6248 | </trans-unit> | 6245 | </trans-unit> |
6249 | <trans-unit id="8525213662266893834" datatype="html"> | 6246 | <trans-unit id="8525213662266893834" datatype="html"> |
6250 | <source>Contact us</source> | 6247 | <source>Contact us</source> |
6251 | <target state="new">Contact us</target> | 6248 | <target state="translated">Kontakta oss</target> |
6252 | <context-group purpose="location"> | 6249 | <context-group purpose="location"> |
6253 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> | 6250 | <context context-type="sourcefile">src/app/+about/about-instance/about-instance.component.html</context> |
6254 | <context context-type="linenumber">7</context> | 6251 | <context context-type="linenumber">7</context> |
@@ -6538,7 +6535,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6538 | </trans-unit> | 6535 | </trans-unit> |
6539 | <trans-unit id="4807161697338135032" datatype="html"> | 6536 | <trans-unit id="4807161697338135032" datatype="html"> |
6540 | <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> | 6537 | <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> |
6541 | <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> | 6538 | <target state="translated">Kontakta administratörerna <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> |
6542 | <context-group purpose="location"> | 6539 | <context-group purpose="location"> |
6543 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> | 6540 | <context context-type="sourcefile">src/app/+about/about-instance/contact-admin-modal.component.html</context> |
6544 | <context context-type="linenumber">3</context> | 6541 | <context context-type="linenumber">3</context> |
@@ -6710,59 +6707,59 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6710 | </trans-unit> | 6707 | </trans-unit> |
6711 | <trans-unit id="784681343382270982" datatype="html"> | 6708 | <trans-unit id="784681343382270982" datatype="html"> |
6712 | <source>Remove this filter</source> | 6709 | <source>Remove this filter</source> |
6713 | <target state="new">Remove this filter</target> | 6710 | <target state="translated">Ta bort detta filter</target> |
6714 | 6711 | <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> | |
6715 | <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> | 6712 | </trans-unit> |
6716 | <trans-unit id="5254305728396198887" datatype="html"> | 6713 | <trans-unit id="5254305728396198887" datatype="html"> |
6717 | <source>Sensitive content</source> | 6714 | <source>Sensitive content</source> |
6718 | <target state="new">Sensitive content</target> | 6715 | <target state="translated">Känsligt innehåll</target> |
6719 | 6716 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">115</context></context-group> | |
6720 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">115</context></context-group></trans-unit> | 6717 | </trans-unit> |
6721 | <trans-unit id="5590086849807274701" datatype="html"> | 6718 | <trans-unit id="5590086849807274701" datatype="html"> |
6722 | <source>Scope</source> | 6719 | <source>Scope</source> |
6723 | <target state="new">Scope</target> | 6720 | <target state="translated">Omfång</target> |
6724 | 6721 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">122</context></context-group> | |
6725 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">122</context></context-group></trans-unit> | 6722 | </trans-unit> |
6726 | <trans-unit id="5019568087038659501" datatype="html"> | 6723 | <trans-unit id="5019568087038659501" datatype="html"> |
6727 | <source>Federated</source> | 6724 | <source>Federated</source> |
6728 | <target state="new">Federated</target> | 6725 | <target state="translated">Federerad</target> |
6729 | 6726 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">124</context></context-group> | |
6730 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 6727 | </trans-unit> |
6731 | <trans-unit id="1949800099101277248" datatype="html"> | 6728 | <trans-unit id="1949800099101277248" datatype="html"> |
6732 | <source>Languages</source> | 6729 | <source>Languages</source> |
6733 | <target state="new">Languages</target> | 6730 | <target state="translated">Språk</target> |
6734 | 6731 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">132</context></context-group> | |
6735 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">132</context></context-group></trans-unit> | 6732 | </trans-unit> |
6736 | <trans-unit id="1902100407096396858" datatype="html"> | 6733 | <trans-unit id="1902100407096396858" datatype="html"> |
6737 | <source>Categories</source> | 6734 | <source>Categories</source> |
6738 | <target state="new">Categories</target> | 6735 | <target state="translated">Kategorier</target> |
6739 | 6736 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">141</context></context-group> | |
6740 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">141</context></context-group></trans-unit> | 6737 | </trans-unit> |
6741 | <trans-unit id="3599150758014724057" datatype="html"> | 6738 | <trans-unit id="3599150758014724057" datatype="html"> |
6742 | <source>All videos</source> | 6739 | <source>All videos</source> |
6743 | <target state="new">All videos</target> | 6740 | <target state="translated">Alla videor</target> |
6744 | 6741 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">150</context></context-group> | |
6745 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">150</context></context-group></trans-unit> | 6742 | </trans-unit> |
6746 | <trans-unit id="8466337030143068285" datatype="html"> | 6743 | <trans-unit id="8466337030143068285" datatype="html"> |
6747 | <source>Blurred</source> | 6744 | <source>Blurred</source> |
6748 | <target state="new">Blurred</target> | 6745 | <target state="translated">Suddig</target> |
6749 | 6746 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">225</context></context-group> | |
6750 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">225</context></context-group></trans-unit> | 6747 | </trans-unit> |
6751 | <trans-unit id="7054829409324166420" datatype="html"> | 6748 | <trans-unit id="7054829409324166420" datatype="html"> |
6752 | <source>hidden</source> | 6749 | <source>hidden</source> |
6753 | <target state="new">hidden</target> | 6750 | <target state="translated">dold</target> |
6754 | 6751 | <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> | |
6755 | <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> | 6752 | </trans-unit> |
6756 | <trans-unit id="5766954855630346873" datatype="html"> | 6753 | <trans-unit id="5766954855630346873" datatype="html"> |
6757 | <source>blurred</source> | 6754 | <source>blurred</source> |
6758 | <target state="new">blurred</target> | 6755 | <target state="translated">suddig</target> |
6759 | 6756 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">232</context></context-group> | |
6760 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">232</context></context-group></trans-unit> | 6757 | </trans-unit> |
6761 | <trans-unit id="1833483831276078393" datatype="html"> | 6758 | <trans-unit id="1833483831276078393" datatype="html"> |
6762 | <source>displayed</source> | 6759 | <source>displayed</source> |
6763 | <target state="new">displayed</target> | 6760 | <target state="translated">synlig</target> |
6764 | 6761 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">234</context></context-group> | |
6765 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">234</context></context-group></trans-unit> | 6762 | </trans-unit> |
6766 | <trans-unit id="4856575356061361269" datatype="html"> | 6763 | <trans-unit id="4856575356061361269" datatype="html"> |
6767 | <source><x id="PH"/> direct account followers </source> | 6764 | <source><x id="PH"/> direct account followers </source> |
6768 | <target state="translated">Kontot har | 6765 | <target state="translated">Kontot har |
@@ -6849,7 +6846,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6849 | </trans-unit> | 6846 | </trans-unit> |
6850 | <trans-unit id="3642770981085338761" datatype="html"> | 6847 | <trans-unit id="3642770981085338761" datatype="html"> |
6851 | <source>Followers of your instance</source> | 6848 | <source>Followers of your instance</source> |
6852 | <target state="new">Followers of your instance</target> | 6849 | <target state="translated">Din instans följare</target> |
6853 | <context-group purpose="location"> | 6850 | <context-group purpose="location"> |
6854 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> | 6851 | <context context-type="sourcefile">src/app/+admin/follows/followers-list/followers-list.component.html</context> |
6855 | <context context-type="linenumber">3</context> | 6852 | <context context-type="linenumber">3</context> |
@@ -7007,7 +7004,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7007 | </trans-unit> | 7004 | </trans-unit> |
7008 | <trans-unit id="7951488350851416577" datatype="html"> | 7005 | <trans-unit id="7951488350851416577" datatype="html"> |
7009 | <source>Hosts entered are invalid.</source> | 7006 | <source>Hosts entered are invalid.</source> |
7010 | <target state="new">Hosts entered are invalid.</target> | 7007 | <target state="translated">Angivna värdar är ogiltiga.</target> |
7011 | <context-group purpose="location"> | 7008 | <context-group purpose="location"> |
7012 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 7009 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
7013 | <context context-type="linenumber">93</context> | 7010 | <context context-type="linenumber">93</context> |
@@ -7015,7 +7012,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7015 | </trans-unit> | 7012 | </trans-unit> |
7016 | <trans-unit id="1469559036084108672" datatype="html"> | 7013 | <trans-unit id="1469559036084108672" datatype="html"> |
7017 | <source>Hosts entered contain duplicates.</source> | 7014 | <source>Hosts entered contain duplicates.</source> |
7018 | <target state="new">Hosts entered contain duplicates.</target> | 7015 | <target state="translated">Angivna värdar innehåller dubbletter.</target> |
7019 | <context-group purpose="location"> | 7016 | <context-group purpose="location"> |
7020 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> | 7017 | <context context-type="sourcefile">src/app/shared/form-validators/host-validators.ts</context> |
7021 | <context context-type="linenumber">94</context> | 7018 | <context context-type="linenumber">94</context> |
@@ -7199,7 +7196,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7199 | </trans-unit> | 7196 | </trans-unit> |
7200 | <trans-unit id="6018246591673612412" datatype="html"> | 7197 | <trans-unit id="6018246591673612412" datatype="html"> |
7201 | <source>Follow</source> | 7198 | <source>Follow</source> |
7202 | <target state="new">Follow</target> | 7199 | <target state="translated">Följ</target> |
7203 | <context-group purpose="location"> | 7200 | <context-group purpose="location"> |
7204 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> | 7201 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> |
7205 | <context context-type="linenumber">3</context> | 7202 | <context context-type="linenumber">3</context> |
@@ -7215,7 +7212,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7215 | </trans-unit> | 7212 | </trans-unit> |
7216 | <trans-unit id="3596798855644241001" datatype="html"> | 7213 | <trans-unit id="3596798855644241001" datatype="html"> |
7217 | <source>1 host (without "http://"), account handle or channel handle per line</source> | 7214 | <source>1 host (without "http://"), account handle or channel handle per line</source> |
7218 | <target state="new">1 host (without "http://"), account handle or channel handle per line</target> | 7215 | <target state="translated">En värd (utan ”http://”), kontohantag eller kanalhandtag per rad</target> |
7219 | <context-group purpose="location"> | 7216 | <context-group purpose="location"> |
7220 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> | 7217 | <context context-type="sourcefile">src/app/+admin/follows/following-list/follow-modal.component.html</context> |
7221 | <context context-type="linenumber">11</context> | 7218 | <context context-type="linenumber">11</context> |
@@ -7236,7 +7233,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7236 | </trans-unit> | 7233 | </trans-unit> |
7237 | <trans-unit id="3459358413436264734" datatype="html"> | 7234 | <trans-unit id="3459358413436264734" datatype="html"> |
7238 | <source>Your instance subscriptions</source> | 7235 | <source>Your instance subscriptions</source> |
7239 | <target state="new">Your instance subscriptions</target> | 7236 | <target state="translated">Dina instansprenumerationer</target> |
7240 | <context-group purpose="location"> | 7237 | <context-group purpose="location"> |
7241 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> | 7238 | <context context-type="sourcefile">src/app/+admin/follows/following-list/following-list.component.html</context> |
7242 | <context context-type="linenumber">3</context> | 7239 | <context context-type="linenumber">3</context> |
@@ -7839,7 +7836,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7839 | </trans-unit> | 7836 | </trans-unit> |
7840 | <trans-unit id="4207916966377787111" datatype="html"> | 7837 | <trans-unit id="4207916966377787111" datatype="html"> |
7841 | <source>Created</source> | 7838 | <source>Created</source> |
7842 | <target state="new">Created</target> | 7839 | <target state="translated">Skapad</target> |
7843 | <context-group purpose="location"> | 7840 | <context-group purpose="location"> |
7844 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> | 7841 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> |
7845 | <context context-type="linenumber">115</context> | 7842 | <context context-type="linenumber">115</context> |
@@ -7847,7 +7844,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7847 | </trans-unit> | 7844 | </trans-unit> |
7848 | <trans-unit id="8140268298586972139" datatype="html"> | 7845 | <trans-unit id="8140268298586972139" datatype="html"> |
7849 | <source>Daily quota</source> | 7846 | <source>Daily quota</source> |
7850 | <target state="new">Daily quota</target> | 7847 | <target state="translated">Dagskvot</target> |
7851 | <context-group purpose="location"> | 7848 | <context-group purpose="location"> |
7852 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> | 7849 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> |
7853 | <context context-type="linenumber">120</context> | 7850 | <context context-type="linenumber">120</context> |
@@ -7855,7 +7852,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
7855 | </trans-unit> | 7852 | </trans-unit> |
7856 | <trans-unit id="7910076708497708162" datatype="html"> | 7853 | <trans-unit id="7910076708497708162" datatype="html"> |
7857 | <source>Last login</source> | 7854 | <source>Last login</source> |
7858 | <target state="new">Last login</target> | 7855 | <target state="translated">Senaste inloggning</target> |
7859 | <context-group purpose="location"> | 7856 | <context-group purpose="location"> |
7860 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> | 7857 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> |
7861 | <context context-type="linenumber">122</context> | 7858 | <context context-type="linenumber">122</context> |
@@ -8178,17 +8175,17 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8178 | </trans-unit> | 8175 | </trans-unit> |
8179 | <trans-unit id="8407755843502300957" datatype="html"> | 8176 | <trans-unit id="8407755843502300957" datatype="html"> |
8180 | <source>Banner changed.</source> | 8177 | <source>Banner changed.</source> |
8181 | <target state="translated">Baneret har ändrats.</target> | 8178 | <target state="translated">Omslagsbilden har ändrats.</target> |
8182 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">141</context></context-group> | 8179 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">141</context></context-group> |
8183 | </trans-unit> | 8180 | </trans-unit> |
8184 | <trans-unit id="689638706960732906" datatype="html"> | 8181 | <trans-unit id="689638706960732906" datatype="html"> |
8185 | <source>banner</source> | 8182 | <source>banner</source> |
8186 | <target state="translated">baner</target> | 8183 | <target state="translated">omslagsbild</target> |
8187 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">148</context></context-group> | 8184 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">148</context></context-group> |
8188 | </trans-unit> | 8185 | </trans-unit> |
8189 | <trans-unit id="3230561499965076671" datatype="html"> | 8186 | <trans-unit id="3230561499965076671" datatype="html"> |
8190 | <source>Banner deleted.</source> | 8187 | <source>Banner deleted.</source> |
8191 | <target state="translated">Baneret har raderats.</target> | 8188 | <target state="translated">Omslagsbilden har raderats.</target> |
8192 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">158</context></context-group> | 8189 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">158</context></context-group> |
8193 | </trans-unit> | 8190 | </trans-unit> |
8194 | <trans-unit id="624066830180032195"> | 8191 | <trans-unit id="624066830180032195"> |
@@ -8345,7 +8342,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8345 | </trans-unit> | 8342 | </trans-unit> |
8346 | <trans-unit id="7699622144571229146" datatype="html"> | 8343 | <trans-unit id="7699622144571229146" datatype="html"> |
8347 | <source>Sort by</source> | 8344 | <source>Sort by</source> |
8348 | <target state="new">Sort by</target> | 8345 | <target state="translated">Sortera efter</target> |
8349 | <context-group purpose="location"> | 8346 | <context-group purpose="location"> |
8350 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context> | 8347 | <context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context> |
8351 | <context context-type="linenumber">26</context> | 8348 | <context context-type="linenumber">26</context> |
@@ -8404,9 +8401,9 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8404 | <trans-unit id="7916647920967632052" datatype="html"> | 8401 | <trans-unit id="7916647920967632052" datatype="html"> |
8405 | <source>max size</source> | 8402 | <source>max size</source> |
8406 | <target state="translated">största tillåtna storlek</target> | 8403 | <target state="translated">största tillåtna storlek</target> |
8407 | 8404 | <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> | |
8408 | 8405 | <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> | |
8409 | <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> | 8406 | </trans-unit> |
8410 | <trans-unit id="6489275254908395777" datatype="html"> | 8407 | <trans-unit id="6489275254908395777" datatype="html"> |
8411 | <source>Maximize editor</source> | 8408 | <source>Maximize editor</source> |
8412 | <target state="translated">Maximera redigerare</target> | 8409 | <target state="translated">Maximera redigerare</target> |
@@ -8455,38 +8452,38 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8455 | <trans-unit id="7709367721354853232"> | 8452 | <trans-unit id="7709367721354853232"> |
8456 | <source>Focus the search bar</source> | 8453 | <source>Focus the search bar</source> |
8457 | <target>Markera sökrutan</target> | 8454 | <target>Markera sökrutan</target> |
8458 | 8455 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">270</context></context-group> | |
8459 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">270</context></context-group></trans-unit> | 8456 | </trans-unit> |
8460 | <trans-unit id="4049262826107502276"> | 8457 | <trans-unit id="4049262826107502276"> |
8461 | <source>Toggle the left menu</source> | 8458 | <source>Toggle the left menu</source> |
8462 | <target>Växla vänstermenyn</target> | 8459 | <target>Växla vänstermenyn</target> |
8463 | 8460 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">275</context></context-group> | |
8464 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">275</context></context-group></trans-unit> | 8461 | </trans-unit> |
8465 | <trans-unit id="5409372033656550095"> | 8462 | <trans-unit id="5409372033656550095"> |
8466 | <source>Go to the discover videos page</source> | 8463 | <source>Go to the discover videos page</source> |
8467 | <target>Gå till upptäck videor-sidan</target> | 8464 | <target>Gå till upptäck videor-sidan</target> |
8468 | 8465 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">280</context></context-group> | |
8469 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">280</context></context-group></trans-unit> | 8466 | </trans-unit> |
8470 | <trans-unit id="4278050445961255445"> | 8467 | <trans-unit id="4278050445961255445"> |
8471 | <source>Go to the trending videos page</source> | 8468 | <source>Go to the trending videos page</source> |
8472 | <target>Gå till sidan med populära videor</target> | 8469 | <target>Gå till sidan med populära videor</target> |
8473 | 8470 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">285</context></context-group> | |
8474 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">285</context></context-group></trans-unit> | 8471 | </trans-unit> |
8475 | <trans-unit id="3242234958443825475"> | 8472 | <trans-unit id="3242234958443825475"> |
8476 | <source>Go to the recently added videos page</source> | 8473 | <source>Go to the recently added videos page</source> |
8477 | <target>Gå till sidan med nyligen uppladdade videor</target> | 8474 | <target>Gå till sidan med nyligen uppladdade videor</target> |
8478 | 8475 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">290</context></context-group> | |
8479 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">290</context></context-group></trans-unit> | 8476 | </trans-unit> |
8480 | <trans-unit id="2887122197778293919"> | 8477 | <trans-unit id="2887122197778293919"> |
8481 | <source>Go to the local videos page</source> | 8478 | <source>Go to the local videos page</source> |
8482 | <target>Gå till sidan med lokala videor</target> | 8479 | <target>Gå till sidan med lokala videor</target> |
8483 | 8480 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">295</context></context-group> | |
8484 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">295</context></context-group></trans-unit> | 8481 | </trans-unit> |
8485 | <trans-unit id="8009065619559214982"> | 8482 | <trans-unit id="8009065619559214982"> |
8486 | <source>Go to the videos upload page</source> | 8483 | <source>Go to the videos upload page</source> |
8487 | <target>Gå till sidan för videouppladdningar</target> | 8484 | <target>Gå till sidan för videouppladdningar</target> |
8488 | 8485 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">300</context></context-group> | |
8489 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.ts</context><context context-type="linenumber">300</context></context-group></trans-unit> | 8486 | </trans-unit> |
8490 | <trans-unit id="3779524668013120370"> | 8487 | <trans-unit id="3779524668013120370"> |
8491 | <source>Go to my subscriptions</source> | 8488 | <source>Go to my subscriptions</source> |
8492 | <target>Gå till mina prenumerationer</target> | 8489 | <target>Gå till mina prenumerationer</target> |
@@ -8533,7 +8530,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8533 | </trans-unit> | 8530 | </trans-unit> |
8534 | <trans-unit id="4024404994702813072" datatype="html"> | 8531 | <trans-unit id="4024404994702813072" datatype="html"> |
8535 | <source>In my library</source> | 8532 | <source>In my library</source> |
8536 | <target state="new">In my library</target> | 8533 | <target state="translated">I mitt bibliotek</target> |
8537 | <context-group purpose="location"> | 8534 | <context-group purpose="location"> |
8538 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> | 8535 | <context context-type="sourcefile">src/app/core/menu/menu.service.ts</context> |
8539 | <context context-type="linenumber">104</context> | 8536 | <context context-type="linenumber">104</context> |
@@ -8607,41 +8604,41 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8607 | <trans-unit id="6048892649018070225"> | 8604 | <trans-unit id="6048892649018070225"> |
8608 | <source>Today</source> | 8605 | <source>Today</source> |
8609 | <target>Idag</target> | 8606 | <target>Idag</target> |
8610 | 8607 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">41</context></context-group> | |
8611 | 8608 | <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> | |
8612 | 8609 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">123</context></context-group> | |
8613 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-filters.component.ts</context><context context-type="linenumber">41</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">123</context></context-group></trans-unit> | 8610 | </trans-unit> |
8614 | <trans-unit id="4498682414491138092" datatype="html"> | 8611 | <trans-unit id="4498682414491138092" datatype="html"> |
8615 | <source>Yesterday</source> | 8612 | <source>Yesterday</source> |
8616 | <target state="translated">Igår</target> | 8613 | <target state="translated">Igår</target> |
8617 | 8614 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">124</context></context-group> | |
8618 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 8615 | </trans-unit> |
8619 | <trans-unit id="5073473933031004097" datatype="html"> | 8616 | <trans-unit id="5073473933031004097" datatype="html"> |
8620 | <source>This week</source> | 8617 | <source>This week</source> |
8621 | <target state="translated">Den här veckan</target> | 8618 | <target state="translated">Den här veckan</target> |
8622 | 8619 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">125</context></context-group> | |
8623 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">125</context></context-group></trans-unit> | 8620 | </trans-unit> |
8624 | <trans-unit id="842657237693374355" datatype="html"> | 8621 | <trans-unit id="842657237693374355" datatype="html"> |
8625 | <source>This month</source> | 8622 | <source>This month</source> |
8626 | <target state="translated">Den här månaden</target> | 8623 | <target state="translated">Den här månaden</target> |
8627 | 8624 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">126</context></context-group> | |
8628 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">126</context></context-group></trans-unit> | 8625 | </trans-unit> |
8629 | <trans-unit id="4463380307954693363" datatype="html"> | 8626 | <trans-unit id="4463380307954693363" datatype="html"> |
8630 | <source>Last month</source> | 8627 | <source>Last month</source> |
8631 | <target state="translated">Senaste månaden</target> | 8628 | <target state="translated">Senaste månaden</target> |
8632 | 8629 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">127</context></context-group> | |
8633 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> | 8630 | </trans-unit> |
8634 | <trans-unit id="7473676707373218484" datatype="html"> | 8631 | <trans-unit id="7473676707373218484" datatype="html"> |
8635 | <source>Older</source> | 8632 | <source>Older</source> |
8636 | <target state="translated">Äldre</target> | 8633 | <target state="translated">Äldre</target> |
8637 | 8634 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">128</context></context-group> | |
8638 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">128</context></context-group></trans-unit> | 8635 | </trans-unit> |
8639 | <trans-unit id="5036991421517255667" datatype="html"> | 8636 | <trans-unit id="5036991421517255667" datatype="html"> |
8640 | <source>Cannot load more videos. Try again later.</source> | 8637 | <source>Cannot load more videos. Try again later.</source> |
8641 | <target state="translated">Kan inte ladda in fler videor, försök gärna igen om en stund.</target> | 8638 | <target state="translated">Kan inte ladda in fler videor, försök gärna igen om en stund.</target> |
8642 | 8639 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">225</context></context-group> | |
8643 | 8640 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.ts</context><context context-type="linenumber">127</context></context-group> | |
8644 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.ts</context><context context-type="linenumber">225</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">127</context></context-group></trans-unit> | 8641 | </trans-unit> |
8645 | <trans-unit id="4873149362496451858"> | 8642 | <trans-unit id="4873149362496451858"> |
8646 | <source>Last 7 days</source> | 8643 | <source>Last 7 days</source> |
8647 | <target>Senaste veckan</target> | 8644 | <target>Senaste veckan</target> |
@@ -9496,7 +9493,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9496 | </trans-unit> | 9493 | </trans-unit> |
9497 | <trans-unit id="3393133458004181121" datatype="html"> | 9494 | <trans-unit id="3393133458004181121" datatype="html"> |
9498 | <source>All categories</source> | 9495 | <source>All categories</source> |
9499 | <target state="new">All categories</target> | 9496 | <target state="translated">Alla kategorier</target> |
9500 | <context-group purpose="location"> | 9497 | <context-group purpose="location"> |
9501 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.ts</context> | 9498 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.ts</context> |
9502 | <context context-type="linenumber">24</context> | 9499 | <context context-type="linenumber">24</context> |
@@ -9504,7 +9501,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9504 | </trans-unit> | 9501 | </trans-unit> |
9505 | <trans-unit id="3999967345340145904" datatype="html"> | 9502 | <trans-unit id="3999967345340145904" datatype="html"> |
9506 | <source>You can't select more than <x id="PH" equiv-text="this.maxItems"/> items</source> | 9503 | <source>You can't select more than <x id="PH" equiv-text="this.maxItems"/> items</source> |
9507 | <target state="new">You can't select more than <x id="PH" equiv-text="this.maxItems"/> items</target> | 9504 | <target state="translated">Du kan inte välja fler än <x id="PH" equiv-text="this.maxItems"/> objekt</target> |
9508 | <context-group purpose="location"> | 9505 | <context-group purpose="location"> |
9509 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox-all.component.ts</context> | 9506 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox-all.component.ts</context> |
9510 | <context context-type="linenumber">81</context> | 9507 | <context context-type="linenumber">81</context> |
@@ -9809,9 +9806,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9809 | <trans-unit id="8929218224642530466"> | 9806 | <trans-unit id="8929218224642530466"> |
9810 | <source>Displayed</source> | 9807 | <source>Displayed</source> |
9811 | <target>Synlig</target> | 9808 | <target>Synlig</target> |
9812 | 9809 | <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> | |
9813 | 9810 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">227</context></context-group> | |
9814 | <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">227</context></context-group></trans-unit> | 9811 | </trans-unit> |
9815 | <trans-unit id="6291055174438137560" datatype="html"> | 9812 | <trans-unit id="6291055174438137560" datatype="html"> |
9816 | <source>~ 1 minute</source> | 9813 | <source>~ 1 minute</source> |
9817 | <target state="translated">omkring en minut</target> | 9814 | <target state="translated">omkring en minut</target> |
@@ -9848,18 +9845,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9848 | <target state="translated"> | 9845 | <target state="translated"> |
9849 | <x id="PH"/> (kanalsida) | 9846 | <x id="PH"/> (kanalsida) |
9850 | </target> | 9847 | </target> |
9851 | 9848 | <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">19</context></context-group> | |
9852 | 9849 | <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> | |
9853 | 9850 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">113</context></context-group> | |
9854 | <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">19</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">113</context></context-group></trans-unit> | 9851 | </trans-unit> |
9855 | <trans-unit id="1209500590333005801" datatype="html"> | 9852 | <trans-unit id="1209500590333005801" datatype="html"> |
9856 | <source><x id="PH"/> (account page) </source> | 9853 | <source><x id="PH"/> (account page) </source> |
9857 | <target state="translated"> | 9854 | <target state="translated"> |
9858 | <x id="PH"/> (kontosida) | 9855 | <x id="PH"/> (kontosida) |
9859 | </target> | 9856 | </target> |
9860 | 9857 | <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> | |
9861 | 9858 | <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> | |
9862 | <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">39</context></context-group></trans-unit> | 9859 | </trans-unit> |
9863 | <trans-unit id="2516633974298697807"> | 9860 | <trans-unit id="2516633974298697807"> |
9864 | <source>Emphasis</source> | 9861 | <source>Emphasis</source> |
9865 | <target>Betoning</target> | 9862 | <target>Betoning</target> |
@@ -10263,8 +10260,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10263 | <trans-unit id="4968151111061046122"> | 10260 | <trans-unit id="4968151111061046122"> |
10264 | <source>Moderator</source> | 10261 | <source>Moderator</source> |
10265 | <target>Moderator</target> | 10262 | <target>Moderator</target> |
10266 | 10263 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group> | |
10267 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group></trans-unit> | 10264 | </trans-unit> |
10268 | <trans-unit id="2279527393438260622" datatype="html"> | 10265 | <trans-unit id="2279527393438260622" datatype="html"> |
10269 | <source>Search videos, playlists, channels…</source> | 10266 | <source>Search videos, playlists, channels…</source> |
10270 | <target state="translated">Sök efter videor, spellistor och kanaler …</target> | 10267 | <target state="translated">Sök efter videor, spellistor och kanaler …</target> |
@@ -10577,7 +10574,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10577 | </trans-unit> | 10574 | </trans-unit> |
10578 | <trans-unit id="8492933894084361602" datatype="html"> | 10575 | <trans-unit id="8492933894084361602" datatype="html"> |
10579 | <source>Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</source> | 10576 | <source>Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</source> |
10580 | <target state="new">Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</target> | 10577 | <target state="translated">Prenumerera på RSS-flödet ”<x id="INTERPOLATION" equiv-text="{{ title }}"/>”</target> |
10581 | <context-group purpose="location"> | 10578 | <context-group purpose="location"> |
10582 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context> | 10579 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context> |
10583 | <context context-type="linenumber">8</context> | 10580 | <context context-type="linenumber">8</context> |
@@ -10810,35 +10807,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10810 | <trans-unit id="3284171506518522275"> | 10807 | <trans-unit id="3284171506518522275"> |
10811 | <source>Your video was uploaded to your account and is private.</source> | 10808 | <source>Your video was uploaded to your account and is private.</source> |
10812 | <target>Din video har laddats upp till ditt konto och är privat.</target> | 10809 | <target>Din video har laddats upp till ditt konto och är privat.</target> |
10813 | <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">118</context></context-group> | 10810 | |
10814 | </trans-unit> | 10811 | <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">125</context></context-group></trans-unit> |
10815 | <trans-unit id="5699822024600815733"> | 10812 | <trans-unit id="5699822024600815733"> |
10816 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10813 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10817 | <target>Men associerad data (taggar, beskrivning …) kommer försvinna, är du säker på att du vill lämna sidan?</target> | 10814 | <target>Men associerad data (taggar, beskrivning …) kommer försvinna, är du säker på att du vill lämna sidan?</target> |
10818 | <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">119</context></context-group> | 10815 | |
10819 | </trans-unit> | 10816 | <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> |
10820 | <trans-unit id="1219739004043110649"> | 10817 | <trans-unit id="1219739004043110649"> |
10821 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10818 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10822 | <target>Din video har inte laddats upp än, vill du lämna sidan?</target> | 10819 | <target>Din video har inte laddats upp än, vill du lämna sidan?</target> |
10823 | <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">121</context></context-group> | 10820 | |
10824 | </trans-unit> | 10821 | <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">128</context></context-group></trans-unit> |
10825 | <trans-unit id="6932865105766151309" datatype="html"> | 10822 | <trans-unit id="6932865105766151309" datatype="html"> |
10826 | <source>Upload</source> | 10823 | <source>Upload</source> |
10827 | <target state="translated">Ladda upp</target> | 10824 | <target state="translated">Ladda upp</target> |
10828 | <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">227</context></context-group> | 10825 | |
10829 | </trans-unit> | 10826 | <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">234</context></context-group></trans-unit> |
10830 | <trans-unit id="8278735427925094503"> | 10827 | <trans-unit id="8278735427925094503"> |
10831 | <source>Upload <x id="PH"/> </source> | 10828 | <source>Upload <x id="PH"/> </source> |
10832 | <target>Ladda upp | 10829 | <target>Ladda upp |
10833 | <x id="PH"/> | 10830 | <x id="PH"/> |
10834 | </target> | 10831 | </target> |
10835 | <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">229</context></context-group> | 10832 | |
10836 | </trans-unit> | 10833 | <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">236</context></context-group></trans-unit> |
10837 | <trans-unit id="5981816353437801748"> | 10834 | <trans-unit id="5981816353437801748"> |
10838 | <source>Video published.</source> | 10835 | <source>Video published.</source> |
10839 | <target>Videon har publicerats.</target> | 10836 | <target>Videon har publicerats.</target> |
10840 | <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">251</context></context-group> | 10837 | |
10841 | </trans-unit> | 10838 | <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">258</context></context-group></trans-unit> |
10842 | <trans-unit id="764164089183618119"> | 10839 | <trans-unit id="764164089183618119"> |
10843 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 10840 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
10844 | <target>Du har gjort ändringar som inte sparats! Om du lämnar nu kommer de förkastas.</target> | 10841 | <target>Du har gjort ändringar som inte sparats! Om du lämnar nu kommer de förkastas.</target> |
@@ -11027,7 +11024,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11027 | </trans-unit> | 11024 | </trans-unit> |
11028 | <trans-unit id="3037358578603095196" datatype="html"> | 11025 | <trans-unit id="3037358578603095196" datatype="html"> |
11029 | <source>Only videos uploaded on this instance are displayed</source> | 11026 | <source>Only videos uploaded on this instance are displayed</source> |
11030 | <target state="new">Only videos uploaded on this instance are displayed</target> | 11027 | <target state="translated">Bara videor som laddats upp på den här instansen visas</target> |
11031 | <context-group purpose="location"> | 11028 | <context-group purpose="location"> |
11032 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> | 11029 | <context context-type="sourcefile">src/app/+videos/video-list/videos-list-common-page.component.ts</context> |
11033 | <context context-type="linenumber">190</context> | 11030 | <context context-type="linenumber">190</context> |
diff --git a/client/src/locale/angular.ta.xlf b/client/src/locale/angular.ta.xlf index f96da3d18..b34387f22 100644 --- a/client/src/locale/angular.ta.xlf +++ b/client/src/locale/angular.ta.xlf | |||
@@ -393,7 +393,7 @@ | |||
393 | <source>video</source> | 393 | <source>video</source> |
394 | <target state="new">video</target> | 394 | <target state="new">video</target> |
395 | 395 | ||
396 | <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">294</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="6438815964972582865" datatype="html"> | 396 | <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">301</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="6438815964972582865" datatype="html"> |
397 | <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> | 397 | <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> |
398 | 398 | ||
399 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> | 399 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> |
@@ -455,10 +455,10 @@ | |||
455 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> | 455 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> |
456 | <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> | 456 | <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> |
457 | 457 | ||
458 | <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">330</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> | 458 | <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">337</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> |
459 | <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> | 459 | <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> |
460 | 460 | ||
461 | <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">349</context></context-group></trans-unit><trans-unit id="5235042777215655908" datatype="html"> | 461 | <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">356</context></context-group></trans-unit><trans-unit id="5235042777215655908" datatype="html"> |
462 | <source>subtitles</source><target state="new">subtitles</target> | 462 | <source>subtitles</source><target state="new">subtitles</target> |
463 | 463 | ||
464 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> | 464 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context><context context-type="linenumber">55</context></context-group></trans-unit> |
@@ -470,7 +470,7 @@ | |||
470 | Cancel | 470 | Cancel |
471 | </target> | 471 | </target> |
472 | 472 | ||
473 | <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">48</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> | 473 | <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">48</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">23</context></context-group></trans-unit> |
474 | <trans-unit id="3099741642167775297" datatype="html"> | 474 | <trans-unit id="3099741642167775297" datatype="html"> |
475 | <source>Download</source> | 475 | <source>Download</source> |
476 | <target state="new">Download</target> | 476 | <target state="new">Download</target> |
@@ -2484,7 +2484,7 @@ The link will expire within 1 hour.</target> | |||
2484 | <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"> | 2484 | <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"> |
2485 | <source>Upload on hold</source><target state="new">Upload on hold</target> | 2485 | <source>Upload on hold</source><target state="new">Upload on hold</target> |
2486 | 2486 | ||
2487 | <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">167</context></context-group></trans-unit> | 2487 | <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">174</context></context-group></trans-unit> |
2488 | <trans-unit id="285180972645018518" datatype="html"> | 2488 | <trans-unit id="285180972645018518" datatype="html"> |
2489 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2489 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2490 | <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> | 2490 | <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> |
@@ -10361,20 +10361,20 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10361 | <source>Your video was uploaded to your account and is private.</source> | 10361 | <source>Your video was uploaded to your account and is private.</source> |
10362 | <target state="new">Your video was uploaded to your account and is private.</target> | 10362 | <target state="new">Your video was uploaded to your account and is private.</target> |
10363 | 10363 | ||
10364 | <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">118</context></context-group></trans-unit> | 10364 | <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">125</context></context-group></trans-unit> |
10365 | <trans-unit id="5699822024600815733" datatype="html"> | 10365 | <trans-unit id="5699822024600815733" datatype="html"> |
10366 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10366 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10367 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> | 10367 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> |
10368 | 10368 | ||
10369 | <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">119</context></context-group></trans-unit> | 10369 | <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> |
10370 | <trans-unit id="1219739004043110649" datatype="html"> | 10370 | <trans-unit id="1219739004043110649" datatype="html"> |
10371 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10371 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10372 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> | 10372 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> |
10373 | 10373 | ||
10374 | <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">121</context></context-group></trans-unit><trans-unit id="6932865105766151309" datatype="html"> | 10374 | <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">128</context></context-group></trans-unit><trans-unit id="6932865105766151309" datatype="html"> |
10375 | <source>Upload</source><target state="new">Upload</target> | 10375 | <source>Upload</source><target state="new">Upload</target> |
10376 | 10376 | ||
10377 | <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">227</context></context-group></trans-unit> | 10377 | <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">234</context></context-group></trans-unit> |
10378 | <trans-unit id="8278735427925094503" datatype="html"> | 10378 | <trans-unit id="8278735427925094503" datatype="html"> |
10379 | <source>Upload | 10379 | <source>Upload |
10380 | <x id="PH"/> | 10380 | <x id="PH"/> |
@@ -10383,13 +10383,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10383 | <x id="PH"/> | 10383 | <x id="PH"/> |
10384 | </target> | 10384 | </target> |
10385 | 10385 | ||
10386 | <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">229</context></context-group></trans-unit> | 10386 | <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">236</context></context-group></trans-unit> |
10387 | 10387 | ||
10388 | <trans-unit id="5981816353437801748" datatype="html"> | 10388 | <trans-unit id="5981816353437801748" datatype="html"> |
10389 | <source>Video published.</source> | 10389 | <source>Video published.</source> |
10390 | <target state="new">Video published.</target> | 10390 | <target state="new">Video published.</target> |
10391 | 10391 | ||
10392 | <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">251</context></context-group></trans-unit> | 10392 | <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">258</context></context-group></trans-unit> |
10393 | 10393 | ||
10394 | 10394 | ||
10395 | <trans-unit id="764164089183618119" datatype="html"> | 10395 | <trans-unit id="764164089183618119" datatype="html"> |
diff --git a/client/src/locale/angular.th-TH.xlf b/client/src/locale/angular.th-TH.xlf index 813fab2f4..acb8c4534 100644 --- a/client/src/locale/angular.th-TH.xlf +++ b/client/src/locale/angular.th-TH.xlf | |||
@@ -335,9 +335,9 @@ | |||
335 | <trans-unit id="1006562256968398209" datatype="html"> | 335 | <trans-unit id="1006562256968398209" datatype="html"> |
336 | <source>video</source> | 336 | <source>video</source> |
337 | <target state="translated">วิดีโอ</target> | 337 | <target state="translated">วิดีโอ</target> |
338 | <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">294</context></context-group> | 338 | |
339 | <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> | 339 | |
340 | </trans-unit> | 340 | <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">301</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> |
341 | <trans-unit id="6438815964972582865" datatype="html"> | 341 | <trans-unit id="6438815964972582865" datatype="html"> |
342 | <source>The following link contains a private token and should not be shared with anyone.</source> | 342 | <source>The following link contains a private token and should not be shared with anyone.</source> |
343 | <target state="new"> The following link contains a private token and should not be shared with anyone. </target> | 343 | <target state="new"> The following link contains a private token and should not be shared with anyone. </target> |
@@ -409,13 +409,13 @@ | |||
409 | <trans-unit id="6995024616159044376" datatype="html"> | 409 | <trans-unit id="6995024616159044376" datatype="html"> |
410 | <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> | 410 | <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> |
411 | <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> | 411 | <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> |
412 | <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">330</context></context-group> | 412 | |
413 | </trans-unit> | 413 | <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">337</context></context-group></trans-unit> |
414 | <trans-unit id="7873395933409147217" datatype="html"> | 414 | <trans-unit id="7873395933409147217" datatype="html"> |
415 | <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> | 415 | <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> |
416 | <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> | 416 | <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> |
417 | <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">349</context></context-group> | 417 | |
418 | </trans-unit> | 418 | <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">356</context></context-group></trans-unit> |
419 | <trans-unit id="5235042777215655908" datatype="html"> | 419 | <trans-unit id="5235042777215655908" datatype="html"> |
420 | <source>subtitles</source> | 420 | <source>subtitles</source> |
421 | <target state="translated">คำบรรยายใต้ภาพ</target> | 421 | <target state="translated">คำบรรยายใต้ภาพ</target> |
@@ -426,9 +426,9 @@ | |||
426 | <target> | 426 | <target> |
427 | ยกเลิก | 427 | ยกเลิก |
428 | </target> | 428 | </target> |
429 | <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">48</context></context-group> | 429 | |
430 | <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> | 430 | |
431 | </trans-unit> | 431 | <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">48</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">23</context></context-group></trans-unit> |
432 | <trans-unit id="3099741642167775297"> | 432 | <trans-unit id="3099741642167775297"> |
433 | <source>Download</source> | 433 | <source>Download</source> |
434 | <target>ดาวน์โหลด</target> | 434 | <target>ดาวน์โหลด</target> |
@@ -2643,8 +2643,8 @@ The link will expire within 1 hour.</source> | |||
2643 | <trans-unit id="6161604372916832458" datatype="html"> | 2643 | <trans-unit id="6161604372916832458" datatype="html"> |
2644 | <source>Upload on hold</source> | 2644 | <source>Upload on hold</source> |
2645 | <target state="new">Upload on hold</target> | 2645 | <target state="new">Upload on hold</target> |
2646 | <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">167</context></context-group> | 2646 | |
2647 | </trans-unit> | 2647 | <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">174</context></context-group></trans-unit> |
2648 | <trans-unit id="285180972645018518" datatype="html"> | 2648 | <trans-unit id="285180972645018518" datatype="html"> |
2649 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2649 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2650 | <target state="translated">ขออภัย คุณสมบัติการอัปโหลดถูกปิดใช้งานสำหรับบัญชีของคุณ หากคุณต้องการเพิ่มวิดีโอ ผู้ดูแลระบบต้องปลดล็อกโควต้าของคุณก่อน</target> | 2650 | <target state="translated">ขออภัย คุณสมบัติการอัปโหลดถูกปิดใช้งานสำหรับบัญชีของคุณ หากคุณต้องการเพิ่มวิดีโอ ผู้ดูแลระบบต้องปลดล็อกโควต้าของคุณก่อน</target> |
@@ -11167,35 +11167,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11167 | <trans-unit id="3284171506518522275" datatype="html"> | 11167 | <trans-unit id="3284171506518522275" datatype="html"> |
11168 | <source>Your video was uploaded to your account and is private.</source> | 11168 | <source>Your video was uploaded to your account and is private.</source> |
11169 | <target state="translated">วิดีโอของคุณถูกอัปโหลดไปยังบัญชีของคุณและเป็นส่วนตัวแล้ว</target> | 11169 | <target state="translated">วิดีโอของคุณถูกอัปโหลดไปยังบัญชีของคุณและเป็นส่วนตัวแล้ว</target> |
11170 | <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">118</context></context-group> | 11170 | |
11171 | </trans-unit> | 11171 | <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">125</context></context-group></trans-unit> |
11172 | <trans-unit id="5699822024600815733" datatype="html"> | 11172 | <trans-unit id="5699822024600815733" datatype="html"> |
11173 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 11173 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
11174 | <target state="translated">แต่ข้อมูลที่เกี่ยวข้อง (เช่น แท็ก คำอธิบาย) จะไม่ถูกบันทึก คุณแน่ใจว่าต้องการออกจากหน้านี้หรือไม่</target> | 11174 | <target state="translated">แต่ข้อมูลที่เกี่ยวข้อง (เช่น แท็ก คำอธิบาย) จะไม่ถูกบันทึก คุณแน่ใจว่าต้องการออกจากหน้านี้หรือไม่</target> |
11175 | <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">119</context></context-group> | 11175 | |
11176 | </trans-unit> | 11176 | <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> |
11177 | <trans-unit id="1219739004043110649" datatype="html"> | 11177 | <trans-unit id="1219739004043110649" datatype="html"> |
11178 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 11178 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
11179 | <target state="translated">วิดีโอยังไม่ถูกอัปโหลด คุณแน่ใจว่าต้องการออกจากหน้านี้หรือไม่</target> | 11179 | <target state="translated">วิดีโอยังไม่ถูกอัปโหลด คุณแน่ใจว่าต้องการออกจากหน้านี้หรือไม่</target> |
11180 | <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">121</context></context-group> | 11180 | |
11181 | </trans-unit> | 11181 | <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">128</context></context-group></trans-unit> |
11182 | <trans-unit id="6932865105766151309" datatype="html"> | 11182 | <trans-unit id="6932865105766151309" datatype="html"> |
11183 | <source>Upload</source> | 11183 | <source>Upload</source> |
11184 | <target state="translated">อัปโหลด</target> | 11184 | <target state="translated">อัปโหลด</target> |
11185 | <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">227</context></context-group> | 11185 | |
11186 | </trans-unit> | 11186 | <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">234</context></context-group></trans-unit> |
11187 | <trans-unit id="8278735427925094503" datatype="html"> | 11187 | <trans-unit id="8278735427925094503" datatype="html"> |
11188 | <source>Upload <x id="PH"/> </source> | 11188 | <source>Upload <x id="PH"/> </source> |
11189 | <target state="translated">อัปโหลด | 11189 | <target state="translated">อัปโหลด |
11190 | <x id="PH"/> | 11190 | <x id="PH"/> |
11191 | </target> | 11191 | </target> |
11192 | <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">229</context></context-group> | 11192 | |
11193 | </trans-unit> | 11193 | <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">236</context></context-group></trans-unit> |
11194 | <trans-unit id="5981816353437801748" datatype="html"> | 11194 | <trans-unit id="5981816353437801748" datatype="html"> |
11195 | <source>Video published.</source> | 11195 | <source>Video published.</source> |
11196 | <target state="translated">เผยแพร่วิดีโอแล้ว</target> | 11196 | <target state="translated">เผยแพร่วิดีโอแล้ว</target> |
11197 | <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">251</context></context-group> | 11197 | |
11198 | </trans-unit> | 11198 | <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">258</context></context-group></trans-unit> |
11199 | <trans-unit id="764164089183618119" datatype="html"> | 11199 | <trans-unit id="764164089183618119" datatype="html"> |
11200 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 11200 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
11201 | <target state="translated">คุณมีการเปลี่ยนแปลงที่ยังไม่ได้บันทึก ถ้าคุณออกจากหน้านี้ ข้อมูลที่ไม่ได้บันทึกจะหายไป</target> | 11201 | <target state="translated">คุณมีการเปลี่ยนแปลงที่ยังไม่ได้บันทึก ถ้าคุณออกจากหน้านี้ ข้อมูลที่ไม่ได้บันทึกจะหายไป</target> |
diff --git a/client/src/locale/angular.tr-TR.xlf b/client/src/locale/angular.tr-TR.xlf index 396df0df8..bd2c70976 100644 --- a/client/src/locale/angular.tr-TR.xlf +++ b/client/src/locale/angular.tr-TR.xlf | |||
@@ -330,7 +330,7 @@ | |||
330 | <source>video</source> | 330 | <source>video</source> |
331 | <target state="translated">video</target> | 331 | <target state="translated">video</target> |
332 | 332 | ||
333 | <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">294</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="6438815964972582865" datatype="html"> | 333 | <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">301</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="6438815964972582865" datatype="html"> |
334 | <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> | 334 | <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> |
335 | 335 | ||
336 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> | 336 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context><context context-type="linenumber">19</context></context-group></trans-unit><trans-unit id="187187500641108332" datatype="html"> |
@@ -392,10 +392,10 @@ | |||
392 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> | 392 | <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">289</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">54</context></context-group></trans-unit><trans-unit id="6995024616159044376" datatype="html"> |
393 | <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> | 393 | <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> |
394 | 394 | ||
395 | <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">330</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> | 395 | <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">337</context></context-group></trans-unit><trans-unit id="7873395933409147217" datatype="html"> |
396 | <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> | 396 | <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> |
397 | 397 | ||
398 | <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">349</context></context-group></trans-unit> | 398 | <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">356</context></context-group></trans-unit> |
399 | 399 | ||
400 | <trans-unit id="5235042777215655908" datatype="html"> | 400 | <trans-unit id="5235042777215655908" datatype="html"> |
401 | <source>subtitles</source> | 401 | <source>subtitles</source> |
@@ -406,7 +406,7 @@ | |||
406 | <source>Cancel</source> | 406 | <source>Cancel</source> |
407 | <target state="translated">Kapat</target> | 407 | <target state="translated">Kapat</target> |
408 | 408 | ||
409 | <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">48</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> | 409 | <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">48</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">23</context></context-group></trans-unit> |
410 | <trans-unit id="3099741642167775297"> | 410 | <trans-unit id="3099741642167775297"> |
411 | <source>Download</source> | 411 | <source>Download</source> |
412 | <target>İndir</target> | 412 | <target>İndir</target> |
@@ -2434,7 +2434,7 @@ The link will expire within 1 hour.</target> | |||
2434 | <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"> | 2434 | <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"> |
2435 | <source>Upload on hold</source><target state="new">Upload on hold</target> | 2435 | <source>Upload on hold</source><target state="new">Upload on hold</target> |
2436 | 2436 | ||
2437 | <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">167</context></context-group></trans-unit> | 2437 | <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">174</context></context-group></trans-unit> |
2438 | <trans-unit id="285180972645018518" datatype="html"> | 2438 | <trans-unit id="285180972645018518" datatype="html"> |
2439 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2439 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2440 | <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> | 2440 | <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> |
@@ -10679,35 +10679,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10679 | <source>Your video was uploaded to your account and is private.</source> | 10679 | <source>Your video was uploaded to your account and is private.</source> |
10680 | <target state="new">Your video was uploaded to your account and is private.</target> | 10680 | <target state="new">Your video was uploaded to your account and is private.</target> |
10681 | 10681 | ||
10682 | <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">118</context></context-group></trans-unit> | 10682 | <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">125</context></context-group></trans-unit> |
10683 | <trans-unit id="5699822024600815733" datatype="html"> | 10683 | <trans-unit id="5699822024600815733" datatype="html"> |
10684 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10684 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10685 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> | 10685 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> |
10686 | 10686 | ||
10687 | <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">119</context></context-group></trans-unit> | 10687 | <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> |
10688 | <trans-unit id="1219739004043110649" datatype="html"> | 10688 | <trans-unit id="1219739004043110649" datatype="html"> |
10689 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10689 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10690 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> | 10690 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> |
10691 | 10691 | ||
10692 | <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">121</context></context-group></trans-unit> | 10692 | <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">128</context></context-group></trans-unit> |
10693 | <trans-unit id="6932865105766151309" datatype="html"> | 10693 | <trans-unit id="6932865105766151309" datatype="html"> |
10694 | <source>Upload</source> | 10694 | <source>Upload</source> |
10695 | <target state="new">Upload</target> | 10695 | <target state="new">Upload</target> |
10696 | 10696 | ||
10697 | <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">227</context></context-group></trans-unit> | 10697 | <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">234</context></context-group></trans-unit> |
10698 | <trans-unit id="8278735427925094503" datatype="html"> | 10698 | <trans-unit id="8278735427925094503" datatype="html"> |
10699 | <source>Upload <x id="PH"/> </source> | 10699 | <source>Upload <x id="PH"/> </source> |
10700 | <target state="new">Upload | 10700 | <target state="new">Upload |
10701 | <x id="PH"/> | 10701 | <x id="PH"/> |
10702 | </target> | 10702 | </target> |
10703 | 10703 | ||
10704 | <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">229</context></context-group></trans-unit> | 10704 | <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">236</context></context-group></trans-unit> |
10705 | 10705 | ||
10706 | <trans-unit id="5981816353437801748" datatype="html"> | 10706 | <trans-unit id="5981816353437801748" datatype="html"> |
10707 | <source>Video published.</source> | 10707 | <source>Video published.</source> |
10708 | <target state="translated">Video yayınlandı.</target> | 10708 | <target state="translated">Video yayınlandı.</target> |
10709 | 10709 | ||
10710 | <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">251</context></context-group></trans-unit> | 10710 | <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">258</context></context-group></trans-unit> |
10711 | 10711 | ||
10712 | 10712 | ||
10713 | <trans-unit id="764164089183618119" datatype="html"> | 10713 | <trans-unit id="764164089183618119" datatype="html"> |
diff --git a/client/src/locale/angular.uk-UA.xlf b/client/src/locale/angular.uk-UA.xlf index 648f603a8..02de71cbc 100644 --- a/client/src/locale/angular.uk-UA.xlf +++ b/client/src/locale/angular.uk-UA.xlf | |||
@@ -220,12 +220,12 @@ | |||
220 | </trans-unit> | 220 | </trans-unit> |
221 | <trans-unit id="5201790281220738609" datatype="html"> | 221 | <trans-unit id="5201790281220738609" datatype="html"> |
222 | <source>Search playlists</source> | 222 | <source>Search playlists</source> |
223 | <target state="translated">Шукати сси відвоня</target> | 223 | <target state="translated">Шукати ір</target> |
224 | <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> | 224 | <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> |
225 | </trans-unit> | 225 | </trans-unit> |
226 | <trans-unit id="6056859576122955708" datatype="html"> | 226 | <trans-unit id="6056859576122955708" datatype="html"> |
227 | <source>Create a private playlist</source> | 227 | <source>Create a private playlist</source> |
228 | <target state="translated">Створити приватний с відвонн</target> | 228 | <target state="translated">Створити приватн оір</target> |
229 | <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">66</context></context-group> | 229 | <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">66</context></context-group> |
230 | </trans-unit> | 230 | </trans-unit> |
231 | <trans-unit id="2409672154570643758" datatype="html"> | 231 | <trans-unit id="2409672154570643758" datatype="html"> |
@@ -255,9 +255,9 @@ | |||
255 | <trans-unit id="1006562256968398209" datatype="html"> | 255 | <trans-unit id="1006562256968398209" datatype="html"> |
256 | <source>video</source> | 256 | <source>video</source> |
257 | <target state="translated">відео</target> | 257 | <target state="translated">відео</target> |
258 | <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">294</context></context-group> | 258 | |
259 | <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> | 259 | |
260 | </trans-unit> | 260 | <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">301</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> |
261 | <trans-unit id="6438815964972582865" datatype="html"> | 261 | <trans-unit id="6438815964972582865" datatype="html"> |
262 | <source>The following link contains a private token and should not be shared with anyone.</source> | 262 | <source>The following link contains a private token and should not be shared with anyone.</source> |
263 | <target state="translated">Наведене нижче посилання містить приватний токен і не повинно бути надано нікому.</target> | 263 | <target state="translated">Наведене нижче посилання містить приватний токен і не повинно бути надано нікому.</target> |
@@ -329,13 +329,13 @@ | |||
329 | <trans-unit id="6995024616159044376" datatype="html"> | 329 | <trans-unit id="6995024616159044376" datatype="html"> |
330 | <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> | 330 | <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> |
331 | <target state="translated">Ви досягли обмеження цього відео (розмір відео: <x id="PH" equiv-text="videoSizeBytes"/>, використано: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, обмеження: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> | 331 | <target state="translated">Ви досягли обмеження цього відео (розмір відео: <x id="PH" equiv-text="videoSizeBytes"/>, використано: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, обмеження: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> |
332 | <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">330</context></context-group> | 332 | |
333 | </trans-unit> | 333 | <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">337</context></context-group></trans-unit> |
334 | <trans-unit id="7873395933409147217" datatype="html"> | 334 | <trans-unit id="7873395933409147217" datatype="html"> |
335 | <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> | 335 | <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> |
336 | <target state="translated">Ви досягли денного обмеження цього відео (розмір відео: <x id="PH" equiv-text="videoSizeBytes"/>, використано: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, обмеження: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> | 336 | <target state="translated">Ви досягли денного обмеження цього відео (розмір відео: <x id="PH" equiv-text="videoSizeBytes"/>, використано: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, обмеження: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> |
337 | <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">349</context></context-group> | 337 | |
338 | </trans-unit> | 338 | <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">356</context></context-group></trans-unit> |
339 | <trans-unit id="5235042777215655908" datatype="html"> | 339 | <trans-unit id="5235042777215655908" datatype="html"> |
340 | <source>subtitles</source> | 340 | <source>subtitles</source> |
341 | <target state="translated">субтитри</target> | 341 | <target state="translated">субтитри</target> |
@@ -344,9 +344,9 @@ | |||
344 | <trans-unit id="2330577642930707695" datatype="html"> | 344 | <trans-unit id="2330577642930707695" datatype="html"> |
345 | <source>Cancel</source> | 345 | <source>Cancel</source> |
346 | <target state="translated">Скасувати</target> | 346 | <target state="translated">Скасувати</target> |
347 | <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">48</context></context-group> | 347 | |
348 | <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> | 348 | |
349 | </trans-unit> | 349 | <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">48</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">23</context></context-group></trans-unit> |
350 | <trans-unit id="3099741642167775297" datatype="html"> | 350 | <trans-unit id="3099741642167775297" datatype="html"> |
351 | <source>Download</source> | 351 | <source>Download</source> |
352 | <target state="translated">Завантажити</target> | 352 | <target state="translated">Завантажити</target> |
@@ -646,12 +646,12 @@ | |||
646 | </trans-unit> | 646 | </trans-unit> |
647 | <trans-unit id="6691897331062834756" datatype="html"> | 647 | <trans-unit id="6691897331062834756" datatype="html"> |
648 | <source>Subscribe with an account on this instance</source> | 648 | <source>Subscribe with an account on this instance</source> |
649 | <target state="translated">Підписатися через обліковий запис на цьому сервері</target> | 649 | <target state="translated">Підписатися за допомогою облікового запису на цьому сервері</target> |
650 | <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> | 650 | <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> |
651 | </trans-unit> | 651 | </trans-unit> |
652 | <trans-unit id="1740917574463702967"> | 652 | <trans-unit id="1740917574463702967"> |
653 | <source>Subscribe with your local account</source> | 653 | <source>Subscribe with your local account</source> |
654 | <target state="translated">Підписатися через локальний обліковий запис</target> | 654 | <target state="translated">Підписатися за допомогою локального облікового запису</target> |
655 | <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> | 655 | <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> |
656 | </trans-unit> | 656 | </trans-unit> |
657 | <trans-unit id="7639191791633609999" datatype="html"> | 657 | <trans-unit id="7639191791633609999" datatype="html"> |
@@ -666,7 +666,7 @@ | |||
666 | </trans-unit> | 666 | </trans-unit> |
667 | <trans-unit id="7695158742270602420"> | 667 | <trans-unit id="7695158742270602420"> |
668 | <source>Subscribe via RSS</source> | 668 | <source>Subscribe via RSS</source> |
669 | <target>Підписатися чр RSS</target> | 669 | <target>Підписатися опомогою RSS</target> |
670 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">69</context></context-group> | 670 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">69</context></context-group> |
671 | </trans-unit> | 671 | </trans-unit> |
672 | <trans-unit id="6086125715086510222" datatype="html"> | 672 | <trans-unit id="6086125715086510222" datatype="html"> |
@@ -676,12 +676,12 @@ | |||
676 | </trans-unit> | 676 | </trans-unit> |
677 | <trans-unit id="855178133027341271" datatype="html"> | 677 | <trans-unit id="855178133027341271" datatype="html"> |
678 | <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> | 678 | <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> |
679 | <target state="translated"><x id="START_TAG_SPAN"/>Віддалена підписка <x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Віддалена взаємодія<x id="CLOSE_TAG_SPAN"/></target> | 679 | <target state="translated"><x id="START_TAG_SPAN"/>Віддалена підписка<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Віддалена взаємодія<x id="CLOSE_TAG_SPAN"/></target> |
680 | <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> | 680 | <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> |
681 | </trans-unit> | 681 | </trans-unit> |
682 | <trans-unit id="6462281745850371027" datatype="html"> | 682 | <trans-unit id="6462281745850371027" datatype="html"> |
683 | <source>You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> | 683 | <source>You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).</source> |
684 | <target state="translated">Ви можете підписатись на канал через будь-який екземпляр Fediverse з підтримною ActivityPub (наприклад, PeerTube, Mastodon або Pleroma).</target> | 684 | <target state="translated">Ви можете підписатися на канал через будь-який сервер Fediverse з підтримною ActivityPub (наприклад, PeerTube, Mastodon або Pleroma).</target> |
685 | <context-group purpose="location"> | 685 | <context-group purpose="location"> |
686 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> | 686 | <context context-type="sourcefile">src/app/shared/shared-user-subscription/remote-subscribe.component.html</context> |
687 | <context context-type="linenumber">18,19</context> | 687 | <context context-type="linenumber">18,19</context> |
@@ -906,10 +906,10 @@ | |||
906 | <trans-unit id="2392488717875840729" datatype="html"> | 906 | <trans-unit id="2392488717875840729" datatype="html"> |
907 | <source>User</source> | 907 | <source>User</source> |
908 | <target state="new">User</target> | 908 | <target state="new">User</target> |
909 | 909 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group> | |
910 | 910 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">27</context></context-group> | |
911 | 911 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group> | |
912 | <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">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group></trans-unit> | 912 | </trans-unit> |
913 | <trans-unit id="4209525355702493436"> | 913 | <trans-unit id="4209525355702493436"> |
914 | <source>Ban</source> | 914 | <source>Ban</source> |
915 | <target>Заблокувати</target> | 915 | <target>Заблокувати</target> |
@@ -1194,9 +1194,7 @@ The link will expire within 1 hour.</source> | |||
1194 | </trans-unit> | 1194 | </trans-unit> |
1195 | <trans-unit id="5500467336262464724" datatype="html"> | 1195 | <trans-unit id="5500467336262464724" datatype="html"> |
1196 | <source><x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> subscribers </source> | 1196 | <source><x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> subscribers </source> |
1197 | <target state="translated"> | 1197 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> підписників </target> |
1198 | <x id="INTERPOLATION" equiv-text="{{ result.followersCount }}"/> підписалися | ||
1199 | </target> | ||
1200 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">25</context></context-group> | 1198 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">25</context></context-group> |
1201 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">55</context></context-group> | 1199 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.html</context><context context-type="linenumber">55</context></context-group> |
1202 | <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> | 1200 | <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> |
@@ -1233,7 +1231,7 @@ The link will expire within 1 hour.</source> | |||
1233 | </trans-unit> | 1231 | </trans-unit> |
1234 | <trans-unit id="3848077896245199337" datatype="html"> | 1232 | <trans-unit id="3848077896245199337" datatype="html"> |
1235 | <source>Setup your account, managing video playlists, discover third-party applications...</source> | 1233 | <source>Setup your account, managing video playlists, discover third-party applications...</source> |
1236 | <target state="translated">Налаштувати ваш обліковий запис, керувати списками відтворення, переглянути додатки третіх сторін...</target> | 1234 | <target state="translated">Налаштувати ваш обліковий запис, керувати добірками, переглянути сторонні застосунки...</target> |
1237 | <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> | 1235 | <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> |
1238 | </trans-unit> | 1236 | </trans-unit> |
1239 | <trans-unit id="6284442506490785579" datatype="html"> | 1237 | <trans-unit id="6284442506490785579" datatype="html"> |
@@ -2023,14 +2021,14 @@ The link will expire within 1 hour.</source> | |||
2023 | <trans-unit id="6179532215548637839" datatype="html"> | 2021 | <trans-unit id="6179532215548637839" datatype="html"> |
2024 | <source>extensions</source> | 2022 | <source>extensions</source> |
2025 | <target state="translated">розширення</target> | 2023 | <target state="translated">розширення</target> |
2026 | 2024 | <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> | |
2027 | <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> | 2025 | </trans-unit> |
2028 | <trans-unit id="8054921481196967348" datatype="html"> | 2026 | <trans-unit id="8054921481196967348" datatype="html"> |
2029 | <source>This image is too large.</source> | 2027 | <source>This image is too large.</source> |
2030 | <target state="translated">Це зображення занадто велике.</target> | 2028 | <target state="translated">Це зображення занадто велике.</target> |
2031 | 2029 | <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> | |
2032 | 2030 | <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> | |
2033 | <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> | 2031 | </trans-unit> |
2034 | <trans-unit id="6259523075362402245" datatype="html"> | 2032 | <trans-unit id="6259523075362402245" datatype="html"> |
2035 | <source>Upload a new banner</source> | 2033 | <source>Upload a new banner</source> |
2036 | <target state="translated">Вивантажити новий банер</target> | 2034 | <target state="translated">Вивантажити новий банер</target> |
@@ -2055,13 +2053,13 @@ The link will expire within 1 hour.</source> | |||
2055 | <trans-unit id="3220184757632006830" datatype="html"> | 2053 | <trans-unit id="3220184757632006830" datatype="html"> |
2056 | <source>Account avatar</source> | 2054 | <source>Account avatar</source> |
2057 | <target state="translated">Аватар облікового запису</target> | 2055 | <target state="translated">Аватар облікового запису</target> |
2058 | 2056 | <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> | |
2059 | <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> | 2057 | </trans-unit> |
2060 | <trans-unit id="1138964882426023395" datatype="html"> | 2058 | <trans-unit id="1138964882426023395" datatype="html"> |
2061 | <source>Channel avatar</source> | 2059 | <source>Channel avatar</source> |
2062 | <target state="translated">Аватар каналу</target> | 2060 | <target state="translated">Аватар каналу</target> |
2063 | 2061 | <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> | |
2064 | <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> | 2062 | </trans-unit> |
2065 | <trans-unit id="1358902062258458923" datatype="html"> | 2063 | <trans-unit id="1358902062258458923" datatype="html"> |
2066 | <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> | 2064 | <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> |
2067 | <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> | 2065 | <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> |
@@ -2508,8 +2506,8 @@ The link will expire within 1 hour.</source> | |||
2508 | <trans-unit id="6161604372916832458" datatype="html"> | 2506 | <trans-unit id="6161604372916832458" datatype="html"> |
2509 | <source>Upload on hold</source> | 2507 | <source>Upload on hold</source> |
2510 | <target state="translated">Вивантаження зупинено</target> | 2508 | <target state="translated">Вивантаження зупинено</target> |
2511 | <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">167</context></context-group> | 2509 | |
2512 | </trans-unit> | 2510 | <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">174</context></context-group></trans-unit> |
2513 | <trans-unit id="285180972645018518" datatype="html"> | 2511 | <trans-unit id="285180972645018518" datatype="html"> |
2514 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2512 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2515 | <target state="translated">На жаль, можливість вивантаження вимкнена для вашого облікового запису. Якщо ви хочете додати відео, адміністратор повинен розблокувати вашу квоту.</target> | 2513 | <target state="translated">На жаль, можливість вивантаження вимкнена для вашого облікового запису. Якщо ви хочете додати відео, адміністратор повинен розблокувати вашу квоту.</target> |
@@ -2884,7 +2882,7 @@ The link will expire within 1 hour.</source> | |||
2884 | </trans-unit> | 2882 | </trans-unit> |
2885 | <trans-unit id="3452334748875293295" datatype="html"> | 2883 | <trans-unit id="3452334748875293295" datatype="html"> |
2886 | <source>The video was blocked due to automatic blocking of new videos</source> | 2884 | <source>The video was blocked due to automatic blocking of new videos</source> |
2887 | <target state="new">The video was blocked due to automatic blocking of new videos</target> | 2885 | <target state="translated">Відео було заблоковано через автоматичне блокування нових відео</target> |
2888 | <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">57</context></context-group> | 2886 | <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">57</context></context-group> |
2889 | </trans-unit> | 2887 | </trans-unit> |
2890 | <trans-unit id="1465291804668949243" datatype="html"> | 2888 | <trans-unit id="1465291804668949243" datatype="html"> |
@@ -2904,8 +2902,7 @@ The link will expire within 1 hour.</source> | |||
2904 | </trans-unit> | 2902 | </trans-unit> |
2905 | <trans-unit id="4092533321838934102" datatype="html"> | 2903 | <trans-unit id="4092533321838934102" datatype="html"> |
2906 | <source>The video is being imported, it will be available when the import is finished.</source> | 2904 | <source>The video is being imported, it will be available when the import is finished.</source> |
2907 | <target state="new"> The video is being imported, it will be available when the import is finished. | 2905 | <target state="translated">Відео імпортується, воно стане доступним після завершення імпорту.</target> |
2908 | </target> | ||
2909 | <context-group purpose="location"> | 2906 | <context-group purpose="location"> |
2910 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 2907 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
2911 | <context context-type="linenumber">2,3</context> | 2908 | <context context-type="linenumber">2,3</context> |
@@ -2913,8 +2910,7 @@ The link will expire within 1 hour.</source> | |||
2913 | </trans-unit> | 2910 | </trans-unit> |
2914 | <trans-unit id="8304621069698650554" datatype="html"> | 2911 | <trans-unit id="8304621069698650554" datatype="html"> |
2915 | <source>The video is being transcoded, it may not work properly.</source> | 2912 | <source>The video is being transcoded, it may not work properly.</source> |
2916 | <target state="new"> The video is being transcoded, it may not work properly. | 2913 | <target state="translated">Відео перекодовано, воно може не працювати належним чином.</target> |
2917 | </target> | ||
2918 | <context-group purpose="location"> | 2914 | <context-group purpose="location"> |
2919 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 2915 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
2920 | <context context-type="linenumber">6,7</context> | 2916 | <context context-type="linenumber">6,7</context> |
@@ -2922,8 +2918,7 @@ The link will expire within 1 hour.</source> | |||
2922 | </trans-unit> | 2918 | </trans-unit> |
2923 | <trans-unit id="9080034597841586171" datatype="html"> | 2919 | <trans-unit id="9080034597841586171" datatype="html"> |
2924 | <source>The video is being moved to an external server, it may not work properly.</source> | 2920 | <source>The video is being moved to an external server, it may not work properly.</source> |
2925 | <target state="new"> The video is being moved to an external server, it may not work properly. | 2921 | <target state="translated">Відео переміщено на зовнішній сервер, воно може не працювати належним чином.</target> |
2926 | </target> | ||
2927 | <context-group purpose="location"> | 2922 | <context-group purpose="location"> |
2928 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> | 2923 | <context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context> |
2929 | <context context-type="linenumber">10,11</context> | 2924 | <context context-type="linenumber">10,11</context> |
@@ -2931,42 +2926,37 @@ The link will expire within 1 hour.</source> | |||
2931 | </trans-unit> | 2926 | </trans-unit> |
2932 | <trans-unit id="8619499607322327082" datatype="html"> | 2927 | <trans-unit id="8619499607322327082" datatype="html"> |
2933 | <source>This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. </source> | 2928 | <source>This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. </source> |
2934 | <target state="new"> This video will be published on <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. | 2929 | <target state="translated">Це відео оприлюднено <x id="INTERPOLATION" equiv-text="{{ video.scheduledUpdate.updateAt | date: 'full' }}"/>. </target> |
2935 | </target> | ||
2936 | <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> | 2930 | <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> |
2937 | </trans-unit> | 2931 | </trans-unit> |
2938 | <trans-unit id="4262297989675590582" datatype="html"> | 2932 | <trans-unit id="4262297989675590582" datatype="html"> |
2939 | <source>This live has not started yet.</source> | 2933 | <source>This live has not started yet.</source> |
2940 | <target state="new"> This live has not started yet. | 2934 | <target state="translated">Цю трансляцію ще не розпочато.</target> |
2941 | </target> | ||
2942 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">18</context></context-group> | 2935 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">18</context></context-group> |
2943 | </trans-unit> | 2936 | </trans-unit> |
2944 | <trans-unit id="4926204350710628499" datatype="html"> | 2937 | <trans-unit id="4926204350710628499" datatype="html"> |
2945 | <source>This live has ended.</source> | 2938 | <source>This live has ended.</source> |
2946 | <target state="new"> This live has ended. | 2939 | <target state="translated">Цю трансляцію завершено.</target> |
2947 | </target> | ||
2948 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">22</context></context-group> | 2940 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">22</context></context-group> |
2949 | </trans-unit> | 2941 | </trans-unit> |
2950 | <trans-unit id="8518611938109939710" datatype="html"> | 2942 | <trans-unit id="8518611938109939710" datatype="html"> |
2951 | <source>SORT BY</source> | 2943 | <source>SORT BY</source> |
2952 | <target state="new"> | 2944 | <target state="translated">СОРТУВАТИ ЗА</target> |
2953 | SORT BY | ||
2954 | </target> | ||
2955 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">11</context></context-group> | 2945 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/comment/video-comments.component.html</context><context context-type="linenumber">11</context></context-group> |
2956 | </trans-unit> | 2946 | </trans-unit> |
2957 | <trans-unit id="6448160249466325288" datatype="html"> | 2947 | <trans-unit id="6448160249466325288" datatype="html"> |
2958 | <source>Most recent first (default)</source> | 2948 | <source>Most recent first (default)</source> |
2959 | <target state="new">Most recent first (default)</target> | 2949 | <target state="translated">Спочатку найновіші (типово)</target> |
2960 | <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> | 2950 | <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> |
2961 | </trans-unit> | 2951 | </trans-unit> |
2962 | <trans-unit id="5179007899354903649" datatype="html"> | 2952 | <trans-unit id="5179007899354903649" datatype="html"> |
2963 | <source>Most replies first</source> | 2953 | <source>Most replies first</source> |
2964 | <target state="new">Most replies first</target> | 2954 | <target state="translated">Спочатку з найбільшою кількістю відповідей</target> |
2965 | <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> | 2955 | <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> |
2966 | </trans-unit> | 2956 | </trans-unit> |
2967 | <trans-unit id="7494537777006082055" datatype="html"> | 2957 | <trans-unit id="7494537777006082055" datatype="html"> |
2968 | <source>No comments.</source> | 2958 | <source>No comments.</source> |
2969 | <target state="new">No comments.</target> | 2959 | <target state="translated">Без коментарів.</target> |
2970 | <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> | 2960 | <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> |
2971 | </trans-unit> | 2961 | </trans-unit> |
2972 | <trans-unit id="6390009909920475335" datatype="html"> | 2962 | <trans-unit id="6390009909920475335" datatype="html"> |
@@ -3090,12 +3080,12 @@ The link will expire within 1 hour.</source> | |||
3090 | </trans-unit> | 3080 | </trans-unit> |
3091 | <trans-unit id="2958389355547305739" datatype="html"> | 3081 | <trans-unit id="2958389355547305739" datatype="html"> |
3092 | <source>Login to comment</source> | 3082 | <source>Login to comment</source> |
3093 | <target state="new">Login to comment</target> | 3083 | <target state="translated">Увійдіть, щоб коментувати</target> |
3094 | <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> | 3084 | <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> |
3095 | </trans-unit> | 3085 | </trans-unit> |
3096 | <trans-unit id="4817080330698362530" datatype="html"> | 3086 | <trans-unit id="4817080330698362530" datatype="html"> |
3097 | <source>Markdown Emoji List</source> | 3087 | <source>Markdown Emoji List</source> |
3098 | <target state="new">Markdown Emoji List</target> | 3088 | <target state="translated">Список емоджі Markdown</target> |
3099 | <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> | 3089 | <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> |
3100 | </trans-unit> | 3090 | </trans-unit> |
3101 | <trans-unit id="2662644497259948010" datatype="html"> | 3091 | <trans-unit id="2662644497259948010" datatype="html"> |
@@ -3117,12 +3107,12 @@ The link will expire within 1 hour.</source> | |||
3117 | </trans-unit> | 3107 | </trans-unit> |
3118 | <trans-unit id="4502286564339177240" datatype="html"> | 3108 | <trans-unit id="4502286564339177240" datatype="html"> |
3119 | <source>Reply</source> | 3109 | <source>Reply</source> |
3120 | <target state="new">Reply</target> | 3110 | <target state="translated">Відповідь</target> |
3121 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">36</context></context-group> | 3111 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">36</context></context-group> |
3122 | </trans-unit> | 3112 | </trans-unit> |
3123 | <trans-unit id="2447932355167015019" datatype="html"> | 3113 | <trans-unit id="2447932355167015019" datatype="html"> |
3124 | <source>This comment has been deleted</source> | 3114 | <source>This comment has been deleted</source> |
3125 | <target state="new">This comment has been deleted</target> | 3115 | <target state="translated">Цей коментар було видалено</target> |
3126 | <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> | 3116 | <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> |
3127 | </trans-unit> | 3117 | </trans-unit> |
3128 | <trans-unit id="9031514421077169181" datatype="html"> | 3118 | <trans-unit id="9031514421077169181" datatype="html"> |
@@ -3313,9 +3303,8 @@ The link will expire within 1 hour.</source> | |||
3313 | <trans-unit id="9160510009013134726" datatype="html"> | 3303 | <trans-unit id="9160510009013134726" datatype="html"> |
3314 | <source>Unfollow</source> | 3304 | <source>Unfollow</source> |
3315 | <target state="new">Unfollow</target> | 3305 | <target state="new">Unfollow</target> |
3316 | 3306 | <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> | |
3317 | 3307 | </trans-unit> | |
3318 | <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> | ||
3319 | <trans-unit id="8246779176913476983" datatype="html"> | 3308 | <trans-unit id="8246779176913476983" datatype="html"> |
3320 | <source>Open instance in a new tab</source> | 3309 | <source>Open instance in a new tab</source> |
3321 | <target state="translated">Відкрити сервер на новій вкладці</target> | 3310 | <target state="translated">Відкрити сервер на новій вкладці</target> |
@@ -3421,7 +3410,7 @@ The link will expire within 1 hour.</source> | |||
3421 | </trans-unit> | 3410 | </trans-unit> |
3422 | <trans-unit id="4145496584631696119" datatype="html"> | 3411 | <trans-unit id="4145496584631696119" datatype="html"> |
3423 | <source>Role</source> | 3412 | <source>Role</source> |
3424 | <target state="new">Role</target> | 3413 | <target state="translated">Роль</target> |
3425 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> | 3414 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> |
3426 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> | 3415 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">136</context></context-group> |
3427 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">114</context></context-group> | 3416 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context><context context-type="linenumber">114</context></context-group> |
@@ -3510,12 +3499,12 @@ The link will expire within 1 hour.</source> | |||
3510 | </trans-unit> | 3499 | </trans-unit> |
3511 | <trans-unit id="675721269041534709" datatype="html"> | 3500 | <trans-unit id="675721269041534709" datatype="html"> |
3512 | <source>The user was banned</source> | 3501 | <source>The user was banned</source> |
3513 | <target state="new">The user was banned</target> | 3502 | <target state="translated">Користувача було заблоковано</target> |
3514 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">139</context></context-group> | 3503 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">139</context></context-group> |
3515 | </trans-unit> | 3504 | </trans-unit> |
3516 | <trans-unit id="2348557406282409966" datatype="html"> | 3505 | <trans-unit id="2348557406282409966" datatype="html"> |
3517 | <source>Open account in a new tab</source> | 3506 | <source>Open account in a new tab</source> |
3518 | <target state="new">Open account in a new tab</target> | 3507 | <target state="translated">Відкрити обліковий запис у новій вкладці</target> |
3519 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">70</context></context-group> | 3508 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">70</context></context-group> |
3520 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">90</context></context-group> | 3509 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">90</context></context-group> |
3521 | <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> | 3510 | <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> |
@@ -3545,12 +3534,12 @@ The link will expire within 1 hour.</source> | |||
3545 | </trans-unit> | 3534 | </trans-unit> |
3546 | <trans-unit id="1242902302929086301" datatype="html"> | 3535 | <trans-unit id="1242902302929086301" datatype="html"> |
3547 | <source>Ban reason:</source> | 3536 | <source>Ban reason:</source> |
3548 | <target state="new">Ban reason:</target> | 3537 | <target state="translated">Причина блокування:</target> |
3549 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">156</context></context-group> | 3538 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.html</context><context context-type="linenumber">156</context></context-group> |
3550 | </trans-unit> | 3539 | </trans-unit> |
3551 | <trans-unit id="6124612368324200166" datatype="html"> | 3540 | <trans-unit id="6124612368324200166" datatype="html"> |
3552 | <source>Banned users</source> | 3541 | <source>Banned users</source> |
3553 | <target state="new">Banned users</target> | 3542 | <target state="translated">Заблоковані користувачі</target> |
3554 | <context-group purpose="location"> | 3543 | <context-group purpose="location"> |
3555 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> | 3544 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> |
3556 | <context context-type="linenumber">40</context> | 3545 | <context context-type="linenumber">40</context> |
@@ -3622,7 +3611,7 @@ The link will expire within 1 hour.</source> | |||
3622 | </trans-unit> | 3611 | </trans-unit> |
3623 | <trans-unit id="746099155736913817" datatype="html"> | 3612 | <trans-unit id="746099155736913817" datatype="html"> |
3624 | <source>Video blocks</source> | 3613 | <source>Video blocks</source> |
3625 | <target state="new">Video blocks</target> | 3614 | <target state="translated">Заблоковані відео</target> |
3626 | <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> | 3615 | <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> |
3627 | </trans-unit> | 3616 | </trans-unit> |
3628 | <trans-unit id="7815838401315213887" datatype="html"> | 3617 | <trans-unit id="7815838401315213887" datatype="html"> |
@@ -3645,7 +3634,7 @@ The link will expire within 1 hour.</source> | |||
3645 | </trans-unit> | 3634 | </trans-unit> |
3646 | <trans-unit id="3122686335401195400" datatype="html"> | 3635 | <trans-unit id="3122686335401195400" datatype="html"> |
3647 | <source>Total size</source> | 3636 | <source>Total size</source> |
3648 | <target state="new">Total size</target> | 3637 | <target state="translated">Загальний розмір</target> |
3649 | <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">30</context></context-group> | 3638 | <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">30</context></context-group> |
3650 | </trans-unit> | 3639 | </trans-unit> |
3651 | <trans-unit id="4488103364313252005" datatype="html"> | 3640 | <trans-unit id="4488103364313252005" datatype="html"> |
@@ -3700,7 +3689,7 @@ The link will expire within 1 hour.</source> | |||
3700 | </trans-unit> | 3689 | </trans-unit> |
3701 | <trans-unit id="3193976279273491157" datatype="html"> | 3690 | <trans-unit id="3193976279273491157" datatype="html"> |
3702 | <source>Actions</source> | 3691 | <source>Actions</source> |
3703 | <target state="new">Actions</target> | 3692 | <target state="translated">Дії</target> |
3704 | <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> | 3693 | <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> |
3705 | <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">45</context></context-group> | 3694 | <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">45</context></context-group> |
3706 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">65</context></context-group> | 3695 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">65</context></context-group> |
@@ -3783,7 +3772,7 @@ The link will expire within 1 hour.</source> | |||
3783 | </trans-unit> | 3772 | </trans-unit> |
3784 | <trans-unit id="4678289986918934018" datatype="html"> | 3773 | <trans-unit id="4678289986918934018" datatype="html"> |
3785 | <source>Block reason:</source> | 3774 | <source>Block reason:</source> |
3786 | <target state="new">Block reason:</target> | 3775 | <target state="translated">Причина блокування:</target> |
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">87</context></context-group> | 3776 | <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">87</context></context-group> |
3788 | </trans-unit> | 3777 | </trans-unit> |
3789 | <trans-unit id="8390860433951751429" datatype="html"> | 3778 | <trans-unit id="8390860433951751429" datatype="html"> |
@@ -3831,7 +3820,7 @@ The link will expire within 1 hour.</source> | |||
3831 | </trans-unit> | 3820 | </trans-unit> |
3832 | <trans-unit id="3981851640772035362" datatype="html"> | 3821 | <trans-unit id="3981851640772035362" datatype="html"> |
3833 | <source>Update this comment</source> | 3822 | <source>Update this comment</source> |
3834 | <target state="new">Update this comment</target> | 3823 | <target state="translated">Оновити цей коментар</target> |
3835 | <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> | 3824 | <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> |
3836 | </trans-unit> | 3825 | </trans-unit> |
3837 | <trans-unit id="730589419287534524" datatype="html"> | 3826 | <trans-unit id="730589419287534524" datatype="html"> |
@@ -3854,7 +3843,7 @@ The link will expire within 1 hour.</source> | |||
3854 | </trans-unit> | 3843 | </trans-unit> |
3855 | <trans-unit id="6549265851868599441" datatype="html"> | 3844 | <trans-unit id="6549265851868599441" datatype="html"> |
3856 | <source>Video</source> | 3845 | <source>Video</source> |
3857 | <target state="new">Video</target> | 3846 | <target state="translated">Відео</target> |
3858 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">43</context></context-group> | 3847 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">43</context></context-group> |
3859 | <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> | 3848 | <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> |
3860 | <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> | 3849 | <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> |
@@ -3862,7 +3851,7 @@ The link will expire within 1 hour.</source> | |||
3862 | </trans-unit> | 3851 | </trans-unit> |
3863 | <trans-unit id="2662644497259948010" datatype="html"> | 3852 | <trans-unit id="2662644497259948010" datatype="html"> |
3864 | <source>Comment</source> | 3853 | <source>Comment</source> |
3865 | <target state="new">Comment</target> | 3854 | <target state="translated">Коментар</target> |
3866 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">44</context></context-group> | 3855 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">44</context></context-group> |
3867 | </trans-unit> | 3856 | </trans-unit> |
3868 | <trans-unit id="1359961255805685312" datatype="html"> | 3857 | <trans-unit id="1359961255805685312" datatype="html"> |
@@ -3886,19 +3875,17 @@ The link will expire within 1 hour.</source> | |||
3886 | </trans-unit> | 3875 | </trans-unit> |
3887 | <trans-unit id="1443698606045744844" datatype="html"> | 3876 | <trans-unit id="1443698606045744844" datatype="html"> |
3888 | <source>Video was deleted</source> | 3877 | <source>Video was deleted</source> |
3889 | <target state="new">Video was deleted</target> | 3878 | <target state="translated">Відео було видалено</target> |
3890 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">89</context></context-group> | 3879 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">89</context></context-group> |
3891 | </trans-unit> | 3880 | </trans-unit> |
3892 | <trans-unit id="1530731524535521716" datatype="html"> | 3881 | <trans-unit id="1530731524535521716" datatype="html"> |
3893 | <source>Account deleted</source> | 3882 | <source>Account deleted</source> |
3894 | <target state="new"> | 3883 | <target state="translated">Обліковий запис видалено</target> |
3895 | Account deleted | ||
3896 | </target> | ||
3897 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">125</context></context-group> | 3884 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.html</context><context context-type="linenumber">125</context></context-group> |
3898 | </trans-unit> | 3885 | </trans-unit> |
3899 | <trans-unit id="1191715835847858871" datatype="html"> | 3886 | <trans-unit id="1191715835847858871" datatype="html"> |
3900 | <source>Open video in a new tab</source> | 3887 | <source>Open video in a new tab</source> |
3901 | <target state="new">Open video in a new tab</target> | 3888 | <target state="translated">Відкрити відео у новій вкладці</target> |
3902 | <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">49</context></context-group> | 3889 | <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">49</context></context-group> |
3903 | </trans-unit> | 3890 | </trans-unit> |
3904 | <trans-unit id="3301856295120048857" datatype="html"> | 3891 | <trans-unit id="3301856295120048857" datatype="html"> |
@@ -3910,12 +3897,12 @@ The link will expire within 1 hour.</source> | |||
3910 | </trans-unit> | 3897 | </trans-unit> |
3911 | <trans-unit id="6452372740127749380" datatype="html"> | 3898 | <trans-unit id="6452372740127749380" datatype="html"> |
3912 | <source>Messages</source> | 3899 | <source>Messages</source> |
3913 | <target state="new">Messages</target> | 3900 | <target state="translated">Повідомлення</target> |
3914 | <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> | 3901 | <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> |
3915 | </trans-unit> | 3902 | </trans-unit> |
3916 | <trans-unit id="1969144763032891922" datatype="html"> | 3903 | <trans-unit id="1969144763032891922" datatype="html"> |
3917 | <source>Internal note</source> | 3904 | <source>Internal note</source> |
3918 | <target state="new">Internal note</target> | 3905 | <target state="translated">Внутрішня примітка</target> |
3919 | <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> | 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">26</context></context-group> |
3920 | </trans-unit> | 3907 | </trans-unit> |
3921 | <trans-unit id="7418735164633152705" datatype="html"> | 3908 | <trans-unit id="7418735164633152705" datatype="html"> |
@@ -3986,7 +3973,7 @@ The link will expire within 1 hour.</source> | |||
3986 | </trans-unit> | 3973 | </trans-unit> |
3987 | <trans-unit id="299774363533169870" datatype="html"> | 3974 | <trans-unit id="299774363533169870" datatype="html"> |
3988 | <source>No server found.</source> | 3975 | <source>No server found.</source> |
3989 | <target state="new">No server found.</target> | 3976 | <target state="translated">Серверів не знайдено.</target> |
3990 | <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> | 3977 | <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> |
3991 | <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> | 3978 | <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> |
3992 | </trans-unit> | 3979 | </trans-unit> |
@@ -4011,7 +3998,7 @@ The link will expire within 1 hour.</source> | |||
4011 | </trans-unit> | 3998 | </trans-unit> |
4012 | <trans-unit id="4086606389696938932" datatype="html"> | 3999 | <trans-unit id="4086606389696938932" datatype="html"> |
4013 | <source>Account</source> | 4000 | <source>Account</source> |
4014 | <target state="new">Account</target> | 4001 | <target state="translated">Обліковий запис</target> |
4015 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">42</context></context-group> | 4002 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">42</context></context-group> |
4016 | <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> | 4003 | <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> |
4017 | <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> | 4004 | <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> |
@@ -4024,23 +4011,23 @@ The link will expire within 1 hour.</source> | |||
4024 | </trans-unit> | 4011 | </trans-unit> |
4025 | <trans-unit id="3819155299647062711" datatype="html"> | 4012 | <trans-unit id="3819155299647062711" datatype="html"> |
4026 | <source>No account found.</source> | 4013 | <source>No account found.</source> |
4027 | <target state="new">No account found.</target> | 4014 | <target state="translated">Облікових записів не знайдено.</target> |
4028 | <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> | 4015 | <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> |
4029 | <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> | 4016 | <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> |
4030 | </trans-unit> | 4017 | </trans-unit> |
4031 | <trans-unit id="2338185419645468935" datatype="html"> | 4018 | <trans-unit id="2338185419645468935" datatype="html"> |
4032 | <source>List installed plugins</source> | 4019 | <source>List installed plugins</source> |
4033 | <target state="new">List installed plugins</target> | 4020 | <target state="translated">Перелік установлених плагінів</target> |
4034 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">28</context></context-group> | 4021 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">28</context></context-group> |
4035 | </trans-unit> | 4022 | </trans-unit> |
4036 | <trans-unit id="8897412584195581488" datatype="html"> | 4023 | <trans-unit id="8897412584195581488" datatype="html"> |
4037 | <source>Search plugins</source> | 4024 | <source>Search plugins</source> |
4038 | <target state="new">Search plugins</target> | 4025 | <target state="translated">Пошук плагінів</target> |
4039 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">37</context></context-group> | 4026 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">37</context></context-group> |
4040 | </trans-unit> | 4027 | </trans-unit> |
4041 | <trans-unit id="4994333937800672218" datatype="html"> | 4028 | <trans-unit id="4994333937800672218" datatype="html"> |
4042 | <source>Show plugin</source> | 4029 | <source>Show plugin</source> |
4043 | <target state="new">Show plugin</target> | 4030 | <target state="translated">Показати плагіни</target> |
4044 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">46</context></context-group> | 4031 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.routes.ts</context><context context-type="linenumber">46</context></context-group> |
4045 | </trans-unit> | 4032 | </trans-unit> |
4046 | <trans-unit id="602667807232759122" datatype="html"> | 4033 | <trans-unit id="602667807232759122" datatype="html"> |
@@ -4051,17 +4038,17 @@ The link will expire within 1 hour.</source> | |||
4051 | </trans-unit> | 4038 | </trans-unit> |
4052 | <trans-unit id="8259696070728377358" datatype="html"> | 4039 | <trans-unit id="8259696070728377358" datatype="html"> |
4053 | <source>Plugins/Themes</source> | 4040 | <source>Plugins/Themes</source> |
4054 | <target state="new">Plugins/Themes</target> | 4041 | <target state="translated">Плагіни/Теми</target> |
4055 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">99</context></context-group> | 4042 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">99</context></context-group> |
4056 | </trans-unit> | 4043 | </trans-unit> |
4057 | <trans-unit id="4894835484717268716" datatype="html"> | 4044 | <trans-unit id="4894835484717268716" datatype="html"> |
4058 | <source>Installed</source> | 4045 | <source>Installed</source> |
4059 | <target state="new">Installed</target> | 4046 | <target state="translated">Установлено</target> |
4060 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">3</context></context-group> | 4047 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugins.component.html</context><context context-type="linenumber">3</context></context-group> |
4061 | </trans-unit> | 4048 | </trans-unit> |
4062 | <trans-unit id="7002061007877950198" datatype="html"> | 4049 | <trans-unit id="7002061007877950198" datatype="html"> |
4063 | <source>Plugin homepage (new window)</source> | 4050 | <source>Plugin homepage (new window)</source> |
4064 | <target state="new">Plugin homepage (new window)</target> | 4051 | <target state="translated">Домашня сторінка плагіна (нове вікно)</target> |
4065 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">40</context></context-group> | 4052 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">40</context></context-group> |
4066 | <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">17</context></context-group> | 4053 | <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">17</context></context-group> |
4067 | <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> | 4054 | <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> |
@@ -4084,7 +4071,7 @@ The link will expire within 1 hour.</source> | |||
4084 | </trans-unit> | 4071 | </trans-unit> |
4085 | <trans-unit id="5410940035535748578" datatype="html"> | 4072 | <trans-unit id="5410940035535748578" datatype="html"> |
4086 | <source>Close this message</source> | 4073 | <source>Close this message</source> |
4087 | <target state="new">Close this message</target> | 4074 | <target state="translated">Закрити це повідомлення</target> |
4088 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.html</context><context context-type="linenumber">34</context></context-group> | 4075 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.html</context><context context-type="linenumber">34</context></context-group> |
4089 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.html</context><context context-type="linenumber">34</context></context-group> | 4076 | <context-group purpose="location"><context context-type="sourcefile">src/app/app.component.html</context><context context-type="linenumber">34</context></context-group> |
4090 | </trans-unit> | 4077 | </trans-unit> |
@@ -4158,9 +4145,7 @@ The link will expire within 1 hour.</source> | |||
4158 | </trans-unit> | 4145 | </trans-unit> |
4159 | <trans-unit id="2722270956157821098" datatype="html"> | 4146 | <trans-unit id="2722270956157821098" datatype="html"> |
4160 | <source>No results.</source> | 4147 | <source>No results.</source> |
4161 | <target state="new"> | 4148 | <target state="translated">Немає результатів.</target> |
4162 | No results. | ||
4163 | </target> | ||
4164 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">29</context></context-group> | 4149 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.html</context><context context-type="linenumber">29</context></context-group> |
4165 | </trans-unit> | 4150 | </trans-unit> |
4166 | <trans-unit id="8952758850096973746" datatype="html"> | 4151 | <trans-unit id="8952758850096973746" datatype="html"> |
@@ -4179,7 +4164,7 @@ The link will expire within 1 hour.</source> | |||
4179 | </trans-unit> | 4164 | </trans-unit> |
4180 | <trans-unit id="29832309535656200" datatype="html"> | 4165 | <trans-unit id="29832309535656200" datatype="html"> |
4181 | <source>System</source> | 4166 | <source>System</source> |
4182 | <target state="new">System</target> | 4167 | <target state="translated">Система</target> |
4183 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">103</context></context-group> | 4168 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin.component.ts</context><context context-type="linenumber">103</context></context-group> |
4184 | </trans-unit> | 4169 | </trans-unit> |
4185 | <trans-unit id="3229595422546554334" datatype="html"> | 4170 | <trans-unit id="3229595422546554334" datatype="html"> |
@@ -4232,7 +4217,7 @@ The link will expire within 1 hour.</source> | |||
4232 | </trans-unit> | 4217 | </trans-unit> |
4233 | <trans-unit id="7427986413651551775" datatype="html"> | 4218 | <trans-unit id="7427986413651551775" datatype="html"> |
4234 | <source>Video comments</source> | 4219 | <source>Video comments</source> |
4235 | <target state="new">Video comments</target> | 4220 | <target state="translated">Коментарі до відео</target> |
4236 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group> | 4221 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/video-comment-list/video-comment-list.component.html</context><context context-type="linenumber">3</context></context-group> |
4237 | </trans-unit> | 4222 | </trans-unit> |
4238 | <trans-unit id="289582790179344391" datatype="html"> | 4223 | <trans-unit id="289582790179344391" datatype="html"> |
@@ -4673,7 +4658,7 @@ The link will expire within 1 hour.</source> | |||
4673 | </trans-unit> | 4658 | </trans-unit> |
4674 | <trans-unit id="4555457172864212828" datatype="html"> | 4659 | <trans-unit id="4555457172864212828" datatype="html"> |
4675 | <source>Users</source> | 4660 | <source>Users</source> |
4676 | <target state="new">Users</target> | 4661 | <target state="translated">Користувачі</target> |
4677 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group> | 4662 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/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/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group> | 4663 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">4</context></context-group> |
4679 | </trans-unit> | 4664 | </trans-unit> |
@@ -4691,7 +4676,7 @@ The link will expire within 1 hour.</source> | |||
4691 | </trans-unit> | 4676 | </trans-unit> |
4692 | <trans-unit id="407487463718398437" datatype="html"> | 4677 | <trans-unit id="407487463718398437" datatype="html"> |
4693 | <source>{VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} }</source> | 4678 | <source>{VAR_PLURAL, plural, =1 {Subscriber} other {Subscribers} }</source> |
4694 | <target state="translated">{VAR_PLURAL, plural, =1 {підписник} few {підписники} many {підписників} other {підписників} }</target> | 4679 | <target state="translated">{VAR_PLURAL, plural, =1 {підписник} few {підписники} many {підписників} other {підписника} }</target> |
4695 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">36</context></context-group> | 4680 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">36</context></context-group> |
4696 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">36</context></context-group> | 4681 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">36</context></context-group> |
4697 | </trans-unit> | 4682 | </trans-unit> |
@@ -4721,7 +4706,7 @@ The link will expire within 1 hour.</source> | |||
4721 | </trans-unit> | 4706 | </trans-unit> |
4722 | <trans-unit id="3008420115644088420" datatype="html"> | 4707 | <trans-unit id="3008420115644088420" datatype="html"> |
4723 | <source>Configuration</source> | 4708 | <source>Configuration</source> |
4724 | <target state="new">Configuration</target> | 4709 | <target state="translated">Конфігурація</target> |
4725 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">1</context></context-group> | 4710 | <context-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> |
4726 | </trans-unit> | 4711 | </trans-unit> |
4727 | <trans-unit id="502260296951057925" datatype="html"> | 4712 | <trans-unit id="502260296951057925" datatype="html"> |
@@ -4874,8 +4859,8 @@ The link will expire within 1 hour.</source> | |||
4874 | <trans-unit id="2149300564474427551" datatype="html"> | 4859 | <trans-unit id="2149300564474427551" datatype="html"> |
4875 | <source>Administrator</source> | 4860 | <source>Administrator</source> |
4876 | <target state="translated">Адміністратор</target> | 4861 | <target state="translated">Адміністратор</target> |
4877 | 4862 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group> | |
4878 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group></trans-unit> | 4863 | </trans-unit> |
4879 | <trans-unit id="3171683206914962995" datatype="html"> | 4864 | <trans-unit id="3171683206914962995" datatype="html"> |
4880 | <source>Admin email</source> | 4865 | <source>Admin email</source> |
4881 | <target state="translated">Е-пошта адміністратора</target> | 4866 | <target state="translated">Е-пошта адміністратора</target> |
@@ -5445,8 +5430,6 @@ color: red; | |||
5445 | <context context-type="linenumber">66</context> | 5430 | <context context-type="linenumber">66</context> |
5446 | </context-group> | 5431 | </context-group> |
5447 | </trans-unit> | 5432 | </trans-unit> |
5448 | |||
5449 | |||
5450 | <trans-unit id="5723033003381016192" datatype="html"> | 5433 | <trans-unit id="5723033003381016192" datatype="html"> |
5451 | <source>Scope:</source> | 5434 | <source>Scope:</source> |
5452 | <target state="new">Scope:</target> | 5435 | <target state="new">Scope:</target> |
@@ -5455,7 +5438,6 @@ color: red; | |||
5455 | <context context-type="linenumber">81</context> | 5438 | <context context-type="linenumber">81</context> |
5456 | </context-group> | 5439 | </context-group> |
5457 | </trans-unit> | 5440 | </trans-unit> |
5458 | |||
5459 | <trans-unit id="8481241275509347668" datatype="html"> | 5441 | <trans-unit id="8481241275509347668" datatype="html"> |
5460 | <source>Local videos (this instance)</source> | 5442 | <source>Local videos (this instance)</source> |
5461 | <target state="new">Local videos (this instance)</target> | 5443 | <target state="new">Local videos (this instance)</target> |
@@ -5464,7 +5446,6 @@ color: red; | |||
5464 | <context context-type="linenumber">85</context> | 5446 | <context context-type="linenumber">85</context> |
5465 | </context-group> | 5447 | </context-group> |
5466 | </trans-unit> | 5448 | </trans-unit> |
5467 | |||
5468 | <trans-unit id="8383401711408398806" datatype="html"> | 5449 | <trans-unit id="8383401711408398806" datatype="html"> |
5469 | <source>Federated videos (this instance + followed instances)</source> | 5450 | <source>Federated videos (this instance + followed instances)</source> |
5470 | <target state="new">Federated videos (this instance + followed instances)</target> | 5451 | <target state="new">Federated videos (this instance + followed instances)</target> |
@@ -5489,7 +5470,6 @@ color: red; | |||
5489 | <context context-type="linenumber">99</context> | 5470 | <context context-type="linenumber">99</context> |
5490 | </context-group> | 5471 | </context-group> |
5491 | </trans-unit> | 5472 | </trans-unit> |
5492 | |||
5493 | <trans-unit id="1370537846415473089" datatype="html"> | 5473 | <trans-unit id="1370537846415473089" datatype="html"> |
5494 | <source>Categories:</source> | 5474 | <source>Categories:</source> |
5495 | <target state="new">Categories:</target> | 5475 | <target state="new">Categories:</target> |
@@ -5721,9 +5701,7 @@ color: red; | |||
5721 | </trans-unit> | 5701 | </trans-unit> |
5722 | <trans-unit id="5500467336262464724" datatype="html"> | 5702 | <trans-unit id="5500467336262464724" datatype="html"> |
5723 | <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers </source> | 5703 | <source><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers </source> |
5724 | <target state="new"> | 5704 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> підписників </target> |
5725 | <x id="INTERPOLATION" equiv-text="{{ videoChannel.followersCount }}"/> subscribers | ||
5726 | </target> | ||
5727 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">25</context></context-group> | 5705 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-subscriptions/my-subscriptions.component.html</context><context context-type="linenumber">25</context></context-group> |
5728 | </trans-unit> | 5706 | </trans-unit> |
5729 | <trans-unit id="626184983378002054" datatype="html"> | 5707 | <trans-unit id="626184983378002054" datatype="html"> |
@@ -5766,9 +5744,7 @@ color: red; | |||
5766 | </trans-unit> | 5744 | </trans-unit> |
5767 | <trans-unit id="5500467336262464724" datatype="html"> | 5745 | <trans-unit id="5500467336262464724" datatype="html"> |
5768 | <source><x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> subscribers </source> | 5746 | <source><x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> subscribers </source> |
5769 | <target state="new"> | 5747 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> підписників </target> |
5770 | <x id="INTERPOLATION" equiv-text="{{ actor.followersCount }}"/> subscribers | ||
5771 | </target> | ||
5772 | <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> | 5748 | <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> |
5773 | </trans-unit> | 5749 | </trans-unit> |
5774 | <trans-unit id="31472093355465024" datatype="html"> | 5750 | <trans-unit id="31472093355465024" datatype="html"> |
@@ -6159,14 +6135,14 @@ color: red; | |||
6159 | </trans-unit> | 6135 | </trans-unit> |
6160 | <trans-unit id="403587185492002456" datatype="html"> | 6136 | <trans-unit id="403587185492002456" datatype="html"> |
6161 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> | 6137 | <source>{VAR_PLURAL, plural, =1 {1 subscriber} other {<x id="INTERPOLATION"/> subscribers}}</source> |
6162 | <target state="translated">{VAR_PLURAL, plural, =1 {1 підписник} few {<x id="INTERPOLATION"/> підписники}} many {<x id="INTERPOLATION"/> підписників}} other {<x id="INTERPOLATION"/> підписників}}</target> | 6138 | <target state="translated">{VAR_PLURAL, plural, =1 {1 підписник} few {<x id="INTERPOLATION"/> підписники} many {<x id="INTERPOLATION"/> підписників} other {<x id="INTERPOLATION"/> підписника}}</target> |
6163 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">23</context></context-group> | 6139 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/account-video-channels/account-video-channels.component.html</context><context context-type="linenumber">23</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">28</context></context-group> | 6140 | <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">28</context></context-group> |
6165 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">73</context></context-group> | 6141 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.html</context><context context-type="linenumber">73</context></context-group> |
6166 | </trans-unit> | 6142 | </trans-unit> |
6167 | <trans-unit id="3068011377000255023" datatype="html"> | 6143 | <trans-unit id="3068011377000255023" datatype="html"> |
6168 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> | 6144 | <source>{VAR_PLURAL, plural, =1 {1 videos} other {<x id="INTERPOLATION"/> videos}}</source> |
6169 | <target state="translated">{VAR_PLURAL, plural, =1 {1 відео} other {<x id="INTERPOLATION"/> відео}}</target> | 6145 | <target state="translated">{VAR_PLURAL, plural, =1 {1 відео} few {<x id="INTERPOLATION"/> відео} many {<x id="INTERPOLATION"/> відео} other {<x id="INTERPOLATION"/> відео}}</target> |
6170 | <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> | 6146 | <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> |
6171 | </trans-unit> | 6147 | </trans-unit> |
6172 | <trans-unit id="8856905278208146821" datatype="html"> | 6148 | <trans-unit id="8856905278208146821" datatype="html"> |
@@ -6735,25 +6711,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6735 | </trans-unit> | 6711 | </trans-unit> |
6736 | <trans-unit id="8583412279916132438" datatype="html"> | 6712 | <trans-unit id="8583412279916132438" datatype="html"> |
6737 | <source>Channel display name</source> | 6713 | <source>Channel display name</source> |
6738 | <target state="new">Channel display name</target> | 6714 | <target state="translated">Показувана назва каналу</target> |
6739 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">15</context></context-group> | 6715 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">15</context></context-group> |
6740 | </trans-unit> | 6716 | </trans-unit> |
6741 | <trans-unit id="6980413875907286634" datatype="html"> | 6717 | <trans-unit id="6980413875907286634" datatype="html"> |
6742 | <source>Channel name</source> | 6718 | <source>Channel name</source> |
6743 | <target state="new">Channel name</target> | 6719 | <target state="translated">Назва каналу</target> |
6744 | <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> | 6720 | <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> |
6745 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">94</context></context-group> | 6721 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">94</context></context-group> |
6746 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">94</context></context-group> | 6722 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">94</context></context-group> |
6747 | </trans-unit> | 6723 | </trans-unit> |
6748 | <trans-unit id="8463487834152954723" datatype="html"> | 6724 | <trans-unit id="8463487834152954723" datatype="html"> |
6749 | <source>john_channel</source> | 6725 | <source>john_channel</source> |
6750 | <target state="new">john_channel</target> | 6726 | <target state="translated">максим_канал</target> |
6751 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">96</context></context-group> | 6727 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">96</context></context-group> |
6752 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">96</context></context-group> | 6728 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">96</context></context-group> |
6753 | </trans-unit> | 6729 | </trans-unit> |
6754 | <trans-unit id="7901486036096751355" datatype="html"> | 6730 | <trans-unit id="7901486036096751355" datatype="html"> |
6755 | <source>Example: my_super_channel</source> | 6731 | <source>Example: my_super_channel</source> |
6756 | <target state="new">Example: my_super_channel</target> | 6732 | <target state="translated">Приклад: my_super_channel</target> |
6757 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">34</context></context-group> | 6733 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register-step-channel.component.html</context><context context-type="linenumber">34</context></context-group> |
6758 | </trans-unit> | 6734 | </trans-unit> |
6759 | <trans-unit id="7981235640417633362" datatype="html"> | 6735 | <trans-unit id="7981235640417633362" datatype="html"> |
@@ -6813,7 +6789,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6813 | </trans-unit> | 6789 | </trans-unit> |
6814 | <trans-unit id="4605517634011438234" datatype="html"> | 6790 | <trans-unit id="4605517634011438234" datatype="html"> |
6815 | <source>ACCOUNT</source> | 6791 | <source>ACCOUNT</source> |
6816 | <target state="new">ACCOUNT</target> | 6792 | <target state="translated">ОБЛІКОВИЙ ЗАПИС</target> |
6817 | <context-group purpose="location"> | 6793 | <context-group purpose="location"> |
6818 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> | 6794 | <context context-type="sourcefile">src/app/+accounts/accounts.component.html</context> |
6819 | <context context-type="linenumber">8</context> | 6795 | <context context-type="linenumber">8</context> |
@@ -6832,8 +6808,8 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6832 | <trans-unit id="784681343382270982" datatype="html"> | 6808 | <trans-unit id="784681343382270982" datatype="html"> |
6833 | <source>Remove this filter</source> | 6809 | <source>Remove this filter</source> |
6834 | <target state="new">Remove this filter</target> | 6810 | <target state="new">Remove this filter</target> |
6835 | 6811 | <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> | |
6836 | <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> | 6812 | </trans-unit> |
6837 | <trans-unit id="5254305728396198887" datatype="html"> | 6813 | <trans-unit id="5254305728396198887" datatype="html"> |
6838 | <source>Sensitive content</source> | 6814 | <source>Sensitive content</source> |
6839 | <target state="new">Sensitive content</target> | 6815 | <target state="new">Sensitive content</target> |
@@ -6851,37 +6827,37 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6851 | </trans-unit> | 6827 | </trans-unit> |
6852 | <trans-unit id="1949800099101277248" datatype="html"> | 6828 | <trans-unit id="1949800099101277248" datatype="html"> |
6853 | <source>Languages</source> | 6829 | <source>Languages</source> |
6854 | <target state="new">Languages</target> | 6830 | <target state="translated">Мови</target> |
6855 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">132</context></context-group> | 6831 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">132</context></context-group> |
6856 | </trans-unit> | 6832 | </trans-unit> |
6857 | <trans-unit id="1902100407096396858" datatype="html"> | 6833 | <trans-unit id="1902100407096396858" datatype="html"> |
6858 | <source>Categories</source> | 6834 | <source>Categories</source> |
6859 | <target state="new">Categories</target> | 6835 | <target state="translated">Категорії</target> |
6860 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">141</context></context-group> | 6836 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">141</context></context-group> |
6861 | </trans-unit> | 6837 | </trans-unit> |
6862 | <trans-unit id="3599150758014724057" datatype="html"> | 6838 | <trans-unit id="3599150758014724057" datatype="html"> |
6863 | <source>All videos</source> | 6839 | <source>All videos</source> |
6864 | <target state="new">All videos</target> | 6840 | <target state="translated">Усі відео</target> |
6865 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">150</context></context-group> | 6841 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">150</context></context-group> |
6866 | </trans-unit> | 6842 | </trans-unit> |
6867 | <trans-unit id="8466337030143068285" datatype="html"> | 6843 | <trans-unit id="8466337030143068285" datatype="html"> |
6868 | <source>Blurred</source> | 6844 | <source>Blurred</source> |
6869 | <target state="new">Blurred</target> | 6845 | <target state="translated">Розмито</target> |
6870 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">225</context></context-group> | 6846 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">225</context></context-group> |
6871 | </trans-unit> | 6847 | </trans-unit> |
6872 | <trans-unit id="7054829409324166420" datatype="html"> | 6848 | <trans-unit id="7054829409324166420" datatype="html"> |
6873 | <source>hidden</source> | 6849 | <source>hidden</source> |
6874 | <target state="new">hidden</target> | 6850 | <target state="translated">сховано</target> |
6875 | <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> | 6851 | <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> |
6876 | </trans-unit> | 6852 | </trans-unit> |
6877 | <trans-unit id="5766954855630346873" datatype="html"> | 6853 | <trans-unit id="5766954855630346873" datatype="html"> |
6878 | <source>blurred</source> | 6854 | <source>blurred</source> |
6879 | <target state="new">blurred</target> | 6855 | <target state="translated">розмито</target> |
6880 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">232</context></context-group> | 6856 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">232</context></context-group> |
6881 | </trans-unit> | 6857 | </trans-unit> |
6882 | <trans-unit id="1833483831276078393" datatype="html"> | 6858 | <trans-unit id="1833483831276078393" datatype="html"> |
6883 | <source>displayed</source> | 6859 | <source>displayed</source> |
6884 | <target state="new">displayed</target> | 6860 | <target state="translated">показано</target> |
6885 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">234</context></context-group> | 6861 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">234</context></context-group> |
6886 | </trans-unit> | 6862 | </trans-unit> |
6887 | <trans-unit id="4856575356061361269" datatype="html"> | 6863 | <trans-unit id="4856575356061361269" datatype="html"> |
@@ -6915,7 +6891,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6915 | </trans-unit> | 6891 | </trans-unit> |
6916 | <trans-unit id="4097331874769079975" datatype="html"> | 6892 | <trans-unit id="4097331874769079975" datatype="html"> |
6917 | <source><x id="PH"/> subscribers</source> | 6893 | <source><x id="PH"/> subscribers</source> |
6918 | <target state="translated"><x id="PH"/> підписник</target> | 6894 | <target state="translated"><x id="PH"/> підписникі</target> |
6919 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">126</context></context-group> | 6895 | <context-group purpose="location"><context context-type="sourcefile">src/app/+accounts/accounts.component.ts</context><context context-type="linenumber">126</context></context-group> |
6920 | </trans-unit> | 6896 | </trans-unit> |
6921 | <trans-unit id="1035838766454786107" datatype="html"> | 6897 | <trans-unit id="1035838766454786107" datatype="html"> |
@@ -6930,42 +6906,42 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6930 | </trans-unit> | 6906 | </trans-unit> |
6931 | <trans-unit id="3768852440495368591" datatype="html"> | 6907 | <trans-unit id="3768852440495368591" datatype="html"> |
6932 | <source>240p</source> | 6908 | <source>240p</source> |
6933 | <target state="new">240p</target> | 6909 | <target state="translated">240p</target> |
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">22</context></context-group> | 6910 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-configuration.service.ts</context><context context-type="linenumber">22</context></context-group> |
6935 | </trans-unit> | 6911 | </trans-unit> |
6936 | <trans-unit id="6824490596490222280" datatype="html"> | 6912 | <trans-unit id="6824490596490222280" datatype="html"> |
6937 | <source>360p</source> | 6913 | <source>360p</source> |
6938 | <target state="new">360p</target> | 6914 | <target state="translated">360p</target> |
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">26</context></context-group> | 6915 | <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> |
6940 | </trans-unit> | 6916 | </trans-unit> |
6941 | <trans-unit id="4039682741786530029" datatype="html"> | 6917 | <trans-unit id="4039682741786530029" datatype="html"> |
6942 | <source>480p</source> | 6918 | <source>480p</source> |
6943 | <target state="new">480p</target> | 6919 | <target state="translated">480p</target> |
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">30</context></context-group> | 6920 | <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> |
6945 | </trans-unit> | 6921 | </trans-unit> |
6946 | <trans-unit id="5165245100010036661" datatype="html"> | 6922 | <trans-unit id="5165245100010036661" datatype="html"> |
6947 | <source>720p</source> | 6923 | <source>720p</source> |
6948 | <target state="new">720p</target> | 6924 | <target state="translated">720p</target> |
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">34</context></context-group> | 6925 | <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> |
6950 | </trans-unit> | 6926 | </trans-unit> |
6951 | <trans-unit id="7709767791012306261" datatype="html"> | 6927 | <trans-unit id="7709767791012306261" datatype="html"> |
6952 | <source>1080p</source> | 6928 | <source>1080p</source> |
6953 | <target state="new">1080p</target> | 6929 | <target state="translated">1080p</target> |
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">38</context></context-group> | 6930 | <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> |
6955 | </trans-unit> | 6931 | </trans-unit> |
6956 | <trans-unit id="3671005503070777897" datatype="html"> | 6932 | <trans-unit id="3671005503070777897" datatype="html"> |
6957 | <source>1440p</source> | 6933 | <source>1440p</source> |
6958 | <target state="new">1440p</target> | 6934 | <target state="translated">1440p</target> |
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">42</context></context-group> | 6935 | <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> |
6960 | </trans-unit> | 6936 | </trans-unit> |
6961 | <trans-unit id="597839553814574067" datatype="html"> | 6937 | <trans-unit id="597839553814574067" datatype="html"> |
6962 | <source>2160p</source> | 6938 | <source>2160p</source> |
6963 | <target state="new">2160p</target> | 6939 | <target state="translated">2160p</target> |
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">46</context></context-group> | 6940 | <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> |
6965 | </trans-unit> | 6941 | </trans-unit> |
6966 | <trans-unit id="3957742085471141221" datatype="html"> | 6942 | <trans-unit id="3957742085471141221" datatype="html"> |
6967 | <source>Auto (via ffmpeg)</source> | 6943 | <source>Auto (via ffmpeg)</source> |
6968 | <target state="new">Auto (via ffmpeg)</target> | 6944 | <target state="translated">Авто (через ffmpeg)</target> |
6969 | <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> | 6945 | <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> |
6970 | </trans-unit> | 6946 | </trans-unit> |
6971 | <trans-unit id="3642770981085338761" datatype="html"> | 6947 | <trans-unit id="3642770981085338761" datatype="html"> |
@@ -6983,22 +6959,22 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6983 | </trans-unit> | 6959 | </trans-unit> |
6984 | <trans-unit id="5250062810079582285" datatype="html"> | 6960 | <trans-unit id="5250062810079582285" datatype="html"> |
6985 | <source>1 hour</source> | 6961 | <source>1 hour</source> |
6986 | <target state="new">1 hour</target> | 6962 | <target state="translated">1 година</target> |
6987 | <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> | 6963 | <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> |
6988 | </trans-unit> | 6964 | </trans-unit> |
6989 | <trans-unit id="8662356672298904015" datatype="html"> | 6965 | <trans-unit id="8662356672298904015" datatype="html"> |
6990 | <source>3 hours</source> | 6966 | <source>3 hours</source> |
6991 | <target state="new">3 hours</target> | 6967 | <target state="translated">3 години</target> |
6992 | <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> | 6968 | <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> |
6993 | </trans-unit> | 6969 | </trans-unit> |
6994 | <trans-unit id="1794624538833178491" datatype="html"> | 6970 | <trans-unit id="1794624538833178491" datatype="html"> |
6995 | <source>5 hours</source> | 6971 | <source>5 hours</source> |
6996 | <target state="new">5 hours</target> | 6972 | <target state="translated">5 годин</target> |
6997 | <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> | 6973 | <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> |
6998 | </trans-unit> | 6974 | </trans-unit> |
6999 | <trans-unit id="4941148355486671862" datatype="html"> | 6975 | <trans-unit id="4941148355486671862" datatype="html"> |
7000 | <source>10 hours</source> | 6976 | <source>10 hours</source> |
7001 | <target state="new">10 hours</target> | 6977 | <target state="translated">10 годин</target> |
7002 | <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> | 6978 | <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> |
7003 | </trans-unit> | 6979 | </trans-unit> |
7004 | <trans-unit id="6659155428791414865" datatype="html"> | 6980 | <trans-unit id="6659155428791414865" datatype="html"> |
@@ -7051,7 +7027,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7051 | </trans-unit> | 7027 | </trans-unit> |
7052 | <trans-unit id="1305357231288135414" datatype="html"> | 7028 | <trans-unit id="1305357231288135414" datatype="html"> |
7053 | <source>Homepage</source> | 7029 | <source>Homepage</source> |
7054 | <target state="new">Homepage</target> | 7030 | <target state="translated">Домашня сторінка</target> |
7055 | <context-group purpose="location"> | 7031 | <context-group purpose="location"> |
7056 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 7032 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
7057 | <context context-type="linenumber">7</context> | 7033 | <context context-type="linenumber">7</context> |
@@ -7063,7 +7039,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7063 | </trans-unit> | 7039 | </trans-unit> |
7064 | <trans-unit id="5037437391296624618" datatype="html"> | 7040 | <trans-unit id="5037437391296624618" datatype="html"> |
7065 | <source>Information</source> | 7041 | <source>Information</source> |
7066 | <target state="new">Information</target> | 7042 | <target state="translated">Інформація</target> |
7067 | <context-group purpose="location"> | 7043 | <context-group purpose="location"> |
7068 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> | 7044 | <context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-custom-config.component.html</context> |
7069 | <context context-type="linenumber">15</context> | 7045 | <context context-type="linenumber">15</context> |
@@ -7079,7 +7055,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7079 | </trans-unit> | 7055 | </trans-unit> |
7080 | <trans-unit id="2060042292048624940" datatype="html"> | 7056 | <trans-unit id="2060042292048624940" datatype="html"> |
7081 | <source>Configuration updated.</source> | 7057 | <source>Configuration updated.</source> |
7082 | <target state="new">Configuration updated.</target> | 7058 | <target state="translated">Конфігурацію оновлено.</target> |
7083 | <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">286</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">286</context></context-group> |
7084 | </trans-unit> | 7060 | </trans-unit> |
7085 | <trans-unit id="6920964195632624609" datatype="html"> | 7061 | <trans-unit id="6920964195632624609" datatype="html"> |
@@ -7178,42 +7154,42 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7178 | </trans-unit> | 7154 | </trans-unit> |
7179 | <trans-unit id="616370606803836610" datatype="html"> | 7155 | <trans-unit id="616370606803836610" datatype="html"> |
7180 | <source>100MB</source> | 7156 | <source>100MB</source> |
7181 | <target state="new">100MB</target> | 7157 | <target state="translated">100МБ</target> |
7182 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">24</context></context-group> | 7158 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">24</context></context-group> |
7183 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">40</context></context-group> | 7159 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">40</context></context-group> |
7184 | </trans-unit> | 7160 | </trans-unit> |
7185 | <trans-unit id="9162997081789455476" datatype="html"> | 7161 | <trans-unit id="9162997081789455476" datatype="html"> |
7186 | <source>500MB</source> | 7162 | <source>500MB</source> |
7187 | <target state="new">500MB</target> | 7163 | <target state="translated">500МБ</target> |
7188 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">25</context></context-group> | 7164 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">25</context></context-group> |
7189 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">41</context></context-group> | 7165 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">41</context></context-group> |
7190 | </trans-unit> | 7166 | </trans-unit> |
7191 | <trans-unit id="1541266817985876981" datatype="html"> | 7167 | <trans-unit id="1541266817985876981" datatype="html"> |
7192 | <source>1GB</source> | 7168 | <source>1GB</source> |
7193 | <target state="new">1GB</target> | 7169 | <target state="translated">1ГБ</target> |
7194 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">26</context></context-group> | 7170 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">26</context></context-group> |
7195 | </trans-unit> | 7171 | </trans-unit> |
7196 | <trans-unit id="6075751004411938819" datatype="html"> | 7172 | <trans-unit id="6075751004411938819" datatype="html"> |
7197 | <source>5GB</source> | 7173 | <source>5GB</source> |
7198 | <target state="new">5GB</target> | 7174 | <target state="translated">5ГБ</target> |
7199 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">27</context></context-group> | 7175 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">27</context></context-group> |
7200 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">43</context></context-group> | 7176 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">43</context></context-group> |
7201 | </trans-unit> | 7177 | </trans-unit> |
7202 | <trans-unit id="246811372655482890" datatype="html"> | 7178 | <trans-unit id="246811372655482890" datatype="html"> |
7203 | <source>20GB</source> | 7179 | <source>20GB</source> |
7204 | <target state="new">20GB</target> | 7180 | <target state="translated">20ГБ</target> |
7205 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">28</context></context-group> | 7181 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">28</context></context-group> |
7206 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">45</context></context-group> | 7182 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">45</context></context-group> |
7207 | </trans-unit> | 7183 | </trans-unit> |
7208 | <trans-unit id="2491910291056632032" datatype="html"> | 7184 | <trans-unit id="2491910291056632032" datatype="html"> |
7209 | <source>50GB</source> | 7185 | <source>50GB</source> |
7210 | <target state="new">50GB</target> | 7186 | <target state="translated">50ГБ</target> |
7211 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">29</context></context-group> | 7187 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">29</context></context-group> |
7212 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">46</context></context-group> | 7188 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">46</context></context-group> |
7213 | </trans-unit> | 7189 | </trans-unit> |
7214 | <trans-unit id="5514849824631859021" datatype="html"> | 7190 | <trans-unit id="5514849824631859021" datatype="html"> |
7215 | <source>100GB</source> | 7191 | <source>100GB</source> |
7216 | <target state="new">100GB</target> | 7192 | <target state="translated">100ГБ</target> |
7217 | <context-group purpose="location"> | 7193 | <context-group purpose="location"> |
7218 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> | 7194 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> |
7219 | <context context-type="linenumber">30</context> | 7195 | <context context-type="linenumber">30</context> |
@@ -7221,7 +7197,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7221 | </trans-unit> | 7197 | </trans-unit> |
7222 | <trans-unit id="8245180845645676506" datatype="html"> | 7198 | <trans-unit id="8245180845645676506" datatype="html"> |
7223 | <source>200GB</source> | 7199 | <source>200GB</source> |
7224 | <target state="new">200GB</target> | 7200 | <target state="translated">200ГБ</target> |
7225 | <context-group purpose="location"> | 7201 | <context-group purpose="location"> |
7226 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> | 7202 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> |
7227 | <context context-type="linenumber">31</context> | 7203 | <context context-type="linenumber">31</context> |
@@ -7229,7 +7205,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7229 | </trans-unit> | 7205 | </trans-unit> |
7230 | <trans-unit id="5468089754278798237" datatype="html"> | 7206 | <trans-unit id="5468089754278798237" datatype="html"> |
7231 | <source>500GB</source> | 7207 | <source>500GB</source> |
7232 | <target state="new">500GB</target> | 7208 | <target state="translated">500ГБ</target> |
7233 | <context-group purpose="location"> | 7209 | <context-group purpose="location"> |
7234 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> | 7210 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> |
7235 | <context context-type="linenumber">32</context> | 7211 | <context context-type="linenumber">32</context> |
@@ -7237,22 +7213,22 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7237 | </trans-unit> | 7213 | </trans-unit> |
7238 | <trans-unit id="3977630500122496087" datatype="html"> | 7214 | <trans-unit id="3977630500122496087" datatype="html"> |
7239 | <source>10MB</source> | 7215 | <source>10MB</source> |
7240 | <target state="new">10MB</target> | 7216 | <target state="translated">10МБ</target> |
7241 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">38</context></context-group> | 7217 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">38</context></context-group> |
7242 | </trans-unit> | 7218 | </trans-unit> |
7243 | <trans-unit id="2060593120571755546" datatype="html"> | 7219 | <trans-unit id="2060593120571755546" datatype="html"> |
7244 | <source>50MB</source> | 7220 | <source>50MB</source> |
7245 | <target state="new">50MB</target> | 7221 | <target state="translated">50МБ</target> |
7246 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">39</context></context-group> | 7222 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">39</context></context-group> |
7247 | </trans-unit> | 7223 | </trans-unit> |
7248 | <trans-unit id="7653028819867308249" datatype="html"> | 7224 | <trans-unit id="7653028819867308249" datatype="html"> |
7249 | <source>2GB</source> | 7225 | <source>2GB</source> |
7250 | <target state="new">2GB</target> | 7226 | <target state="translated">2ГБ</target> |
7251 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">42</context></context-group> | 7227 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context><context context-type="linenumber">42</context></context-group> |
7252 | </trans-unit> | 7228 | </trans-unit> |
7253 | <trans-unit id="7641416475804061087" datatype="html"> | 7229 | <trans-unit id="7641416475804061087" datatype="html"> |
7254 | <source>10GB</source> | 7230 | <source>10GB</source> |
7255 | <target state="new">10GB</target> | 7231 | <target state="translated">10ГБ</target> |
7256 | <context-group purpose="location"> | 7232 | <context-group purpose="location"> |
7257 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> | 7233 | <context context-type="sourcefile">src/app/+admin/config/shared/config.service.ts</context> |
7258 | <context context-type="linenumber">44</context> | 7234 | <context context-type="linenumber">44</context> |
@@ -7382,12 +7358,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7382 | </trans-unit> | 7358 | </trans-unit> |
7383 | <trans-unit id="2593763089859685916" datatype="html"> | 7359 | <trans-unit id="2593763089859685916" datatype="html"> |
7384 | <source>enabled</source> | 7360 | <source>enabled</source> |
7385 | <target state="new">enabled</target> | 7361 | <target state="translated">увімкнено</target> |
7386 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">23</context></context-group> | 7362 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">23</context></context-group> |
7387 | </trans-unit> | 7363 | </trans-unit> |
7388 | <trans-unit id="8444272719785117681" datatype="html"> | 7364 | <trans-unit id="8444272719785117681" datatype="html"> |
7389 | <source>disabled</source> | 7365 | <source>disabled</source> |
7390 | <target state="new">disabled</target> | 7366 | <target state="translated">вимкнено</target> |
7391 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">23</context></context-group> | 7367 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/shared/redundancy-checkbox.component.ts</context><context context-type="linenumber">23</context></context-group> |
7392 | </trans-unit> | 7368 | </trans-unit> |
7393 | <trans-unit id="135214224090612796" datatype="html"> | 7369 | <trans-unit id="135214224090612796" datatype="html"> |
@@ -7397,12 +7373,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7397 | </trans-unit> | 7373 | </trans-unit> |
7398 | <trans-unit id="81585474102700882" datatype="html"> | 7374 | <trans-unit id="81585474102700882" datatype="html"> |
7399 | <source>Used</source> | 7375 | <source>Used</source> |
7400 | <target state="new">Used</target> | 7376 | <target state="translated">Використано</target> |
7401 | <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">102</context></context-group> | 7377 | <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">102</context></context-group> |
7402 | </trans-unit> | 7378 | </trans-unit> |
7403 | <trans-unit id="3955868613858648955" datatype="html"> | 7379 | <trans-unit id="3955868613858648955" datatype="html"> |
7404 | <source>Available</source> | 7380 | <source>Available</source> |
7405 | <target state="new">Available</target> | 7381 | <target state="translated">Доступно</target> |
7406 | <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">102</context></context-group> | 7382 | <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">102</context></context-group> |
7407 | </trans-unit> | 7383 | </trans-unit> |
7408 | <trans-unit id="5875705095657098468" datatype="html"> | 7384 | <trans-unit id="5875705095657098468" datatype="html"> |
@@ -7482,24 +7458,24 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7482 | </trans-unit> | 7458 | </trans-unit> |
7483 | <trans-unit id="3776575731053010580" datatype="html"> | 7459 | <trans-unit id="3776575731053010580" datatype="html"> |
7484 | <source>Server rules</source> | 7460 | <source>Server rules</source> |
7485 | <target state="new">Server rules</target> | 7461 | <target state="translated">Правила сервера</target> |
7486 | <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> | 7462 | <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> |
7487 | </trans-unit> | 7463 | </trans-unit> |
7488 | <trans-unit id="6907161397537530258" datatype="html"> | 7464 | <trans-unit id="6907161397537530258" datatype="html"> |
7489 | <source>Thumbnails</source> | 7465 | <source>Thumbnails</source> |
7490 | <target state="new">Thumbnails</target> | 7466 | <target state="translated">Мініатюри</target> |
7491 | <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> | 7467 | <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> |
7492 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">176</context></context-group> | 7468 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/abuse.service.ts</context><context context-type="linenumber">176</context></context-group> |
7493 | </trans-unit> | 7469 | </trans-unit> |
7494 | <trans-unit id="6473213678768782133" datatype="html"> | 7470 | <trans-unit id="6473213678768782133" datatype="html"> |
7495 | <source>Internal actions</source> | 7471 | <source>Internal actions</source> |
7496 | <target state="new">Internal actions</target> | 7472 | <target state="translated">Внутрішні дії</target> |
7497 | <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">56</context></context-group> | 7473 | <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">56</context></context-group> |
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">256</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">256</context></context-group> |
7499 | </trans-unit> | 7475 | </trans-unit> |
7500 | <trans-unit id="4559872264406386913" datatype="html"> | 7476 | <trans-unit id="4559872264406386913" datatype="html"> |
7501 | <source>Delete report</source> | 7477 | <source>Delete report</source> |
7502 | <target state="new">Delete report</target> | 7478 | <target state="translated">Видалити скаргу</target> |
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">287</context></context-group> | 7479 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">287</context></context-group> |
7504 | </trans-unit> | 7480 | </trans-unit> |
7505 | <trans-unit id="5793550984155962433" datatype="html"> | 7481 | <trans-unit id="5793550984155962433" datatype="html"> |
@@ -7530,23 +7506,23 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7530 | </trans-unit> | 7506 | </trans-unit> |
7531 | <trans-unit id="3924877328520650445" datatype="html"> | 7507 | <trans-unit id="3924877328520650445" datatype="html"> |
7532 | <source>Block video</source> | 7508 | <source>Block video</source> |
7533 | <target state="new">Block video</target> | 7509 | <target state="translated">Заблокувати відео</target> |
7534 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">351</context></context-group> | 7510 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">351</context></context-group> |
7535 | </trans-unit> | 7511 | </trans-unit> |
7536 | <trans-unit id="4762794934098378428" datatype="html"> | 7512 | <trans-unit id="4762794934098378428" datatype="html"> |
7537 | <source>Video blocked.</source> | 7513 | <source>Video blocked.</source> |
7538 | <target state="new">Video blocked.</target> | 7514 | <target state="translated">Відео заблоковано.</target> |
7539 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">357</context></context-group> | 7515 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">357</context></context-group> |
7540 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context><context context-type="linenumber">60</context></context-group> | 7516 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/video-block.component.ts</context><context context-type="linenumber">60</context></context-group> |
7541 | </trans-unit> | 7517 | </trans-unit> |
7542 | <trans-unit id="4328862996304258770" datatype="html"> | 7518 | <trans-unit id="4328862996304258770" datatype="html"> |
7543 | <source>Unblock video</source> | 7519 | <source>Unblock video</source> |
7544 | <target state="new">Unblock video</target> | 7520 | <target state="translated">Розблокувати відео</target> |
7545 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">367</context></context-group> | 7521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">367</context></context-group> |
7546 | </trans-unit> | 7522 | </trans-unit> |
7547 | <trans-unit id="9065327551191479877" datatype="html"> | 7523 | <trans-unit id="9065327551191479877" datatype="html"> |
7548 | <source>Video unblocked.</source> | 7524 | <source>Video unblocked.</source> |
7549 | <target state="new">Video unblocked.</target> | 7525 | <target state="translated">Відео розблоковано.</target> |
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">373</context></context-group> | 7526 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">373</context></context-group> |
7551 | </trans-unit> | 7527 | </trans-unit> |
7552 | <trans-unit id="1250415136605923486" datatype="html"> | 7528 | <trans-unit id="1250415136605923486" datatype="html"> |
@@ -7599,7 +7575,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7599 | </trans-unit> | 7575 | </trans-unit> |
7600 | <trans-unit id="4859202148272511129" datatype="html"> | 7576 | <trans-unit id="4859202148272511129" datatype="html"> |
7601 | <source>Unblock</source> | 7577 | <source>Unblock</source> |
7602 | <target state="new">Unblock</target> | 7578 | <target state="translated">Розблокувати</target> |
7603 | <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">83</context></context-group> | 7579 | <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">83</context></context-group> |
7604 | <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">134</context></context-group> | 7580 | <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">134</context></context-group> |
7605 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">182</context></context-group> | 7581 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">182</context></context-group> |
@@ -7613,13 +7589,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7613 | </trans-unit> | 7589 | </trans-unit> |
7614 | <trans-unit id="6286037250766429054" datatype="html"> | 7590 | <trans-unit id="6286037250766429054" datatype="html"> |
7615 | <source>yes</source> | 7591 | <source>yes</source> |
7616 | <target state="new">yes</target> | 7592 | <target state="translated">так</target> |
7617 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">1</context></context-group> | 7593 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">1</context></context-group> |
7618 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">1</context></context-group> | 7594 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">1</context></context-group> |
7619 | </trans-unit> | 7595 | </trans-unit> |
7620 | <trans-unit id="2420525563530770652" datatype="html"> | 7596 | <trans-unit id="2420525563530770652" datatype="html"> |
7621 | <source>no</source> | 7597 | <source>no</source> |
7622 | <target state="new">no</target> | 7598 | <target state="translated">ні</target> |
7623 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">2</context></context-group> | 7599 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">2</context></context-group> |
7624 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">2</context></context-group> | 7600 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-instance/feature-boolean.component.html</context><context context-type="linenumber">2</context></context-group> |
7625 | </trans-unit> | 7601 | </trans-unit> |
@@ -7647,7 +7623,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7647 | </trans-unit> | 7623 | </trans-unit> |
7648 | <trans-unit id="4474510732215437338" datatype="html"> | 7624 | <trans-unit id="4474510732215437338" datatype="html"> |
7649 | <source>Uninstall</source> | 7625 | <source>Uninstall</source> |
7650 | <target state="new">Uninstall</target> | 7626 | <target state="translated">Видплити</target> |
7651 | <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> | 7627 | <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> |
7652 | </trans-unit> | 7628 | </trans-unit> |
7653 | <trans-unit id="3773378957693174719" datatype="html"> | 7629 | <trans-unit id="3773378957693174719" datatype="html"> |
@@ -7706,39 +7682,37 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7706 | </trans-unit> | 7682 | </trans-unit> |
7707 | <trans-unit id="6703720397495603345" datatype="html"> | 7683 | <trans-unit id="6703720397495603345" datatype="html"> |
7708 | <source><x id="PH"/> installed. </source> | 7684 | <source><x id="PH"/> installed. </source> |
7709 | <target state="new"> | 7685 | <target state="translated"><x id="PH"/> встановлено. </target> |
7710 | <x id="PH"/> installed. | ||
7711 | </target> | ||
7712 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">147</context></context-group> | 7686 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">147</context></context-group> |
7713 | </trans-unit> | 7687 | </trans-unit> |
7714 | <trans-unit id="1875025899004073421" datatype="html"> | 7688 | <trans-unit id="1875025899004073421" datatype="html"> |
7715 | <source>Settings updated.</source> | 7689 | <source>Settings updated.</source> |
7716 | <target state="new">Settings updated.</target> | 7690 | <target state="translated">Налаштування оновлено.</target> |
7717 | <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> | 7691 | <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> |
7718 | </trans-unit> | 7692 | </trans-unit> |
7719 | <trans-unit id="6901018060567164184" datatype="html"> | 7693 | <trans-unit id="6901018060567164184" datatype="html"> |
7720 | <source>Plugins</source> | 7694 | <source>Plugins</source> |
7721 | <target state="new">Plugins</target> | 7695 | <target state="translated">Плагіни</target> |
7722 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">31</context></context-group> | 7696 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">31</context></context-group> |
7723 | </trans-unit> | 7697 | </trans-unit> |
7724 | <trans-unit id="2798270190074840767" datatype="html"> | 7698 | <trans-unit id="2798270190074840767" datatype="html"> |
7725 | <source>Themes</source> | 7699 | <source>Themes</source> |
7726 | <target state="new">Themes</target> | 7700 | <target state="translated">Теми</target> |
7727 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">35</context></context-group> | 7701 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">35</context></context-group> |
7728 | </trans-unit> | 7702 | </trans-unit> |
7729 | <trans-unit id="2941409202780782189" datatype="html"> | 7703 | <trans-unit id="2941409202780782189" datatype="html"> |
7730 | <source>plugin</source> | 7704 | <source>plugin</source> |
7731 | <target state="new">plugin</target> | 7705 | <target state="translated">плагін</target> |
7732 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">43</context></context-group> | 7706 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">43</context></context-group> |
7733 | </trans-unit> | 7707 | </trans-unit> |
7734 | <trans-unit id="840045833311458646" datatype="html"> | 7708 | <trans-unit id="840045833311458646" datatype="html"> |
7735 | <source>theme</source> | 7709 | <source>theme</source> |
7736 | <target state="new">theme</target> | 7710 | <target state="translated">тема</target> |
7737 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">46</context></context-group> | 7711 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/shared/plugin-api.service.ts</context><context context-type="linenumber">46</context></context-group> |
7738 | </trans-unit> | 7712 | </trans-unit> |
7739 | <trans-unit id="2483018961011868950" datatype="html"> | 7713 | <trans-unit id="2483018961011868950" datatype="html"> |
7740 | <source>IP address</source> | 7714 | <source>IP address</source> |
7741 | <target state="new">IP address</target> | 7715 | <target state="translated">IP-адреса</target> |
7742 | <context-group purpose="location"> | 7716 | <context-group purpose="location"> |
7743 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> | 7717 | <context context-type="sourcefile">src/app/+admin/system/debug/debug.component.html</context> |
7744 | <context context-type="linenumber">2</context> | 7718 | <context context-type="linenumber">2</context> |
@@ -7835,12 +7809,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7835 | </trans-unit> | 7809 | </trans-unit> |
7836 | <trans-unit id="3379167598974960777" datatype="html"> | 7810 | <trans-unit id="3379167598974960777" datatype="html"> |
7837 | <source>warning</source> | 7811 | <source>warning</source> |
7838 | <target state="new">warning</target> | 7812 | <target state="translated">попередження</target> |
7839 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">117</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">117</context></context-group> |
7840 | </trans-unit> | 7814 | </trans-unit> |
7841 | <trans-unit id="8772116786769251214" datatype="html"> | 7815 | <trans-unit id="8772116786769251214" datatype="html"> |
7842 | <source>error</source> | 7816 | <source>error</source> |
7843 | <target state="new">error</target> | 7817 | <target state="translated">помилка</target> |
7844 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">121</context></context-group> | 7818 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.ts</context><context context-type="linenumber">121</context></context-group> |
7845 | </trans-unit> | 7819 | </trans-unit> |
7846 | <trans-unit id="3422890808980876594" datatype="html"> | 7820 | <trans-unit id="3422890808980876594" datatype="html"> |
@@ -7855,12 +7829,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7855 | </trans-unit> | 7829 | </trans-unit> |
7856 | <trans-unit id="6759205696902713848" datatype="html"> | 7830 | <trans-unit id="6759205696902713848" datatype="html"> |
7857 | <source>Warning</source> | 7831 | <source>Warning</source> |
7858 | <target state="new">Warning</target> | 7832 | <target state="translated">Попередження</target> |
7859 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/routing/can-deactivate-guard.service.ts</context><context context-type="linenumber">23</context></context-group> | 7833 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/routing/can-deactivate-guard.service.ts</context><context context-type="linenumber">23</context></context-group> |
7860 | </trans-unit> | 7834 | </trans-unit> |
7861 | <trans-unit id="1519954996184640001" datatype="html"> | 7835 | <trans-unit id="1519954996184640001" datatype="html"> |
7862 | <source>Error</source> | 7836 | <source>Error</source> |
7863 | <target state="new">Error</target> | 7837 | <target state="translated">Помилка</target> |
7864 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">103</context></context-group> | 7838 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/auth/auth.service.ts</context><context context-type="linenumber">103</context></context-group> |
7865 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">18</context></context-group> | 7839 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/notification/notifier.service.ts</context><context context-type="linenumber">18</context></context-group> |
7866 | </trans-unit> | 7840 | </trans-unit> |
@@ -7928,12 +7902,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7928 | </trans-unit> | 7902 | </trans-unit> |
7929 | <trans-unit id="1525334987774465166" datatype="html"> | 7903 | <trans-unit id="1525334987774465166" datatype="html"> |
7930 | <source>Create a user</source> | 7904 | <source>Create a user</source> |
7931 | <target state="new">Create a user</target> | 7905 | <target state="translated">Створити користувача</target> |
7932 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context><context context-type="linenumber">36</context></context-group> | 7906 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context><context context-type="linenumber">36</context></context-group> |
7933 | </trans-unit> | 7907 | </trans-unit> |
7934 | <trans-unit id="5552039423287890133" datatype="html"> | 7908 | <trans-unit id="5552039423287890133" datatype="html"> |
7935 | <source>Update a user</source> | 7909 | <source>Update a user</source> |
7936 | <target state="new">Update a user</target> | 7910 | <target state="translated">Оновити користувача</target> |
7937 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context><context context-type="linenumber">45</context></context-group> | 7911 | <context-group purpose="location"><context context-type="sourcefile">src/app/+admin/users/users.routes.ts</context><context context-type="linenumber">45</context></context-group> |
7938 | </trans-unit> | 7912 | </trans-unit> |
7939 | <trans-unit id="8564701209009684429" datatype="html"> | 7913 | <trans-unit id="8564701209009684429" datatype="html"> |
@@ -7974,7 +7948,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7974 | </trans-unit> | 7948 | </trans-unit> |
7975 | <trans-unit id="4207916966377787111" datatype="html"> | 7949 | <trans-unit id="4207916966377787111" datatype="html"> |
7976 | <source>Created</source> | 7950 | <source>Created</source> |
7977 | <target state="new">Created</target> | 7951 | <target state="translated">Створено</target> |
7978 | <context-group purpose="location"> | 7952 | <context-group purpose="location"> |
7979 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> | 7953 | <context context-type="sourcefile">src/app/+admin/users/user-list/user-list.component.ts</context> |
7980 | <context context-type="linenumber">115</context> | 7954 | <context context-type="linenumber">115</context> |
@@ -8067,17 +8041,17 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8067 | </trans-unit> | 8041 | </trans-unit> |
8068 | <trans-unit id="8966726118414892732" datatype="html"> | 8042 | <trans-unit id="8966726118414892732" datatype="html"> |
8069 | <source>Delete videos history</source> | 8043 | <source>Delete videos history</source> |
8070 | <target state="new">Delete videos history</target> | 8044 | <target state="translated">Видалити історію перегляду</target> |
8071 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">127</context></context-group> | 8045 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">127</context></context-group> |
8072 | </trans-unit> | 8046 | </trans-unit> |
8073 | <trans-unit id="2482543433481435105" datatype="html"> | 8047 | <trans-unit id="2482543433481435105" datatype="html"> |
8074 | <source>Are you sure you want to delete all your videos history?</source> | 8048 | <source>Are you sure you want to delete all your videos history?</source> |
8075 | <target state="new">Are you sure you want to delete all your videos history?</target> | 8049 | <target state="translated">Ви впевнені, що хочете видалити всю історію переглянутих відео?</target> |
8076 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">128</context></context-group> | 8050 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">128</context></context-group> |
8077 | </trans-unit> | 8051 | </trans-unit> |
8078 | <trans-unit id="4051606152827088952" datatype="html"> | 8052 | <trans-unit id="4051606152827088952" datatype="html"> |
8079 | <source>Videos history deleted</source> | 8053 | <source>Videos history deleted</source> |
8080 | <target state="new">Videos history deleted</target> | 8054 | <target state="translated">Історію перегляду видалено</target> |
8081 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">136</context></context-group> | 8055 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">136</context></context-group> |
8082 | </trans-unit> | 8056 | </trans-unit> |
8083 | <trans-unit id="1486537403020619891" datatype="html"> | 8057 | <trans-unit id="1486537403020619891" datatype="html"> |
@@ -8105,7 +8079,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8105 | </trans-unit> | 8079 | </trans-unit> |
8106 | <trans-unit id="6585766371605707311" datatype="html"> | 8080 | <trans-unit id="6585766371605707311" datatype="html"> |
8107 | <source>Email updated.</source> | 8081 | <source>Email updated.</source> |
8108 | <target state="new">Email updated.</target> | 8082 | <target state="translated">Е-пошту оновлено.</target> |
8109 | <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> | 8083 | <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> |
8110 | </trans-unit> | 8084 | </trans-unit> |
8111 | <trans-unit id="8553059323353586765" datatype="html"> | 8085 | <trans-unit id="8553059323353586765" datatype="html"> |
@@ -8125,7 +8099,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8125 | </trans-unit> | 8099 | </trans-unit> |
8126 | <trans-unit id="6159571046971090595" datatype="html"> | 8100 | <trans-unit id="6159571046971090595" datatype="html"> |
8127 | <source>Password updated.</source> | 8101 | <source>Password updated.</source> |
8128 | <target state="new">Password updated.</target> | 8102 | <target state="translated">Пароль оновлено.</target> |
8129 | <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> | 8103 | <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> |
8130 | </trans-unit> | 8104 | </trans-unit> |
8131 | <trans-unit id="5179099584732142331" datatype="html"> | 8105 | <trans-unit id="5179099584732142331" datatype="html"> |
@@ -8135,7 +8109,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8135 | </trans-unit> | 8109 | </trans-unit> |
8136 | <trans-unit id="6897292459203320054" datatype="html"> | 8110 | <trans-unit id="6897292459203320054" datatype="html"> |
8137 | <source>Type your username to confirm</source> | 8111 | <source>Type your username to confirm</source> |
8138 | <target state="new">Type your username to confirm</target> | 8112 | <target state="translated">Введіть своє ім'я користувача, щоб підтвердити</target> |
8139 | <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">24</context></context-group> | 8113 | <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">24</context></context-group> |
8140 | </trans-unit> | 8114 | </trans-unit> |
8141 | <trans-unit id="3122895472333547524" datatype="html"> | 8115 | <trans-unit id="3122895472333547524" datatype="html"> |
@@ -8145,12 +8119,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8145 | </trans-unit> | 8119 | </trans-unit> |
8146 | <trans-unit id="2520605306994744004" datatype="html"> | 8120 | <trans-unit id="2520605306994744004" datatype="html"> |
8147 | <source>Delete my account</source> | 8121 | <source>Delete my account</source> |
8148 | <target state="new">Delete my account</target> | 8122 | <target state="translated">Видалити мій обліковий запис</target> |
8149 | <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">27</context></context-group> | 8123 | <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">27</context></context-group> |
8150 | </trans-unit> | 8124 | </trans-unit> |
8151 | <trans-unit id="3902597758945766483" datatype="html"> | 8125 | <trans-unit id="3902597758945766483" datatype="html"> |
8152 | <source>Your account is deleted.</source> | 8126 | <source>Your account is deleted.</source> |
8153 | <target state="new">Your account is deleted.</target> | 8127 | <target state="translated">Ваш обліковий запис видалено.</target> |
8154 | <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">34</context></context-group> | 8128 | <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">34</context></context-group> |
8155 | </trans-unit> | 8129 | </trans-unit> |
8156 | <trans-unit id="4776289814033837037" datatype="html"> | 8130 | <trans-unit id="4776289814033837037" datatype="html"> |
@@ -8166,7 +8140,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8166 | </trans-unit> | 8140 | </trans-unit> |
8167 | <trans-unit id="4343589211916204486" datatype="html"> | 8141 | <trans-unit id="4343589211916204486" datatype="html"> |
8168 | <source>New comment on your video</source> | 8142 | <source>New comment on your video</source> |
8169 | <target state="new">New comment on your video</target> | 8143 | <target state="translated">Новий коментар до вашого відео</target> |
8170 | <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">33</context></context-group> | 8144 | <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">33</context></context-group> |
8171 | </trans-unit> | 8145 | </trans-unit> |
8172 | <trans-unit id="7130088765428829942" datatype="html"> | 8146 | <trans-unit id="7130088765428829942" datatype="html"> |
@@ -8247,17 +8221,17 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8247 | </trans-unit> | 8221 | </trans-unit> |
8248 | <trans-unit id="5095562193296630034" datatype="html"> | 8222 | <trans-unit id="5095562193296630034" datatype="html"> |
8249 | <source>Preferences saved</source> | 8223 | <source>Preferences saved</source> |
8250 | <target state="new">Preferences saved</target> | 8224 | <target state="translated">Налаштування збережено</target> |
8251 | <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">94</context></context-group> | 8225 | <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">94</context></context-group> |
8252 | </trans-unit> | 8226 | </trans-unit> |
8253 | <trans-unit id="4967231969832964676" datatype="html"> | 8227 | <trans-unit id="4967231969832964676" datatype="html"> |
8254 | <source>Profile updated.</source> | 8228 | <source>Profile updated.</source> |
8255 | <target state="new">Profile updated.</target> | 8229 | <target state="translated">Профіль оновлено.</target> |
8256 | <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> | 8230 | <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> |
8257 | </trans-unit> | 8231 | </trans-unit> |
8258 | <trans-unit id="6721822899525405039" datatype="html"> | 8232 | <trans-unit id="6721822899525405039" datatype="html"> |
8259 | <source>People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source> | 8233 | <source>People can find you using @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </source> |
8260 | <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> | 8234 | <target state="translated">Люди можуть знайти вас за допомогою @<x id="INTERPOLATION" equiv-text="sing @{{ user.usern"/>@<x id="INTERPOLATION_1" equiv-text="me }}@{{ instanceH"/> </target> |
8261 | <context-group purpose="location"> | 8235 | <context-group purpose="location"> |
8262 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context> | 8236 | <context context-type="sourcefile">src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html</context> |
8263 | <context context-type="linenumber">11,13</context> | 8237 | <context context-type="linenumber">11,13</context> |
@@ -8265,25 +8239,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8265 | </trans-unit> | 8239 | </trans-unit> |
8266 | <trans-unit id="3525866160632851851" datatype="html"> | 8240 | <trans-unit id="3525866160632851851" datatype="html"> |
8267 | <source>Avatar changed.</source> | 8241 | <source>Avatar changed.</source> |
8268 | <target state="new">Avatar changed.</target> | 8242 | <target state="translated">Аватар змінено.</target> |
8269 | <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> | 8243 | <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> |
8270 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">111</context></context-group> | 8244 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">111</context></context-group> |
8271 | </trans-unit> | 8245 | </trans-unit> |
8272 | <trans-unit id="8920809083620698740" datatype="html"> | 8246 | <trans-unit id="8920809083620698740" datatype="html"> |
8273 | <source>avatar</source> | 8247 | <source>avatar</source> |
8274 | <target state="new">avatar</target> | 8248 | <target state="translated">аватар</target> |
8275 | <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> | 8249 | <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> |
8276 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">118</context></context-group> | 8250 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">118</context></context-group> |
8277 | </trans-unit> | 8251 | </trans-unit> |
8278 | <trans-unit id="2775050991871557896" datatype="html"> | 8252 | <trans-unit id="2775050991871557896" datatype="html"> |
8279 | <source>Avatar deleted.</source> | 8253 | <source>Avatar deleted.</source> |
8280 | <target state="new">Avatar deleted.</target> | 8254 | <target state="translated">Аватар видалено.</target> |
8281 | <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> | 8255 | <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> |
8282 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">128</context></context-group> | 8256 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">128</context></context-group> |
8283 | </trans-unit> | 8257 | </trans-unit> |
8284 | <trans-unit id="1233062525939746039" datatype="html"> | 8258 | <trans-unit id="1233062525939746039" datatype="html"> |
8285 | <source>Unknown language</source> | 8259 | <source>Unknown language</source> |
8286 | <target state="new">Unknown language</target> | 8260 | <target state="translated">Невідома мова</target> |
8287 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">41</context></context-group> | 8261 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-languages.component.ts</context><context context-type="linenumber">41</context></context-group> |
8288 | </trans-unit> | 8262 | </trans-unit> |
8289 | <trans-unit id="3761504852202418603" datatype="html"> | 8263 | <trans-unit id="3761504852202418603" datatype="html"> |
@@ -8323,12 +8297,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8323 | </trans-unit> | 8297 | </trans-unit> |
8324 | <trans-unit id="689638706960732906" datatype="html"> | 8298 | <trans-unit id="689638706960732906" datatype="html"> |
8325 | <source>banner</source> | 8299 | <source>banner</source> |
8326 | <target state="new">banner</target> | 8300 | <target state="translated">банер</target> |
8327 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">148</context></context-group> | 8301 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">148</context></context-group> |
8328 | </trans-unit> | 8302 | </trans-unit> |
8329 | <trans-unit id="3230561499965076671" datatype="html"> | 8303 | <trans-unit id="3230561499965076671" datatype="html"> |
8330 | <source>Banner deleted.</source> | 8304 | <source>Banner deleted.</source> |
8331 | <target state="new">Banner deleted.</target> | 8305 | <target state="translated">Банер видалено.</target> |
8332 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">158</context></context-group> | 8306 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channel-update.component.ts</context><context context-type="linenumber">158</context></context-group> |
8333 | </trans-unit> | 8307 | </trans-unit> |
8334 | <trans-unit id="624066830180032195" datatype="html"> | 8308 | <trans-unit id="624066830180032195" datatype="html"> |
@@ -8338,17 +8312,17 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8338 | </trans-unit> | 8312 | </trans-unit> |
8339 | <trans-unit id="6450826648284332649" datatype="html"> | 8313 | <trans-unit id="6450826648284332649" datatype="html"> |
8340 | <source>Views for the day</source> | 8314 | <source>Views for the day</source> |
8341 | <target state="new">Views for the day</target> | 8315 | <target state="translated">Перегляди за сьогодні</target> |
8342 | <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> | 8316 | <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> |
8343 | </trans-unit> | 8317 | </trans-unit> |
8344 | <trans-unit id="6059091237492573541" datatype="html"> | 8318 | <trans-unit id="6059091237492573541" datatype="html"> |
8345 | <source>Update video channel</source> | 8319 | <source>Update video channel</source> |
8346 | <target state="new">Update video channel</target> | 8320 | <target state="translated">Оновити відеоканал</target> |
8347 | <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">31</context></context-group> | 8321 | <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">31</context></context-group> |
8348 | </trans-unit> | 8322 | </trans-unit> |
8349 | <trans-unit id="6595008830732269870" datatype="html"> | 8323 | <trans-unit id="6595008830732269870" datatype="html"> |
8350 | <source>Not found</source> | 8324 | <source>Not found</source> |
8351 | <target state="new">Not found</target> | 8325 | <target state="translated">Не знайдено</target> |
8352 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found-routing.module.ts</context><context context-type="linenumber">14</context></context-group> | 8326 | <context-group purpose="location"><context context-type="sourcefile">src/app/+page-not-found/page-not-found-routing.module.ts</context><context context-type="linenumber">14</context></context-group> |
8353 | </trans-unit> | 8327 | </trans-unit> |
8354 | <trans-unit id="1009095940160473792" datatype="html"> | 8328 | <trans-unit id="1009095940160473792" datatype="html"> |
@@ -8369,7 +8343,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8369 | </trans-unit> | 8343 | </trans-unit> |
8370 | <trans-unit id="1636934520301910285" datatype="html"> | 8344 | <trans-unit id="1636934520301910285" datatype="html"> |
8371 | <source>Reset password</source> | 8345 | <source>Reset password</source> |
8372 | <target state="new">Reset password</target> | 8346 | <target state="translated">Скинути пароль</target> |
8373 | <context-group purpose="location"> | 8347 | <context-group purpose="location"> |
8374 | <context context-type="sourcefile">src/app/+reset-password/reset-password-routing.module.ts</context> | 8348 | <context context-type="sourcefile">src/app/+reset-password/reset-password-routing.module.ts</context> |
8375 | <context context-type="linenumber">11</context> | 8349 | <context context-type="linenumber">11</context> |
@@ -8385,7 +8359,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8385 | </trans-unit> | 8359 | </trans-unit> |
8386 | <trans-unit id="5032453707232754344" datatype="html"> | 8360 | <trans-unit id="5032453707232754344" datatype="html"> |
8387 | <source>Playlist <x id="PH"/> created.</source> | 8361 | <source>Playlist <x id="PH"/> created.</source> |
8388 | <target state="translated">ис відвонн <x id="PH"/> створено.</target> | 8362 | <target state="translated">оір <x id="PH"/> створено.</target> |
8389 | <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> | 8363 | <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> |
8390 | </trans-unit> | 8364 | </trans-unit> |
8391 | <trans-unit id="5674286808255988565" datatype="html"> | 8365 | <trans-unit id="5674286808255988565" datatype="html"> |
@@ -8396,7 +8370,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8396 | </trans-unit> | 8370 | </trans-unit> |
8397 | <trans-unit id="8869957234869568361" datatype="html"> | 8371 | <trans-unit id="8869957234869568361" datatype="html"> |
8398 | <source>Update playlist</source> | 8372 | <source>Update playlist</source> |
8399 | <target state="new">Update playlist</target> | 8373 | <target state="translated">Оновити добірку</target> |
8400 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">66</context></context-group> | 8374 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">66</context></context-group> |
8401 | <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> | 8375 | <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> |
8402 | </trans-unit> | 8376 | </trans-unit> |
@@ -8414,12 +8388,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8414 | </trans-unit> | 8388 | </trans-unit> |
8415 | <trans-unit id="104404386496394770" datatype="html"> | 8389 | <trans-unit id="104404386496394770" datatype="html"> |
8416 | <source>Delete playlist</source> | 8390 | <source>Delete playlist</source> |
8417 | <target state="new">Delete playlist</target> | 8391 | <target state="translated">Видалити добірку</target> |
8418 | <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">52</context></context-group> | 8392 | <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">52</context></context-group> |
8419 | </trans-unit> | 8393 | </trans-unit> |
8420 | <trans-unit id="1431617394009162547" datatype="html"> | 8394 | <trans-unit id="1431617394009162547" datatype="html"> |
8421 | <source>Playlist <x id="PH"/> updated.</source> | 8395 | <source>Playlist <x id="PH"/> updated.</source> |
8422 | <target state="translated">ис відвонн <x id="PH"/> оновлено.</target> | 8396 | <target state="translated">оір <x id="PH"/> оновлено.</target> |
8423 | <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> | 8397 | <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> |
8424 | </trans-unit> | 8398 | </trans-unit> |
8425 | <trans-unit id="2027805873922338635" datatype="html"> | 8399 | <trans-unit id="2027805873922338635" datatype="html"> |
@@ -8436,7 +8410,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8436 | </trans-unit> | 8410 | </trans-unit> |
8437 | <trans-unit id="3380608219513805292" datatype="html"> | 8411 | <trans-unit id="3380608219513805292" datatype="html"> |
8438 | <source>Playlist <x id="PH"/> deleted.</source> | 8412 | <source>Playlist <x id="PH"/> deleted.</source> |
8439 | <target state="translated">ис відвонн <x id="PH"/> видалено.</target> | 8413 | <target state="translated">оір <x id="PH"/> видалено.</target> |
8440 | <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> | 8414 | <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> |
8441 | </trans-unit> | 8415 | </trans-unit> |
8442 | <trans-unit id="3058024914967508975" datatype="html"> | 8416 | <trans-unit id="3058024914967508975" datatype="html"> |
@@ -8494,7 +8468,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8494 | </trans-unit> | 8468 | </trans-unit> |
8495 | <trans-unit id="7545420287297803988" datatype="html"> | 8469 | <trans-unit id="7545420287297803988" datatype="html"> |
8496 | <source>My playlists</source> | 8470 | <source>My playlists</source> |
8497 | <target state="translated">Мої сси відвоня</target> | 8471 | <target state="translated">Мої ір</target> |
8498 | <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> | 8472 | <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> |
8499 | </trans-unit> | 8473 | </trans-unit> |
8500 | <trans-unit id="2527931602940887636" datatype="html"> | 8474 | <trans-unit id="2527931602940887636" datatype="html"> |
@@ -8514,7 +8488,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8514 | </trans-unit> | 8488 | </trans-unit> |
8515 | <trans-unit id="5752861278140673787" datatype="html"> | 8489 | <trans-unit id="5752861278140673787" datatype="html"> |
8516 | <source>Ownership changes</source> | 8490 | <source>Ownership changes</source> |
8517 | <target state="new">Ownership changes</target> | 8491 | <target state="translated">Власника змінено</target> |
8518 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">108</context></context-group> | 8492 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library-routing.module.ts</context><context context-type="linenumber">108</context></context-group> |
8519 | </trans-unit> | 8493 | </trans-unit> |
8520 | <trans-unit id="5983006734882925930" datatype="html"> | 8494 | <trans-unit id="5983006734882925930" datatype="html"> |
@@ -8534,15 +8508,15 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8534 | </trans-unit> | 8508 | </trans-unit> |
8535 | <trans-unit id="1823843876735462104" datatype="html"> | 8509 | <trans-unit id="1823843876735462104" datatype="html"> |
8536 | <source>Playlists</source> | 8510 | <source>Playlists</source> |
8537 | <target state="translated">ки вдвоня</target> | 8511 | <target state="translated">ір</target> |
8538 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">61</context></context-group> | 8512 | <context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-library.component.ts</context><context context-type="linenumber">61</context></context-group> |
8539 | </trans-unit> | 8513 | </trans-unit> |
8540 | <trans-unit id="7916647920967632052" datatype="html"> | 8514 | <trans-unit id="7916647920967632052" datatype="html"> |
8541 | <source>max size</source> | 8515 | <source>max size</source> |
8542 | <target state="new">max size</target> | 8516 | <target state="new">max size</target> |
8543 | 8517 | <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> | |
8544 | 8518 | <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> | |
8545 | <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> | 8519 | </trans-unit> |
8546 | <trans-unit id="6489275254908395777" datatype="html"> | 8520 | <trans-unit id="6489275254908395777" datatype="html"> |
8547 | <source>Maximize editor</source> | 8521 | <source>Maximize editor</source> |
8548 | <target state="new">Maximize editor</target> | 8522 | <target state="new">Maximize editor</target> |
@@ -8578,7 +8552,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
8578 | </trans-unit> | 8552 | </trans-unit> |
8579 | <trans-unit id="1783173774503340906" datatype="html"> | 8553 | <trans-unit id="1783173774503340906" datatype="html"> |
8580 | <source>Subscribe to the account</source> | 8554 | <source>Subscribe to the account</source> |
8581 | <target state="new">Subscribe to the account</target> | 8555 | <target state="translated">Підписатися на обліковий запис</target> |
8582 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">71</context></context-group> | 8556 | <context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">71</context></context-group> |
8583 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">713</context></context-group> | 8557 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">713</context></context-group> |
8584 | </trans-unit> | 8558 | </trans-unit> |
@@ -8806,7 +8780,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8806 | </trans-unit> | 8780 | </trans-unit> |
8807 | <trans-unit id="2180217594100853008" datatype="html"> | 8781 | <trans-unit id="2180217594100853008" datatype="html"> |
8808 | <source>Live videos</source> | 8782 | <source>Live videos</source> |
8809 | <target state="translated">я трасяція</target> | 8783 | <target state="translated">о во</target> |
8810 | <context-group purpose="location"> | 8784 | <context-group purpose="location"> |
8811 | <context context-type="sourcefile">src/app/+search/search-filters.component.ts</context> | 8785 | <context context-type="sourcefile">src/app/+search/search-filters.component.ts</context> |
8812 | <context context-type="linenumber">64</context> | 8786 | <context context-type="linenumber">64</context> |
@@ -8859,7 +8833,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8859 | </trans-unit> | 8833 | </trans-unit> |
8860 | <trans-unit id="4580988005648117665" datatype="html"> | 8834 | <trans-unit id="4580988005648117665" datatype="html"> |
8861 | <source>Search</source> | 8835 | <source>Search</source> |
8862 | <target state="new">Search</target> | 8836 | <target state="translated">Пошук</target> |
8863 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">15</context></context-group> | 8837 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search-routing.module.ts</context><context context-type="linenumber">15</context></context-group> |
8864 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">242</context></context-group> | 8838 | <context-group purpose="location"><context context-type="sourcefile">src/app/+search/search.component.ts</context><context context-type="linenumber">242</context></context-group> |
8865 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.ts</context><context context-type="linenumber">15</context></context-group> | 8839 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/simple-search-input.component.ts</context><context context-type="linenumber">15</context></context-group> |
@@ -8982,7 +8956,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8982 | </trans-unit> | 8956 | </trans-unit> |
8983 | <trans-unit id="4930506384627295710" datatype="html"> | 8957 | <trans-unit id="4930506384627295710" datatype="html"> |
8984 | <source>Settings</source> | 8958 | <source>Settings</source> |
8985 | <target state="new">Settings</target> | 8959 | <target state="translated">Налаштування</target> |
8986 | <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> | 8960 | <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> |
8987 | </trans-unit> | 8961 | </trans-unit> |
8988 | <trans-unit id="9178182467454450952" datatype="html"> | 8962 | <trans-unit id="9178182467454450952" datatype="html"> |
@@ -9626,17 +9600,17 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9626 | </trans-unit> | 9600 | </trans-unit> |
9627 | <trans-unit id="8728283516316752593" datatype="html"> | 9601 | <trans-unit id="8728283516316752593" datatype="html"> |
9628 | <source>This file is too large.</source> | 9602 | <source>This file is too large.</source> |
9629 | <target state="new">This file is too large.</target> | 9603 | <target state="translated">Цей файл завеликий.</target> |
9630 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/reactive-file.component.ts</context><context context-type="linenumber">50</context></context-group> | 9604 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/reactive-file.component.ts</context><context context-type="linenumber">50</context></context-group> |
9631 | </trans-unit> | 9605 | </trans-unit> |
9632 | <trans-unit id="6360987759186261451" datatype="html"> | 9606 | <trans-unit id="6360987759186261451" datatype="html"> |
9633 | <source>PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</source> | 9607 | <source>PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</source> |
9634 | <target state="new">PeerTube cannot handle this kind of file. Accepted extensions are <x id="PH"/>}.</target> | 9608 | <target state="translated">PeerTube не може обробляти такі файли. Допустимі розширення <x id="PH"/>}.</target> |
9635 | <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> | 9609 | <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> |
9636 | </trans-unit> | 9610 | </trans-unit> |
9637 | <trans-unit id="3393133458004181121" datatype="html"> | 9611 | <trans-unit id="3393133458004181121" datatype="html"> |
9638 | <source>All categories</source> | 9612 | <source>All categories</source> |
9639 | <target state="new">All categories</target> | 9613 | <target state="translated">Усі категорії</target> |
9640 | <context-group purpose="location"> | 9614 | <context-group purpose="location"> |
9641 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.ts</context> | 9615 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-categories.component.ts</context> |
9642 | <context context-type="linenumber">24</context> | 9616 | <context context-type="linenumber">24</context> |
@@ -9644,7 +9618,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9644 | </trans-unit> | 9618 | </trans-unit> |
9645 | <trans-unit id="3999967345340145904" datatype="html"> | 9619 | <trans-unit id="3999967345340145904" datatype="html"> |
9646 | <source>You can't select more than <x id="PH" equiv-text="this.maxItems"/> items</source> | 9620 | <source>You can't select more than <x id="PH" equiv-text="this.maxItems"/> items</source> |
9647 | <target state="new">You can't select more than <x id="PH" equiv-text="this.maxItems"/> items</target> | 9621 | <target state="translated">Ви не можете вибрати більше за <x id="PH" equiv-text="this.maxItems"/> елементів</target> |
9648 | <context-group purpose="location"> | 9622 | <context-group purpose="location"> |
9649 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox-all.component.ts</context> | 9623 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox-all.component.ts</context> |
9650 | <context context-type="linenumber">81</context> | 9624 | <context context-type="linenumber">81</context> |
@@ -9652,12 +9626,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9652 | </trans-unit> | 9626 | </trans-unit> |
9653 | <trans-unit id="6708273825233539746" datatype="html"> | 9627 | <trans-unit id="6708273825233539746" datatype="html"> |
9654 | <source>Add a new option</source> | 9628 | <source>Add a new option</source> |
9655 | <target state="new">Add a new option</target> | 9629 | <target state="translated">Додати нову опцію</target> |
9656 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.ts</context><context context-type="linenumber">27</context></context-group> | 9630 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-forms/select/select-checkbox.component.ts</context><context context-type="linenumber">27</context></context-group> |
9657 | </trans-unit> | 9631 | </trans-unit> |
9658 | <trans-unit id="4076995379551303829" datatype="html"> | 9632 | <trans-unit id="4076995379551303829" datatype="html"> |
9659 | <source>Custom value...</source> | 9633 | <source>Custom value...</source> |
9660 | <target state="new">Custom value...</target> | 9634 | <target state="translated">Власне значення...</target> |
9661 | <context-group purpose="location"> | 9635 | <context-group purpose="location"> |
9662 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-custom-value.component.ts</context> | 9636 | <context context-type="sourcefile">src/app/shared/shared-forms/select/select-custom-value.component.ts</context> |
9663 | <context context-type="linenumber">69</context> | 9637 | <context context-type="linenumber">69</context> |
@@ -9665,341 +9639,331 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9665 | </trans-unit> | 9639 | </trans-unit> |
9666 | <trans-unit id="4670312387769733978" datatype="html"> | 9640 | <trans-unit id="4670312387769733978" datatype="html"> |
9667 | <source>All unsaved data will be lost, are you sure you want to leave this page?</source> | 9641 | <source>All unsaved data will be lost, are you sure you want to leave this page?</source> |
9668 | <target state="new">All unsaved data will be lost, are you sure you want to leave this page?</target> | 9642 | <target state="translated">Усі незбережені дані будуть втрачені. Ви впевнені, що хочете залишити цю сторінку?</target> |
9669 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/routing/can-deactivate-guard.service.ts</context><context context-type="linenumber">19</context></context-group> | 9643 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/routing/can-deactivate-guard.service.ts</context><context context-type="linenumber">19</context></context-group> |
9670 | </trans-unit> | 9644 | </trans-unit> |
9671 | <trans-unit id="6950140976689343775" datatype="html"> | 9645 | <trans-unit id="6950140976689343775" datatype="html"> |
9672 | <source>Sunday</source> | 9646 | <source>Sunday</source> |
9673 | <target state="new">Sunday</target> | 9647 | <target state="translated">Неділя</target> |
9674 | <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> | 9648 | <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> |
9675 | </trans-unit> | 9649 | </trans-unit> |
9676 | <trans-unit id="8739442281958563044" datatype="html"> | 9650 | <trans-unit id="8739442281958563044" datatype="html"> |
9677 | <source>Monday</source> | 9651 | <source>Monday</source> |
9678 | <target state="new">Monday</target> | 9652 | <target state="translated">Понеділок</target> |
9679 | <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> | 9653 | <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> |
9680 | </trans-unit> | 9654 | </trans-unit> |
9681 | <trans-unit id="9176037901730521018" datatype="html"> | 9655 | <trans-unit id="9176037901730521018" datatype="html"> |
9682 | <source>Tuesday</source> | 9656 | <source>Tuesday</source> |
9683 | <target state="new">Tuesday</target> | 9657 | <target state="translated">Вівторок</target> |
9684 | <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> | 9658 | <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> |
9685 | </trans-unit> | 9659 | </trans-unit> |
9686 | <trans-unit id="8798932904948432529" datatype="html"> | 9660 | <trans-unit id="8798932904948432529" datatype="html"> |
9687 | <source>Wednesday</source> | 9661 | <source>Wednesday</source> |
9688 | <target state="new">Wednesday</target> | 9662 | <target state="translated">Середа</target> |
9689 | <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> | 9663 | <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> |
9690 | </trans-unit> | 9664 | </trans-unit> |
9691 | <trans-unit id="1433683192825895947" datatype="html"> | 9665 | <trans-unit id="1433683192825895947" datatype="html"> |
9692 | <source>Thursday</source> | 9666 | <source>Thursday</source> |
9693 | <target state="new">Thursday</target> | 9667 | <target state="translated">Четвер</target> |
9694 | <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> | 9668 | <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> |
9695 | </trans-unit> | 9669 | </trans-unit> |
9696 | <trans-unit id="3730139500618908668" datatype="html"> | 9670 | <trans-unit id="3730139500618908668" datatype="html"> |
9697 | <source>Friday</source> | 9671 | <source>Friday</source> |
9698 | <target state="new">Friday</target> | 9672 | <target state="translated">П'ятниця</target> |
9699 | <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> | 9673 | <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> |
9700 | </trans-unit> | 9674 | </trans-unit> |
9701 | <trans-unit id="1830554030016307335" datatype="html"> | 9675 | <trans-unit id="1830554030016307335" datatype="html"> |
9702 | <source>Saturday</source> | 9676 | <source>Saturday</source> |
9703 | <target state="new">Saturday</target> | 9677 | <target state="translated">Субота</target> |
9704 | <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> | 9678 | <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> |
9705 | </trans-unit> | 9679 | </trans-unit> |
9706 | <trans-unit id="4921929243068857081" datatype="html"> | 9680 | <trans-unit id="4921929243068857081" datatype="html"> |
9707 | <source>Sun</source> | 9681 | <source>Sun</source> |
9708 | <target state="new">Sun</target> | 9682 | <target state="translated">Нд</target> |
9709 | <note priority="1" from="description">Day name short</note> | 9683 | <note priority="1" from="description">Day name short</note> |
9710 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">20</context></context-group> | 9684 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">20</context></context-group> |
9711 | </trans-unit> | 9685 | </trans-unit> |
9712 | <trans-unit id="8563137213157122993" datatype="html"> | 9686 | <trans-unit id="8563137213157122993" datatype="html"> |
9713 | <source>Mon</source> | 9687 | <source>Mon</source> |
9714 | <target state="new">Mon</target> | 9688 | <target state="translated">Пн</target> |
9715 | <note priority="1" from="description">Day name short</note> | 9689 | <note priority="1" from="description">Day name short</note> |
9716 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">21</context></context-group> | 9690 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">21</context></context-group> |
9717 | </trans-unit> | 9691 | </trans-unit> |
9718 | <trans-unit id="8502240922750617054" datatype="html"> | 9692 | <trans-unit id="8502240922750617054" datatype="html"> |
9719 | <source>Tue</source> | 9693 | <source>Tue</source> |
9720 | <target state="new">Tue</target> | 9694 | <target state="translated">Вт</target> |
9721 | <note priority="1" from="description">Day name short</note> | 9695 | <note priority="1" from="description">Day name short</note> |
9722 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">22</context></context-group> | 9696 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">22</context></context-group> |
9723 | </trans-unit> | 9697 | </trans-unit> |
9724 | <trans-unit id="7421778640995344715" datatype="html"> | 9698 | <trans-unit id="7421778640995344715" datatype="html"> |
9725 | <source>Wed</source> | 9699 | <source>Wed</source> |
9726 | <target state="new">Wed</target> | 9700 | <target state="translated">Ср</target> |
9727 | <note priority="1" from="description">Day name short</note> | 9701 | <note priority="1" from="description">Day name short</note> |
9728 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">23</context></context-group> | 9702 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">23</context></context-group> |
9729 | </trans-unit> | 9703 | </trans-unit> |
9730 | <trans-unit id="4409954796361883558" datatype="html"> | 9704 | <trans-unit id="4409954796361883558" datatype="html"> |
9731 | <source>Thu</source> | 9705 | <source>Thu</source> |
9732 | <target state="new">Thu</target> | 9706 | <target state="translated">Чт</target> |
9733 | <note priority="1" from="description">Day name short</note> | 9707 | <note priority="1" from="description">Day name short</note> |
9734 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">24</context></context-group> | 9708 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">24</context></context-group> |
9735 | </trans-unit> | 9709 | </trans-unit> |
9736 | <trans-unit id="5651951128882735477" datatype="html"> | 9710 | <trans-unit id="5651951128882735477" datatype="html"> |
9737 | <source>Fri</source> | 9711 | <source>Fri</source> |
9738 | <target state="new">Fri</target> | 9712 | <target state="translated">Пт</target> |
9739 | <note priority="1" from="description">Day name short</note> | 9713 | <note priority="1" from="description">Day name short</note> |
9740 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">25</context></context-group> | 9714 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">25</context></context-group> |
9741 | </trans-unit> | 9715 | </trans-unit> |
9742 | <trans-unit id="93026920674143073" datatype="html"> | 9716 | <trans-unit id="93026920674143073" datatype="html"> |
9743 | <source>Sat</source> | 9717 | <source>Sat</source> |
9744 | <target state="new">Sat</target> | 9718 | <target state="translated">Сб</target> |
9745 | <note priority="1" from="description">Day name short</note> | 9719 | <note priority="1" from="description">Day name short</note> |
9746 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">26</context></context-group> | 9720 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">26</context></context-group> |
9747 | </trans-unit> | 9721 | </trans-unit> |
9748 | <trans-unit id="8349763432924710200" datatype="html"> | 9722 | <trans-unit id="8349763432924710200" datatype="html"> |
9749 | <source>Su</source> | 9723 | <source>Su</source> |
9750 | <target state="new">Su</target> | 9724 | <target state="translated">Нд</target> |
9751 | <note priority="1" from="description">Day name min</note> | 9725 | <note priority="1" from="description">Day name min</note> |
9752 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">30</context></context-group> | 9726 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">30</context></context-group> |
9753 | </trans-unit> | 9727 | </trans-unit> |
9754 | <trans-unit id="4197236438302165051" datatype="html"> | 9728 | <trans-unit id="4197236438302165051" datatype="html"> |
9755 | <source>Mo</source> | 9729 | <source>Mo</source> |
9756 | <target state="new">Mo</target> | 9730 | <target state="translated">Пн</target> |
9757 | <note priority="1" from="description">Day name min</note> | 9731 | <note priority="1" from="description">Day name min</note> |
9758 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">31</context></context-group> | 9732 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">31</context></context-group> |
9759 | </trans-unit> | 9733 | </trans-unit> |
9760 | <trans-unit id="6034455877220674404" datatype="html"> | 9734 | <trans-unit id="6034455877220674404" datatype="html"> |
9761 | <source>Tu</source> | 9735 | <source>Tu</source> |
9762 | <target state="new">Tu</target> | 9736 | <target state="translated">Вт</target> |
9763 | <note priority="1" from="description">Day name min</note> | 9737 | <note priority="1" from="description">Day name min</note> |
9764 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">32</context></context-group> | 9738 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">32</context></context-group> |
9765 | </trans-unit> | 9739 | </trans-unit> |
9766 | <trans-unit id="3221670730445125135" datatype="html"> | 9740 | <trans-unit id="3221670730445125135" datatype="html"> |
9767 | <source>We</source> | 9741 | <source>We</source> |
9768 | <target state="new">We</target> | 9742 | <target state="translated">Ср</target> |
9769 | <note priority="1" from="description">Day name min</note> | 9743 | <note priority="1" from="description">Day name min</note> |
9770 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">33</context></context-group> | 9744 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">33</context></context-group> |
9771 | </trans-unit> | 9745 | </trans-unit> |
9772 | <trans-unit id="772466829681972216" datatype="html"> | 9746 | <trans-unit id="772466829681972216" datatype="html"> |
9773 | <source>Th</source> | 9747 | <source>Th</source> |
9774 | <target state="new">Th</target> | 9748 | <target state="translated">Чт</target> |
9775 | <note priority="1" from="description">Day name min</note> | 9749 | <note priority="1" from="description">Day name min</note> |
9776 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">34</context></context-group> | 9750 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">34</context></context-group> |
9777 | </trans-unit> | 9751 | </trans-unit> |
9778 | <trans-unit id="8598262708800132669" datatype="html"> | 9752 | <trans-unit id="8598262708800132669" datatype="html"> |
9779 | <source>Fr</source> | 9753 | <source>Fr</source> |
9780 | <target state="new">Fr</target> | 9754 | <target state="translated">Пт</target> |
9781 | <note priority="1" from="description">Day name min</note> | 9755 | <note priority="1" from="description">Day name min</note> |
9782 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">35</context></context-group> | 9756 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">35</context></context-group> |
9783 | </trans-unit> | 9757 | </trans-unit> |
9784 | <trans-unit id="569007902695332072" datatype="html"> | 9758 | <trans-unit id="569007902695332072" datatype="html"> |
9785 | <source>Sa</source> | 9759 | <source>Sa</source> |
9786 | <target state="new">Sa</target> | 9760 | <target state="translated">Сб</target> |
9787 | <note priority="1" from="description">Day name min</note> | 9761 | <note priority="1" from="description">Day name min</note> |
9788 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">36</context></context-group> | 9762 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">36</context></context-group> |
9789 | </trans-unit> | 9763 | </trans-unit> |
9790 | <trans-unit id="3913843642962116845" datatype="html"> | 9764 | <trans-unit id="3913843642962116845" datatype="html"> |
9791 | <source>January</source> | 9765 | <source>January</source> |
9792 | <target state="new">January</target> | 9766 | <target state="translated">Січень</target> |
9793 | <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> | 9767 | <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> |
9794 | </trans-unit> | 9768 | </trans-unit> |
9795 | <trans-unit id="6642324138857419870" datatype="html"> | 9769 | <trans-unit id="6642324138857419870" datatype="html"> |
9796 | <source>February</source> | 9770 | <source>February</source> |
9797 | <target state="new">February</target> | 9771 | <target state="translated">Лютий</target> |
9798 | <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> | 9772 | <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> |
9799 | </trans-unit> | 9773 | </trans-unit> |
9800 | <trans-unit id="7918954644624211958" datatype="html"> | 9774 | <trans-unit id="7918954644624211958" datatype="html"> |
9801 | <source>March</source> | 9775 | <source>March</source> |
9802 | <target state="new">March</target> | 9776 | <target state="translated">Березень</target> |
9803 | <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> | 9777 | <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> |
9804 | </trans-unit> | 9778 | </trans-unit> |
9805 | <trans-unit id="1809521303476565743" datatype="html"> | 9779 | <trans-unit id="1809521303476565743" datatype="html"> |
9806 | <source>April</source> | 9780 | <source>April</source> |
9807 | <target state="new">April</target> | 9781 | <target state="translated">Квітень</target> |
9808 | <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> | 9782 | <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> |
9809 | </trans-unit> | 9783 | </trans-unit> |
9810 | <trans-unit id="8469692700277617405" datatype="html"> | 9784 | <trans-unit id="8469692700277617405" datatype="html"> |
9811 | <source>May</source> | 9785 | <source>May</source> |
9812 | <target state="new">May</target> | 9786 | <target state="translated">Травень</target> |
9813 | <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> | 9787 | <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> |
9814 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">59</context></context-group> | 9788 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">59</context></context-group> |
9815 | </trans-unit> | 9789 | </trans-unit> |
9816 | <trans-unit id="9055297580745330415" datatype="html"> | 9790 | <trans-unit id="9055297580745330415" datatype="html"> |
9817 | <source>June</source> | 9791 | <source>June</source> |
9818 | <target state="new">June</target> | 9792 | <target state="translated">Червень</target> |
9819 | <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> | 9793 | <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> |
9820 | </trans-unit> | 9794 | </trans-unit> |
9821 | <trans-unit id="9087113544612471348" datatype="html"> | 9795 | <trans-unit id="9087113544612471348" datatype="html"> |
9822 | <source>July</source> | 9796 | <source>July</source> |
9823 | <target state="new">July</target> | 9797 | <target state="translated">Липень</target> |
9824 | <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> | 9798 | <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> |
9825 | </trans-unit> | 9799 | </trans-unit> |
9826 | <trans-unit id="3984618989093293779" datatype="html"> | 9800 | <trans-unit id="3984618989093293779" datatype="html"> |
9827 | <source>August</source> | 9801 | <source>August</source> |
9828 | <target state="new">August</target> | 9802 | <target state="translated">Серпень</target> |
9829 | <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> | 9803 | <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> |
9830 | </trans-unit> | 9804 | </trans-unit> |
9831 | <trans-unit id="5872622085239011307" datatype="html"> | 9805 | <trans-unit id="5872622085239011307" datatype="html"> |
9832 | <source>September</source> | 9806 | <source>September</source> |
9833 | <target state="new">September</target> | 9807 | <target state="translated">Вересень</target> |
9834 | <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> | 9808 | <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> |
9835 | </trans-unit> | 9809 | </trans-unit> |
9836 | <trans-unit id="1491482705364427867" datatype="html"> | 9810 | <trans-unit id="1491482705364427867" datatype="html"> |
9837 | <source>October</source> | 9811 | <source>October</source> |
9838 | <target state="new">October</target> | 9812 | <target state="translated">Жовтень</target> |
9839 | <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> | 9813 | <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> |
9840 | </trans-unit> | 9814 | </trans-unit> |
9841 | <trans-unit id="1109977718843277527" datatype="html"> | 9815 | <trans-unit id="1109977718843277527" datatype="html"> |
9842 | <source>November</source> | 9816 | <source>November</source> |
9843 | <target state="new">November</target> | 9817 | <target state="translated">Листопад</target> |
9844 | <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> | 9818 | <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> |
9845 | </trans-unit> | 9819 | </trans-unit> |
9846 | <trans-unit id="124191049522509365" datatype="html"> | 9820 | <trans-unit id="124191049522509365" datatype="html"> |
9847 | <source>December</source> | 9821 | <source>December</source> |
9848 | <target state="new">December</target> | 9822 | <target state="translated">Грудень</target> |
9849 | <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> | 9823 | <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> |
9850 | </trans-unit> | 9824 | </trans-unit> |
9851 | <trans-unit id="7595747576974676670" datatype="html"> | 9825 | <trans-unit id="7595747576974676670" datatype="html"> |
9852 | <source>Jan</source> | 9826 | <source>Jan</source> |
9853 | <target state="new">Jan</target> | 9827 | <target state="translated">Січ</target> |
9854 | <note priority="1" from="description">Month name short</note> | 9828 | <note priority="1" from="description">Month name short</note> |
9855 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">55</context></context-group> | 9829 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">55</context></context-group> |
9856 | </trans-unit> | 9830 | </trans-unit> |
9857 | <trans-unit id="4916040996255005712" datatype="html"> | 9831 | <trans-unit id="4916040996255005712" datatype="html"> |
9858 | <source>Feb</source> | 9832 | <source>Feb</source> |
9859 | <target state="new">Feb</target> | 9833 | <target state="translated">Лют</target> |
9860 | <note priority="1" from="description">Month name short</note> | 9834 | <note priority="1" from="description">Month name short</note> |
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">56</context></context-group> | 9835 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">56</context></context-group> |
9862 | </trans-unit> | 9836 | </trans-unit> |
9863 | <trans-unit id="6438827956918137617" datatype="html"> | 9837 | <trans-unit id="6438827956918137617" datatype="html"> |
9864 | <source>Mar</source> | 9838 | <source>Mar</source> |
9865 | <target state="new">Mar</target> | 9839 | <target state="translated">Бер</target> |
9866 | <note priority="1" from="description">Month name short</note> | 9840 | <note priority="1" from="description">Month name short</note> |
9867 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">57</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">57</context></context-group> |
9868 | </trans-unit> | 9842 | </trans-unit> |
9869 | <trans-unit id="5507326650332881991" datatype="html"> | 9843 | <trans-unit id="5507326650332881991" datatype="html"> |
9870 | <source>Apr</source> | 9844 | <source>Apr</source> |
9871 | <target state="new">Apr</target> | 9845 | <target state="translated">Кві</target> |
9872 | <note priority="1" from="description">Month name short</note> | 9846 | <note priority="1" from="description">Month name short</note> |
9873 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">58</context></context-group> | 9847 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">58</context></context-group> |
9874 | </trans-unit> | 9848 | </trans-unit> |
9875 | <trans-unit id="2113470244260512015" datatype="html"> | 9849 | <trans-unit id="2113470244260512015" datatype="html"> |
9876 | <source>Jun</source> | 9850 | <source>Jun</source> |
9877 | <target state="new">Jun</target> | 9851 | <target state="translated">Чер</target> |
9878 | <note priority="1" from="description">Month name short</note> | 9852 | <note priority="1" from="description">Month name short</note> |
9879 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">60</context></context-group> | 9853 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">60</context></context-group> |
9880 | </trans-unit> | 9854 | </trans-unit> |
9881 | <trans-unit id="53176888553719239" datatype="html"> | 9855 | <trans-unit id="53176888553719239" datatype="html"> |
9882 | <source>Jul</source> | 9856 | <source>Jul</source> |
9883 | <target state="new">Jul</target> | 9857 | <target state="translated">Лип</target> |
9884 | <note priority="1" from="description">Month name short</note> | 9858 | <note priority="1" from="description">Month name short</note> |
9885 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">61</context></context-group> | 9859 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">61</context></context-group> |
9886 | </trans-unit> | 9860 | </trans-unit> |
9887 | <trans-unit id="5648574669404659458" datatype="html"> | 9861 | <trans-unit id="5648574669404659458" datatype="html"> |
9888 | <source>Aug</source> | 9862 | <source>Aug</source> |
9889 | <target state="new">Aug</target> | 9863 | <target state="translated">Сер</target> |
9890 | <note priority="1" from="description">Month name short</note> | 9864 | <note priority="1" from="description">Month name short</note> |
9891 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">62</context></context-group> | 9865 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">62</context></context-group> |
9892 | </trans-unit> | 9866 | </trans-unit> |
9893 | <trans-unit id="4354095055982674918" datatype="html"> | 9867 | <trans-unit id="4354095055982674918" datatype="html"> |
9894 | <source>Sep</source> | 9868 | <source>Sep</source> |
9895 | <target state="new">Sep</target> | 9869 | <target state="translated">Вер</target> |
9896 | <note priority="1" from="description">Month name short</note> | 9870 | <note priority="1" from="description">Month name short</note> |
9897 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">63</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">63</context></context-group> |
9898 | </trans-unit> | 9872 | </trans-unit> |
9899 | <trans-unit id="6207754626941051341" datatype="html"> | 9873 | <trans-unit id="6207754626941051341" datatype="html"> |
9900 | <source>Oct</source> | 9874 | <source>Oct</source> |
9901 | <target state="new">Oct</target> | 9875 | <target state="translated">Жов</target> |
9902 | <note priority="1" from="description">Month name short</note> | 9876 | <note priority="1" from="description">Month name short</note> |
9903 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">64</context></context-group> | 9877 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">64</context></context-group> |
9904 | </trans-unit> | 9878 | </trans-unit> |
9905 | <trans-unit id="8269261039058575292" datatype="html"> | 9879 | <trans-unit id="8269261039058575292" datatype="html"> |
9906 | <source>Nov</source> | 9880 | <source>Nov</source> |
9907 | <target state="new">Nov</target> | 9881 | <target state="translated">Лис</target> |
9908 | <note priority="1" from="description">Month name short</note> | 9882 | <note priority="1" from="description">Month name short</note> |
9909 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">65</context></context-group> | 9883 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">65</context></context-group> |
9910 | </trans-unit> | 9884 | </trans-unit> |
9911 | <trans-unit id="7777579586760423636" datatype="html"> | 9885 | <trans-unit id="7777579586760423636" datatype="html"> |
9912 | <source>Dec</source> | 9886 | <source>Dec</source> |
9913 | <target state="new">Dec</target> | 9887 | <target state="translated">Гру</target> |
9914 | <note priority="1" from="description">Month name short</note> | 9888 | <note priority="1" from="description">Month name short</note> |
9915 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">66</context></context-group> | 9889 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/i18n-primeng-calendar.service.ts</context><context context-type="linenumber">66</context></context-group> |
9916 | </trans-unit> | 9890 | </trans-unit> |
9917 | <trans-unit id="8700121026680200191" datatype="html"> | 9891 | <trans-unit id="8700121026680200191" datatype="html"> |
9918 | <source>Clear</source> | 9892 | <source>Clear</source> |
9919 | <target state="new">Clear</target> | 9893 | <target state="translated">Очистити</target> |
9920 | <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> | 9894 | <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> |
9921 | </trans-unit> | 9895 | </trans-unit> |
9922 | <trans-unit id="5922757127987546008" datatype="html"> | 9896 | <trans-unit id="5922757127987546008" datatype="html"> |
9923 | <source>yy-mm-dd</source> | 9897 | <source>yy-mm-dd</source> |
9924 | <target state="new">yy-mm-dd </target> | 9898 | <target state="translated">рр-мм-дд</target> |
9925 | <note priority="1" from="description">Date format in this locale.</note> | 9899 | <note priority="1" from="description">Date format in this locale.</note> |
9926 | <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> | 9900 | <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> |
9927 | </trans-unit> | 9901 | </trans-unit> |
9928 | <trans-unit id="2830831449226931729" datatype="html"> | 9902 | <trans-unit id="2830831449226931729" datatype="html"> |
9929 | <source>Instance languages</source> | 9903 | <source>Instance languages</source> |
9930 | <target state="new">Instance languages</target> | 9904 | <target state="translated">Мови сервера</target> |
9931 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">179</context></context-group> | 9905 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">179</context></context-group> |
9932 | </trans-unit> | 9906 | </trans-unit> |
9933 | <trans-unit id="40119547597591062" datatype="html"> | 9907 | <trans-unit id="40119547597591062" datatype="html"> |
9934 | <source>All languages</source> | 9908 | <source>All languages</source> |
9935 | <target state="new">All languages</target> | 9909 | <target state="translated">Усі мови</target> |
9936 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">180</context></context-group> | 9910 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/shared/video-edit.component.ts</context><context context-type="linenumber">180</context></context-group> |
9937 | <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> | 9911 | <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> |
9938 | </trans-unit> | 9912 | </trans-unit> |
9939 | <trans-unit id="996392855508119363" datatype="html"> | 9913 | <trans-unit id="996392855508119363" datatype="html"> |
9940 | <source>Hidden</source> | 9914 | <source>Hidden</source> |
9941 | <target state="new">Hidden</target> | 9915 | <target state="translated">Сховані</target> |
9942 | <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> | 9916 | <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> |
9943 | </trans-unit> | 9917 | </trans-unit> |
9944 | <trans-unit id="2173989454916398137" datatype="html"> | 9918 | <trans-unit id="2173989454916398137" datatype="html"> |
9945 | <source>Blurred with confirmation request</source> | 9919 | <source>Blurred with confirmation request</source> |
9946 | <target state="new">Blurred with confirmation request</target> | 9920 | <target state="translated">Розмито запитом підтвердження</target> |
9947 | <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> | 9921 | <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> |
9948 | </trans-unit> | 9922 | </trans-unit> |
9949 | <trans-unit id="8929218224642530466" datatype="html"> | 9923 | <trans-unit id="8929218224642530466" datatype="html"> |
9950 | <source>Displayed</source> | 9924 | <source>Displayed</source> |
9951 | <target state="new">Displayed</target> | 9925 | <target state="translated">Показано</target> |
9952 | <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> | 9926 | <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> |
9953 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">227</context></context-group> | 9927 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-filters.model.ts</context><context context-type="linenumber">227</context></context-group> |
9954 | </trans-unit> | 9928 | </trans-unit> |
9955 | <trans-unit id="6291055174438137560" datatype="html"> | 9929 | <trans-unit id="6291055174438137560" datatype="html"> |
9956 | <source>~ 1 minute</source> | 9930 | <source>~ 1 minute</source> |
9957 | <target state="new">~ 1 minute</target> | 9931 | <target state="translated">~ 1 хвилина</target> |
9958 | <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> | 9932 | <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> |
9959 | </trans-unit> | 9933 | </trans-unit> |
9960 | <trans-unit id="189524047518780716" datatype="html"> | 9934 | <trans-unit id="189524047518780716" datatype="html"> |
9961 | <source>~ <x id="PH"/> minutes</source> | 9935 | <source>~ <x id="PH"/> minutes</source> |
9962 | <target state="new">~ <x id="PH"/> minutes</target> | 9936 | <target state="translated">~ <x id="PH"/> хвилин</target> |
9963 | <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> | 9937 | <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> |
9964 | </trans-unit> | 9938 | </trans-unit> |
9965 | <trans-unit id="6028521920505655348" datatype="html"> | 9939 | <trans-unit id="6028521920505655348" datatype="html"> |
9966 | <source><x id="PH"/> of full HD videos </source> | 9940 | <source><x id="PH"/> of full HD videos </source> |
9967 | <target state="new"> | 9941 | <target state="translated"><x id="PH"/> із full HD відео </target> |
9968 | <x id="PH"/> of full HD videos | ||
9969 | </target> | ||
9970 | <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> | 9942 | <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> |
9971 | </trans-unit> | 9943 | </trans-unit> |
9972 | <trans-unit id="117588083391484998" datatype="html"> | 9944 | <trans-unit id="117588083391484998" datatype="html"> |
9973 | <source><x id="PH"/> of HD videos </source> | 9945 | <source><x id="PH"/> of HD videos </source> |
9974 | <target state="new"> | 9946 | <target state="translated"><x id="PH"/> із HD відео </target> |
9975 | <x id="PH"/> of HD videos | ||
9976 | </target> | ||
9977 | <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> | 9947 | <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> |
9978 | </trans-unit> | 9948 | </trans-unit> |
9979 | <trans-unit id="6636555695556123073" datatype="html"> | 9949 | <trans-unit id="6636555695556123073" datatype="html"> |
9980 | <source><x id="PH"/> of average quality videos </source> | 9950 | <source><x id="PH"/> of average quality videos </source> |
9981 | <target state="new"> | 9951 | <target state="translated"><x id="PH"/> із середньою якістю відео </target> |
9982 | <x id="PH"/> of average quality videos | ||
9983 | </target> | ||
9984 | <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> | 9952 | <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> |
9985 | </trans-unit> | 9953 | </trans-unit> |
9986 | <trans-unit id="6952960992592445535" datatype="html"> | 9954 | <trans-unit id="6952960992592445535" datatype="html"> |
9987 | <source><x id="PH"/> (channel page) </source> | 9955 | <source><x id="PH"/> (channel page) </source> |
9988 | <target state="new"> | 9956 | <target state="translated"><x id="PH"/> (сторінка каналу) </target> |
9989 | <x id="PH"/> (channel page) | 9957 | <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">19</context></context-group> |
9990 | </target> | 9958 | <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> |
9991 | 9959 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">113</context></context-group> | |
9992 | 9960 | </trans-unit> | |
9993 | |||
9994 | <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">19</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">113</context></context-group></trans-unit> | ||
9995 | <trans-unit id="1209500590333005801" datatype="html"> | 9961 | <trans-unit id="1209500590333005801" datatype="html"> |
9996 | <source><x id="PH"/> (account page) </source> | 9962 | <source><x id="PH"/> (account page) </source> |
9997 | <target state="new"> | 9963 | <target state="translated"><x id="PH"/> (сторінка облікового запису) </target> |
9998 | <x id="PH"/> (account page) | 9964 | <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> |
9999 | </target> | 9965 | <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> |
10000 | 9966 | </trans-unit> | |
10001 | |||
10002 | <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">39</context></context-group></trans-unit> | ||
10003 | <trans-unit id="2516633974298697807" datatype="html"> | 9967 | <trans-unit id="2516633974298697807" datatype="html"> |
10004 | <source>Emphasis</source> | 9968 | <source>Emphasis</source> |
10005 | <target state="new">Emphasis</target> | 9969 | <target state="new">Emphasis</target> |
@@ -10007,12 +9971,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10007 | </trans-unit> | 9971 | </trans-unit> |
10008 | <trans-unit id="7565716024468232322" datatype="html"> | 9972 | <trans-unit id="7565716024468232322" datatype="html"> |
10009 | <source>Links</source> | 9973 | <source>Links</source> |
10010 | <target state="new">Links</target> | 9974 | <target state="translated">Посилання</target> |
10011 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group> | 9975 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group> |
10012 | </trans-unit> | 9976 | </trans-unit> |
10013 | <trans-unit id="7838476952710404110" datatype="html"> | 9977 | <trans-unit id="7838476952710404110" datatype="html"> |
10014 | <source>New lines</source> | 9978 | <source>New lines</source> |
10015 | <target state="new">New lines</target> | 9979 | <target state="translated">Нові рядки</target> |
10016 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group> | 9980 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group> |
10017 | </trans-unit> | 9981 | </trans-unit> |
10018 | <trans-unit id="8756167649220050929" datatype="html"> | 9982 | <trans-unit id="8756167649220050929" datatype="html"> |
@@ -10022,19 +9986,17 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10022 | </trans-unit> | 9986 | </trans-unit> |
10023 | <trans-unit id="414887388288176527" datatype="html"> | 9987 | <trans-unit id="414887388288176527" datatype="html"> |
10024 | <source>Images</source> | 9988 | <source>Images</source> |
10025 | <target state="new">Images</target> | 9989 | <target state="translated">Зображення</target> |
10026 | <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> | 9990 | <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> |
10027 | </trans-unit> | 9991 | </trans-unit> |
10028 | <trans-unit id="6853170548960328665" datatype="html"> | 9992 | <trans-unit id="6853170548960328665" datatype="html"> |
10029 | <source>Close search</source> | 9993 | <source>Close search</source> |
10030 | <target state="new">Close search</target> | 9994 | <target state="translated">Закрити пошук</target> |
10031 | <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> | 9995 | <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> |
10032 | </trans-unit> | 9996 | </trans-unit> |
10033 | <trans-unit id="5708680277917691451" datatype="html"> | 9997 | <trans-unit id="5708680277917691451" datatype="html"> |
10034 | <source><x id="PH"/> users banned. </source> | 9998 | <source><x id="PH"/> users banned. </source> |
10035 | <target state="new"> | 9999 | <target state="translated"><x id="PH"/> користувачів заблоковано. </target> |
10036 | <x id="PH"/> users banned. | ||
10037 | </target> | ||
10038 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">53</context></context-group> | 10000 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-ban-modal.component.ts</context><context context-type="linenumber">53</context></context-group> |
10039 | </trans-unit> | 10001 | </trans-unit> |
10040 | <trans-unit id="2448281151916042849" datatype="html"> | 10002 | <trans-unit id="2448281151916042849" datatype="html"> |
@@ -10145,17 +10107,17 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10145 | </trans-unit> | 10107 | </trans-unit> |
10146 | <trans-unit id="6315346579373254461" datatype="html"> | 10108 | <trans-unit id="6315346579373254461" datatype="html"> |
10147 | <source>Delete account comments</source> | 10109 | <source>Delete account comments</source> |
10148 | <target state="new">Delete account comments</target> | 10110 | <target state="translated">Видалити коментарі облікового запису</target> |
10149 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">227</context></context-group> | 10111 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">227</context></context-group> |
10150 | </trans-unit> | 10112 | </trans-unit> |
10151 | <trans-unit id="8559170154828316298" datatype="html"> | 10113 | <trans-unit id="8559170154828316298" datatype="html"> |
10152 | <source>Will remove comments of this account (may take several minutes).</source> | 10114 | <source>Will remove comments of this account (may take several minutes).</source> |
10153 | <target state="new">Will remove comments of this account (may take several minutes).</target> | 10115 | <target state="translated">Вилучить коментарі цього облікового запису (може тривати кілька хвилин).</target> |
10154 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">233</context></context-group> | 10116 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">233</context></context-group> |
10155 | </trans-unit> | 10117 | </trans-unit> |
10156 | <trans-unit id="7187838764371214919" datatype="html"> | 10118 | <trans-unit id="7187838764371214919" datatype="html"> |
10157 | <source>Edit user</source> | 10119 | <source>Edit user</source> |
10158 | <target state="new">Edit user</target> | 10120 | <target state="translated">Редагувати користувача</target> |
10159 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">261</context></context-group> | 10121 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">261</context></context-group> |
10160 | </trans-unit> | 10122 | </trans-unit> |
10161 | <trans-unit id="4728427543536046034" datatype="html"> | 10123 | <trans-unit id="4728427543536046034" datatype="html"> |
@@ -10165,12 +10127,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10165 | </trans-unit> | 10127 | </trans-unit> |
10166 | <trans-unit id="7913022656086109932" datatype="html"> | 10128 | <trans-unit id="7913022656086109932" datatype="html"> |
10167 | <source>Delete user</source> | 10129 | <source>Delete user</source> |
10168 | <target state="new">Delete user</target> | 10130 | <target state="translated">Видалити користувача</target> |
10169 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">266</context></context-group> | 10131 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">266</context></context-group> |
10170 | </trans-unit> | 10132 | </trans-unit> |
10171 | <trans-unit id="7577876364431026966" datatype="html"> | 10133 | <trans-unit id="7577876364431026966" datatype="html"> |
10172 | <source>Unban user</source> | 10134 | <source>Unban user</source> |
10173 | <target state="new">Unban user</target> | 10135 | <target state="translated">Розблокувати користувача</target> |
10174 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">277</context></context-group> | 10136 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/user-moderation-dropdown.component.ts</context><context context-type="linenumber">277</context></context-group> |
10175 | </trans-unit> | 10137 | </trans-unit> |
10176 | <trans-unit id="3508163549683020253" datatype="html"> | 10138 | <trans-unit id="3508163549683020253" datatype="html"> |
@@ -10325,7 +10287,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10325 | </trans-unit> | 10287 | </trans-unit> |
10326 | <trans-unit id="1378933246324202613" datatype="html"> | 10288 | <trans-unit id="1378933246324202613" datatype="html"> |
10327 | <source>Breaks server rules</source> | 10289 | <source>Breaks server rules</source> |
10328 | <target state="new">Breaks server rules</target> | 10290 | <target state="translated">Порушує правила сервера</target> |
10329 | <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> | 10291 | <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> |
10330 | </trans-unit> | 10292 | </trans-unit> |
10331 | <trans-unit id="7930601470861156366" datatype="html"> | 10293 | <trans-unit id="7930601470861156366" datatype="html"> |
@@ -10420,9 +10382,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10420 | </trans-unit> | 10382 | </trans-unit> |
10421 | <trans-unit id="4968151111061046122" datatype="html"> | 10383 | <trans-unit id="4968151111061046122" datatype="html"> |
10422 | <source>Moderator</source> | 10384 | <source>Moderator</source> |
10423 | <target state="new">Moderator</target> | 10385 | <target state="translated">Модератор</target> |
10424 | 10386 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group> | |
10425 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group></trans-unit> | 10387 | </trans-unit> |
10426 | <trans-unit id="2279527393438260622" datatype="html"> | 10388 | <trans-unit id="2279527393438260622" datatype="html"> |
10427 | <source>Search videos, playlists, channels…</source> | 10389 | <source>Search videos, playlists, channels…</source> |
10428 | <target state="new">Search videos, playlists, channels…</target> | 10390 | <target state="new">Search videos, playlists, channels…</target> |
@@ -10478,43 +10440,43 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10478 | </trans-unit> | 10440 | </trans-unit> |
10479 | <trans-unit id="2909684945706361544" datatype="html"> | 10441 | <trans-unit id="2909684945706361544" datatype="html"> |
10480 | <source>Delete video</source> | 10442 | <source>Delete video</source> |
10481 | <target state="new">Delete video</target> | 10443 | <target state="translated">Видалити відео</target> |
10482 | <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> | 10444 | <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> |
10483 | </trans-unit> | 10445 | </trans-unit> |
10484 | <trans-unit id="2210418817778733727" datatype="html"> | 10446 | <trans-unit id="2210418817778733727" datatype="html"> |
10485 | <source>Actions for the comment</source> | 10447 | <source>Actions for the comment</source> |
10486 | <target state="new">Actions for the comment</target> | 10448 | <target state="translated">Дії з коментарем</target> |
10487 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">412</context></context-group> | 10449 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">412</context></context-group> |
10488 | </trans-unit> | 10450 | </trans-unit> |
10489 | <trans-unit id="7978668497183230348" datatype="html"> | 10451 | <trans-unit id="7978668497183230348" datatype="html"> |
10490 | <source>Delete comment</source> | 10452 | <source>Delete comment</source> |
10491 | <target state="new">Delete comment</target> | 10453 | <target state="translated">Видалити коментар</target> |
10492 | <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> | 10454 | <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> |
10493 | </trans-unit> | 10455 | </trans-unit> |
10494 | <trans-unit id="6747218355168080191" datatype="html"> | 10456 | <trans-unit id="6747218355168080191" datatype="html"> |
10495 | <source>Do you really want to delete this comment?</source> | 10457 | <source>Do you really want to delete this comment?</source> |
10496 | <target state="new">Do you really want to delete this comment?</target> | 10458 | <target state="translated">Справді хочете видалити цей коментар?</target> |
10497 | <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> | 10459 | <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> |
10498 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">422</context></context-group> | 10460 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">422</context></context-group> |
10499 | </trans-unit> | 10461 | </trans-unit> |
10500 | <trans-unit id="7837272126865175984" datatype="html"> | 10462 | <trans-unit id="7837272126865175984" datatype="html"> |
10501 | <source>Comment deleted.</source> | 10463 | <source>Comment deleted.</source> |
10502 | <target state="new">Comment deleted.</target> | 10464 | <target state="translated">Коментар видалено.</target> |
10503 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">430</context></context-group> | 10465 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">430</context></context-group> |
10504 | </trans-unit> | 10466 | </trans-unit> |
10505 | <trans-unit id="346270517625845962" datatype="html"> | 10467 | <trans-unit id="346270517625845962" datatype="html"> |
10506 | <source>Encoder</source> | 10468 | <source>Encoder</source> |
10507 | <target state="new">Encoder</target> | 10469 | <target state="translated">Кодувальник</target> |
10508 | <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> | 10470 | <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> |
10509 | </trans-unit> | 10471 | </trans-unit> |
10510 | <trans-unit id="2331557444464201331" datatype="html"> | 10472 | <trans-unit id="2331557444464201331" datatype="html"> |
10511 | <source>Format name</source> | 10473 | <source>Format name</source> |
10512 | <target state="new">Format name</target> | 10474 | <target state="translated">Назва формату</target> |
10513 | <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> | 10475 | <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> |
10514 | </trans-unit> | 10476 | </trans-unit> |
10515 | <trans-unit id="45739481977493163" datatype="html"> | 10477 | <trans-unit id="45739481977493163" datatype="html"> |
10516 | <source>Size</source> | 10478 | <source>Size</source> |
10517 | <target state="new">Size</target> | 10479 | <target state="translated">Розмір</target> |
10518 | <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> | 10480 | <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> |
10519 | </trans-unit> | 10481 | </trans-unit> |
10520 | <trans-unit id="7742520815129539114" datatype="html"> | 10482 | <trans-unit id="7742520815129539114" datatype="html"> |
@@ -10525,36 +10487,36 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10525 | </trans-unit> | 10487 | </trans-unit> |
10526 | <trans-unit id="4094960161662677662" datatype="html"> | 10488 | <trans-unit id="4094960161662677662" datatype="html"> |
10527 | <source>Codec</source> | 10489 | <source>Codec</source> |
10528 | <target state="new">Codec</target> | 10490 | <target state="translated">Кодек</target> |
10529 | <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> | 10491 | <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> |
10530 | </trans-unit> | 10492 | </trans-unit> |
10531 | <trans-unit id="2115592966120408375" datatype="html"> | 10493 | <trans-unit id="2115592966120408375" datatype="html"> |
10532 | <source>Copied</source> | 10494 | <source>Copied</source> |
10533 | <target state="new">Copied</target> | 10495 | <target state="translated">Скопійовано</target> |
10534 | <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> | 10496 | <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> |
10535 | <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> | 10497 | <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> |
10536 | </trans-unit> | 10498 | </trans-unit> |
10537 | <trans-unit id="4323470180912194028" datatype="html"> | 10499 | <trans-unit id="4323470180912194028" datatype="html"> |
10538 | <source>Copy</source> | 10500 | <source>Copy</source> |
10539 | <target state="new">Copy</target> | 10501 | <target state="translated">Копіювати</target> |
10540 | <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> | 10502 | <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> |
10541 | <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> | 10503 | <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> |
10542 | </trans-unit> | 10504 | </trans-unit> |
10543 | <trans-unit id="1472171759957681533" datatype="html"> | 10505 | <trans-unit id="1472171759957681533" datatype="html"> |
10544 | <source>Video reported.</source> | 10506 | <source>Video reported.</source> |
10545 | <target state="new">Video reported.</target> | 10507 | <target state="translated">Скаргу на відео надіслано.</target> |
10546 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.ts</context><context context-type="linenumber">113</context></context-group> | 10508 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-moderation/report-modals/video-report.component.ts</context><context context-type="linenumber">113</context></context-group> |
10547 | </trans-unit> | 10509 | </trans-unit> |
10548 | <trans-unit id="3622946684246476652" datatype="html"> | 10510 | <trans-unit id="3622946684246476652" datatype="html"> |
10549 | <source>Do you really want to delete this video?</source> | 10511 | <source>Do you really want to delete this video?</source> |
10550 | <target state="new">Do you really want to delete this video?</target> | 10512 | <target state="translated">Справді хочете видалити це відео?</target> |
10551 | <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> | 10513 | <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> |
10552 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">387</context></context-group> | 10514 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">387</context></context-group> |
10553 | <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> | 10515 | <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> |
10554 | </trans-unit> | 10516 | </trans-unit> |
10555 | <trans-unit id="3941342949736653028" datatype="html"> | 10517 | <trans-unit id="3941342949736653028" datatype="html"> |
10556 | <source>Video deleted.</source> | 10518 | <source>Video deleted.</source> |
10557 | <target state="new">Video deleted.</target> | 10519 | <target state="translated">Відео видалено.</target> |
10558 | <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">98</context></context-group> | 10520 | <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">98</context></context-group> |
10559 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">395</context></context-group> | 10521 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">395</context></context-group> |
10560 | </trans-unit> | 10522 | </trans-unit> |
@@ -10595,28 +10557,28 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10595 | </trans-unit> | 10557 | </trans-unit> |
10596 | <trans-unit id="420763834450076269" datatype="html"> | 10558 | <trans-unit id="420763834450076269" datatype="html"> |
10597 | <source>Block</source> | 10559 | <source>Block</source> |
10598 | <target state="new">Block</target> | 10560 | <target state="translated">Блокувати</target> |
10599 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">290</context></context-group> | 10561 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">290</context></context-group> |
10600 | </trans-unit> | 10562 | </trans-unit> |
10601 | <trans-unit id="1950057220179636309" datatype="html"> | 10563 | <trans-unit id="1950057220179636309" datatype="html"> |
10602 | <source>Save to playlist</source> | 10564 | <source>Save to playlist</source> |
10603 | <target state="new">Save to playlist</target> | 10565 | <target state="translated">Зберегти у добірку</target> |
10604 | <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> | 10566 | <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> |
10605 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">264</context></context-group> | 10567 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">264</context></context-group> |
10606 | </trans-unit> | 10568 | </trans-unit> |
10607 | <trans-unit id="8272123190776748811" datatype="html"> | 10569 | <trans-unit id="8272123190776748811" datatype="html"> |
10608 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> | 10570 | <source>You need to be <a href="/login">logged in</a> to rate this video.</source> |
10609 | <target state="new">You need to be <a href="/login">logged in</a> to rate this video.</target> | 10571 | <target state="translated"><a href="/login">Увійдіть</a>, щоб оцінити це відео.</target> |
10610 | <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> | 10572 | <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> |
10611 | </trans-unit> | 10573 | </trans-unit> |
10612 | <trans-unit id="4503408361537553733" datatype="html"> | 10574 | <trans-unit id="4503408361537553733" datatype="html"> |
10613 | <source>Mirror</source> | 10575 | <source>Mirror</source> |
10614 | <target state="new">Mirror</target> | 10576 | <target state="translated">Дзеркало</target> |
10615 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">302</context></context-group> | 10577 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">302</context></context-group> |
10616 | </trans-unit> | 10578 | </trans-unit> |
10617 | <trans-unit id="2631340539474479416" datatype="html"> | 10579 | <trans-unit id="2631340539474479416" datatype="html"> |
10618 | <source>Subtitles</source> | 10580 | <source>Subtitles</source> |
10619 | <target state="new">Subtitles</target> | 10581 | <target state="translated">Субтитри</target> |
10620 | <context-group purpose="location"> | 10582 | <context-group purpose="location"> |
10621 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> | 10583 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.html</context> |
10622 | <context context-type="linenumber">9</context> | 10584 | <context context-type="linenumber">9</context> |
@@ -10630,7 +10592,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10630 | </trans-unit> | 10592 | </trans-unit> |
10631 | <trans-unit id="4814285799071780083" datatype="html"> | 10593 | <trans-unit id="4814285799071780083" datatype="html"> |
10632 | <source>Remove</source> | 10594 | <source>Remove</source> |
10633 | <target state="new">Remove</target> | 10595 | <target state="translated">Вилучити</target> |
10634 | <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> | 10596 | <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> |
10635 | </trans-unit> | 10597 | </trans-unit> |
10636 | <trans-unit id="6871668720687277843" datatype="html"> | 10598 | <trans-unit id="6871668720687277843" datatype="html"> |
@@ -10640,7 +10602,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10640 | </trans-unit> | 10602 | </trans-unit> |
10641 | <trans-unit id="992317512448454409" datatype="html"> | 10603 | <trans-unit id="992317512448454409" datatype="html"> |
10642 | <source>{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</source> | 10604 | <source>{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</source> |
10643 | <target state="new">{VAR_PLURAL, plural, =0 {Comments} =1 {1 Comment} other {<x id="INTERPOLATION"/> Comments}}</target> | 10605 | <target state="translated">{VAR_PLURAL, plural, =0 {коментарів} =1 {1 коментар} few {<x id="INTERPOLATION"/> коментарі} many {<x id="INTERPOLATION"/> коментарів} other {<x id="INTERPOLATION"/> коментаря}}</target> |
10644 | <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> | 10606 | <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> |
10645 | </trans-unit> | 10607 | </trans-unit> |
10646 | <trans-unit id="4903651219400691248" datatype="html"> | 10608 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -10651,7 +10613,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10651 | </trans-unit> | 10613 | </trans-unit> |
10652 | <trans-unit id="4021487547497211597" datatype="html"> | 10614 | <trans-unit id="4021487547497211597" datatype="html"> |
10653 | <source>Open video actions</source> | 10615 | <source>Open video actions</source> |
10654 | <target state="new">Open video actions</target> | 10616 | <target state="translated">Відкрити дії з відео</target> |
10655 | <context-group purpose="location"> | 10617 | <context-group purpose="location"> |
10656 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.html</context> | 10618 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.html</context> |
10657 | <context context-type="linenumber">4</context> | 10619 | <context context-type="linenumber">4</context> |
@@ -10668,7 +10630,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10668 | </trans-unit> | 10630 | </trans-unit> |
10669 | <trans-unit id="7008439939460403347" datatype="html"> | 10631 | <trans-unit id="7008439939460403347" datatype="html"> |
10670 | <source>Report</source> | 10632 | <source>Report</source> |
10671 | <target state="new">Report</target> | 10633 | <target state="translated">Поскаржитися</target> |
10672 | <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> | 10634 | <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> |
10673 | </trans-unit> | 10635 | </trans-unit> |
10674 | <trans-unit id="829951422090160526" datatype="html"> | 10636 | <trans-unit id="829951422090160526" datatype="html"> |
@@ -10678,12 +10640,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10678 | </trans-unit> | 10640 | </trans-unit> |
10679 | <trans-unit id="4388879716045736175" datatype="html"> | 10641 | <trans-unit id="4388879716045736175" datatype="html"> |
10680 | <source>Note</source> | 10642 | <source>Note</source> |
10681 | <target state="new">Note</target> | 10643 | <target state="translated">Примітка</target> |
10682 | <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> | 10644 | <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> |
10683 | </trans-unit> | 10645 | </trans-unit> |
10684 | <trans-unit id="7234922541542636802" datatype="html"> | 10646 | <trans-unit id="7234922541542636802" datatype="html"> |
10685 | <source>The video was deleted</source> | 10647 | <source>The video was deleted</source> |
10686 | <target state="new">The video was deleted</target> | 10648 | <target state="translated">Відео було видалено</target> |
10687 | <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> | 10649 | <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> |
10688 | </trans-unit> | 10650 | </trans-unit> |
10689 | <trans-unit id="872792317034860453" datatype="html"> | 10651 | <trans-unit id="872792317034860453" datatype="html"> |
@@ -10738,7 +10700,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10738 | </trans-unit> | 10700 | </trans-unit> |
10739 | <trans-unit id="8492933894084361602" datatype="html"> | 10701 | <trans-unit id="8492933894084361602" datatype="html"> |
10740 | <source>Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</source> | 10702 | <source>Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</source> |
10741 | <target state="new">Subscribe to RSS feed "<x id="INTERPOLATION" equiv-text="{{ title }}"/>"</target> | 10703 | <target state="translated">Підписатися на RSS-стрічку «<x id="INTERPOLATION" equiv-text="{{ title }}"/>»</target> |
10742 | <context-group purpose="location"> | 10704 | <context-group purpose="location"> |
10743 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context> | 10705 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-list.component.html</context> |
10744 | <context context-type="linenumber">8</context> | 10706 | <context context-type="linenumber">8</context> |
@@ -10746,7 +10708,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10746 | </trans-unit> | 10708 | </trans-unit> |
10747 | <trans-unit id="187187500641108332" datatype="html"> | 10709 | <trans-unit id="187187500641108332" datatype="html"> |
10748 | <source><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></source> | 10710 | <source><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></source> |
10749 | <target state="new"><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></target> | 10711 | <target state="translated"><x id="INTERPOLATION" equiv-text="{{ noResultMessage }}"/></target> |
10750 | <context-group purpose="location"> | 10712 | <context-group purpose="location"> |
10751 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context> | 10713 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context> |
10752 | <context context-type="linenumber">1</context> | 10714 | <context context-type="linenumber">1</context> |
@@ -10804,82 +10766,82 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10804 | </trans-unit> | 10766 | </trans-unit> |
10805 | <trans-unit id="ngb.carousel.slide-number" datatype="html"> | 10767 | <trans-unit id="ngb.carousel.slide-number" datatype="html"> |
10806 | <source>Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </source> | 10768 | <source>Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </source> |
10807 | <target state="new"> Slide <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> of <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </target> | 10769 | <target state="translated">Слайд <x id="INTERPOLATION" equiv-text="ate _pauseOnHov"/> з <x id="INTERPOLATION_1" equiv-text="ect(false); p"/> </target> |
10808 | <note priority="1" from="description">Currently selected slide number read by screen reader</note> | 10770 | <note priority="1" from="description">Currently selected slide number read by screen reader</note> |
10809 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">114</context></context-group> | 10771 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">114</context></context-group> |
10810 | </trans-unit> | 10772 | </trans-unit> |
10811 | <trans-unit id="ngb.carousel.previous" datatype="html"> | 10773 | <trans-unit id="ngb.carousel.previous" datatype="html"> |
10812 | <source>Previous</source> | 10774 | <source>Previous</source> |
10813 | <target state="new">Previous</target> | 10775 | <target state="translated">Попередній</target> |
10814 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">132</context></context-group> | 10776 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">132</context></context-group> |
10815 | </trans-unit> | 10777 | </trans-unit> |
10816 | <trans-unit id="ngb.carousel.next" datatype="html"> | 10778 | <trans-unit id="ngb.carousel.next" datatype="html"> |
10817 | <source>Next</source> | 10779 | <source>Next</source> |
10818 | <target state="translated">Наступн</target> | 10780 | <target state="translated">Наступнй</target> |
10819 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">147</context></context-group> | 10781 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/carousel/carousel.ts</context><context context-type="linenumber">147</context></context-group> |
10820 | </trans-unit> | 10782 | </trans-unit> |
10821 | <trans-unit id="ngb.datepicker.previous-month" datatype="html"> | 10783 | <trans-unit id="ngb.datepicker.previous-month" datatype="html"> |
10822 | <source>Previous month</source> | 10784 | <source>Previous month</source> |
10823 | <target state="new">Previous month</target> | 10785 | <target state="translated">Попередній місяць</target> |
10824 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">24</context></context-group> | 10786 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">24</context></context-group> |
10825 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">35</context></context-group> | 10787 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">35</context></context-group> |
10826 | </trans-unit> | 10788 | </trans-unit> |
10827 | <trans-unit id="ngb.datepicker.next-month" datatype="html"> | 10789 | <trans-unit id="ngb.datepicker.next-month" datatype="html"> |
10828 | <source>Next month</source> | 10790 | <source>Next month</source> |
10829 | <target state="new">Next month</target> | 10791 | <target state="translated">Наступний місяць</target> |
10830 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">47</context></context-group> | 10792 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">47</context></context-group> |
10831 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">60</context></context-group> | 10793 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation.ts</context><context context-type="linenumber">60</context></context-group> |
10832 | </trans-unit> | 10794 | </trans-unit> |
10833 | <trans-unit id="ngb.datepicker.select-month" datatype="html"> | 10795 | <trans-unit id="ngb.datepicker.select-month" datatype="html"> |
10834 | <source>Select month</source> | 10796 | <source>Select month</source> |
10835 | <target state="new">Select month</target> | 10797 | <target state="translated">Вибрати місяць</target> |
10836 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">44</context></context-group> | 10798 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">44</context></context-group> |
10837 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">49</context></context-group> | 10799 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">49</context></context-group> |
10838 | </trans-unit> | 10800 | </trans-unit> |
10839 | <trans-unit id="ngb.datepicker.select-year" datatype="html"> | 10801 | <trans-unit id="ngb.datepicker.select-year" datatype="html"> |
10840 | <source>Select year</source> | 10802 | <source>Select year</source> |
10841 | <target state="new">Select year</target> | 10803 | <target state="translated">Вибрати рік</target> |
10842 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">59</context></context-group> | 10804 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">59</context></context-group> |
10843 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">74</context></context-group> | 10805 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/datepicker/datepicker-navigation-select.ts</context><context context-type="linenumber">74</context></context-group> |
10844 | </trans-unit> | 10806 | </trans-unit> |
10845 | <trans-unit id="ngb.pagination.first" datatype="html"> | 10807 | <trans-unit id="ngb.pagination.first" datatype="html"> |
10846 | <source>««</source> | 10808 | <source>««</source> |
10847 | <target state="new">««</target> | 10809 | <target state="translated">««</target> |
10848 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">182</context></context-group> | 10810 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">182</context></context-group> |
10849 | </trans-unit> | 10811 | </trans-unit> |
10850 | <trans-unit id="ngb.pagination.previous" datatype="html"> | 10812 | <trans-unit id="ngb.pagination.previous" datatype="html"> |
10851 | <source>«</source> | 10813 | <source>«</source> |
10852 | <target state="new">«</target> | 10814 | <target state="translated">«</target> |
10853 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">186</context></context-group> | 10815 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">186</context></context-group> |
10854 | </trans-unit> | 10816 | </trans-unit> |
10855 | <trans-unit id="ngb.pagination.next" datatype="html"> | 10817 | <trans-unit id="ngb.pagination.next" datatype="html"> |
10856 | <source>»</source> | 10818 | <source>»</source> |
10857 | <target state="new">»</target> | 10819 | <target state="translated">»</target> |
10858 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">194</context></context-group> | 10820 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">194</context></context-group> |
10859 | </trans-unit> | 10821 | </trans-unit> |
10860 | <trans-unit id="ngb.pagination.last" datatype="html"> | 10822 | <trans-unit id="ngb.pagination.last" datatype="html"> |
10861 | <source>»»</source> | 10823 | <source>»»</source> |
10862 | <target state="new">»»</target> | 10824 | <target state="translated">»»</target> |
10863 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">201</context></context-group> | 10825 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">201</context></context-group> |
10864 | </trans-unit> | 10826 | </trans-unit> |
10865 | <trans-unit id="ngb.pagination.first-aria" datatype="html"> | 10827 | <trans-unit id="ngb.pagination.first-aria" datatype="html"> |
10866 | <source>First</source> | 10828 | <source>First</source> |
10867 | <target state="new">First</target> | 10829 | <target state="translated">Перший</target> |
10868 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">208</context></context-group> | 10830 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">208</context></context-group> |
10869 | </trans-unit> | 10831 | </trans-unit> |
10870 | <trans-unit id="ngb.pagination.previous-aria" datatype="html"> | 10832 | <trans-unit id="ngb.pagination.previous-aria" datatype="html"> |
10871 | <source>Previous</source> | 10833 | <source>Previous</source> |
10872 | <target state="new">Previous</target> | 10834 | <target state="translated">Попередній</target> |
10873 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">215</context></context-group> | 10835 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">215</context></context-group> |
10874 | </trans-unit> | 10836 | </trans-unit> |
10875 | <trans-unit id="ngb.pagination.next-aria" datatype="html"> | 10837 | <trans-unit id="ngb.pagination.next-aria" datatype="html"> |
10876 | <source>Next</source> | 10838 | <source>Next</source> |
10877 | <target state="translated">Наступн</target> | 10839 | <target state="translated">Наступнй</target> |
10878 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">226</context></context-group> | 10840 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">226</context></context-group> |
10879 | </trans-unit> | 10841 | </trans-unit> |
10880 | <trans-unit id="ngb.pagination.last-aria" datatype="html"> | 10842 | <trans-unit id="ngb.pagination.last-aria" datatype="html"> |
10881 | <source>Last</source> | 10843 | <source>Last</source> |
10882 | <target state="new">Last</target> | 10844 | <target state="translated">Останній</target> |
10883 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">232</context></context-group> | 10845 | <context-group purpose="location"><context context-type="sourcefile">node_modules/@ng-bootstrap/src/pagination/pagination.ts</context><context context-type="linenumber">232</context></context-group> |
10884 | </trans-unit> | 10846 | </trans-unit> |
10885 | <trans-unit id="ngb.progressbar.value" datatype="html"> | 10847 | <trans-unit id="ngb.progressbar.value" datatype="html"> |
@@ -10971,48 +10933,46 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10971 | <trans-unit id="3284171506518522275" datatype="html"> | 10933 | <trans-unit id="3284171506518522275" datatype="html"> |
10972 | <source>Your video was uploaded to your account and is private.</source> | 10934 | <source>Your video was uploaded to your account and is private.</source> |
10973 | <target state="new">Your video was uploaded to your account and is private.</target> | 10935 | <target state="new">Your video was uploaded to your account and is private.</target> |
10974 | <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">118</context></context-group> | 10936 | |
10975 | </trans-unit> | 10937 | <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">125</context></context-group></trans-unit> |
10976 | <trans-unit id="5699822024600815733" datatype="html"> | 10938 | <trans-unit id="5699822024600815733" datatype="html"> |
10977 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10939 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10978 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> | 10940 | <target state="new">But associated data (tags, description...) will be lost, are you sure you want to leave this page?</target> |
10979 | <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">119</context></context-group> | 10941 | |
10980 | </trans-unit> | 10942 | <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> |
10981 | <trans-unit id="1219739004043110649" datatype="html"> | 10943 | <trans-unit id="1219739004043110649" datatype="html"> |
10982 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10944 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10983 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> | 10945 | <target state="new">Your video is not uploaded yet, are you sure you want to leave this page?</target> |
10984 | <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">121</context></context-group> | 10946 | |
10985 | </trans-unit> | 10947 | <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">128</context></context-group></trans-unit> |
10986 | <trans-unit id="6932865105766151309" datatype="html"> | 10948 | <trans-unit id="6932865105766151309" datatype="html"> |
10987 | <source>Upload</source> | 10949 | <source>Upload</source> |
10988 | <target state="new">Upload</target> | 10950 | <target state="translated">Вивантажити</target> |
10989 | <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">227</context></context-group> | 10951 | |
10990 | </trans-unit> | 10952 | <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">234</context></context-group></trans-unit> |
10991 | <trans-unit id="8278735427925094503" datatype="html"> | 10953 | <trans-unit id="8278735427925094503" datatype="html"> |
10992 | <source>Upload <x id="PH"/> </source> | 10954 | <source>Upload <x id="PH"/> </source> |
10993 | <target state="new">Upload | 10955 | <target state="translated">Вивантажити <x id="PH"/> </target> |
10994 | <x id="PH"/> | 10956 | |
10995 | </target> | 10957 | <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">236</context></context-group></trans-unit> |
10996 | <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">229</context></context-group> | ||
10997 | </trans-unit> | ||
10998 | <trans-unit id="5981816353437801748" datatype="html"> | 10958 | <trans-unit id="5981816353437801748" datatype="html"> |
10999 | <source>Video published.</source> | 10959 | <source>Video published.</source> |
11000 | <target state="new">Video published.</target> | 10960 | <target state="translated">Відео оприлюднено.</target> |
11001 | <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">251</context></context-group> | 10961 | |
11002 | </trans-unit> | 10962 | <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">258</context></context-group></trans-unit> |
11003 | <trans-unit id="764164089183618119" datatype="html"> | 10963 | <trans-unit id="764164089183618119" datatype="html"> |
11004 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 10964 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
11005 | <target state="new">You have unsaved changes! If you leave, your changes will be lost.</target> | 10965 | <target state="translated">Ви маєте незбережені зміни! Якщо ви йдете, ваші зміни будуть втрачені.</target> |
11006 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">94</context></context-group> | 10966 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">94</context></context-group> |
11007 | </trans-unit> | 10967 | </trans-unit> |
11008 | <trans-unit id="8306050839443016954" datatype="html"> | 10968 | <trans-unit id="8306050839443016954" datatype="html"> |
11009 | <source>Video updated.</source> | 10969 | <source>Video updated.</source> |
11010 | <target state="new">Video updated.</target> | 10970 | <target state="translated">Відео оновлено.</target> |
11011 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">158</context></context-group> | 10971 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-edit/video-update.component.ts</context><context context-type="linenumber">158</context></context-group> |
11012 | </trans-unit> | 10972 | </trans-unit> |
11013 | <trans-unit id="5512208811126492983" datatype="html"> | 10973 | <trans-unit id="5512208811126492983" datatype="html"> |
11014 | <source>Report comment</source> | 10974 | <source>Report comment</source> |
11015 | <target state="new">Report comment</target> | 10975 | <target state="translated">Поскаржитися на коментар</target> |
11016 | <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> | 10976 | <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> |
11017 | </trans-unit> | 10977 | </trans-unit> |
11018 | <trans-unit id="6775540171466219199" datatype="html"> | 10978 | <trans-unit id="6775540171466219199" datatype="html"> |
@@ -11050,7 +11010,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11050 | </trans-unit> | 11010 | </trans-unit> |
11051 | <trans-unit id="5761611056224181752" datatype="html"> | 11011 | <trans-unit id="5761611056224181752" datatype="html"> |
11052 | <source>Redirection</source> | 11012 | <source>Redirection</source> |
11053 | <target state="new">Redirection</target> | 11013 | <target state="translated">Перенаправлення</target> |
11054 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">297</context></context-group> | 11014 | <context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">297</context></context-group> |
11055 | </trans-unit> | 11015 | </trans-unit> |
11056 | <trans-unit id="8858527736400081688" datatype="html"> | 11016 | <trans-unit id="8858527736400081688" datatype="html"> |
@@ -11135,12 +11095,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11135 | </trans-unit> | 11095 | </trans-unit> |
11136 | <trans-unit id="8025996572234182184" datatype="html"> | 11096 | <trans-unit id="8025996572234182184" datatype="html"> |
11137 | <source>Like the video</source> | 11097 | <source>Like the video</source> |
11138 | <target state="new">Like the video</target> | 11098 | <target state="translated">Вподобати відео</target> |
11139 | <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> | 11099 | <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> |
11140 | </trans-unit> | 11100 | </trans-unit> |
11141 | <trans-unit id="7692127636377222448" datatype="html"> | 11101 | <trans-unit id="7692127636377222448" datatype="html"> |
11142 | <source>Dislike the video</source> | 11102 | <source>Dislike the video</source> |
11143 | <target state="new">Dislike the video</target> | 11103 | <target state="translated">Не подобається</target> |
11144 | <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> | 11104 | <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> |
11145 | </trans-unit> | 11105 | </trans-unit> |
11146 | <trans-unit id="1729036051846673606" datatype="html"> | 11106 | <trans-unit id="1729036051846673606" datatype="html"> |
@@ -11173,7 +11133,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11173 | </trans-unit> | 11133 | </trans-unit> |
11174 | <trans-unit id="5237588857224999862" datatype="html"> | 11134 | <trans-unit id="5237588857224999862" datatype="html"> |
11175 | <source>Open actions</source> | 11135 | <source>Open actions</source> |
11176 | <target state="new">Open actions</target> | 11136 | <target state="translated">Показати дії</target> |
11177 | <context-group purpose="location"> | 11137 | <context-group purpose="location"> |
11178 | <context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context> | 11138 | <context context-type="sourcefile">src/app/shared/shared-main/buttons/action-dropdown.component.html</context> |
11179 | <context context-type="linenumber">4</context> | 11139 | <context context-type="linenumber">4</context> |
@@ -11181,7 +11141,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11181 | </trans-unit> | 11141 | </trans-unit> |
11182 | <trans-unit id="8681933925782924101" datatype="html"> | 11142 | <trans-unit id="8681933925782924101" datatype="html"> |
11183 | <source>Local videos</source> | 11143 | <source>Local videos</source> |
11184 | <target state="new">Local videos</target> | 11144 | <target state="translated">Локальні відео</target> |
11185 | <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> | 11145 | <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> |
11186 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">142</context></context-group> | 11146 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">142</context></context-group> |
11187 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">143</context></context-group> | 11147 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/menu/menu.service.ts</context><context context-type="linenumber">143</context></context-group> |
@@ -11212,12 +11172,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
11212 | </trans-unit> | 11172 | </trans-unit> |
11213 | <trans-unit id="8212906256415538361" datatype="html"> | 11173 | <trans-unit id="8212906256415538361" datatype="html"> |
11214 | <source>Upload a video</source> | 11174 | <source>Upload a video</source> |
11215 | <target state="new">Upload a video</target> | 11175 | <target state="translated">Вивантажити відео</target> |
11216 | <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">91</context></context-group> | 11176 | <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">91</context></context-group> |
11217 | </trans-unit> | 11177 | </trans-unit> |
11218 | <trans-unit id="7590784934397800835" datatype="html"> | 11178 | <trans-unit id="7590784934397800835" datatype="html"> |
11219 | <source>Edit a video</source> | 11179 | <source>Edit a video</source> |
11220 | <target state="new">Edit a video</target> | 11180 | <target state="translated">Редагувати відео</target> |
11221 | <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">100</context></context-group> | 11181 | <context-group purpose="location"><context context-type="sourcefile">src/app/app-routing.module.ts</context><context context-type="linenumber">100</context></context-group> |
11222 | </trans-unit> | 11182 | </trans-unit> |
11223 | </body> | 11183 | </body> |
diff --git a/client/src/locale/angular.vi-VN.xlf b/client/src/locale/angular.vi-VN.xlf index 66139893e..329ad57cf 100644 --- a/client/src/locale/angular.vi-VN.xlf +++ b/client/src/locale/angular.vi-VN.xlf | |||
@@ -253,9 +253,9 @@ | |||
253 | <trans-unit id="1006562256968398209" datatype="html"> | 253 | <trans-unit id="1006562256968398209" datatype="html"> |
254 | <source>video</source> | 254 | <source>video</source> |
255 | <target state="translated">video</target> | 255 | <target state="translated">video</target> |
256 | <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">294</context></context-group> | 256 | |
257 | <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> | 257 | |
258 | </trans-unit> | 258 | <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">301</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> |
259 | <trans-unit id="6438815964972582865" datatype="html"> | 259 | <trans-unit id="6438815964972582865" datatype="html"> |
260 | <source>The following link contains a private token and should not be shared with anyone.</source> | 260 | <source>The following link contains a private token and should not be shared with anyone.</source> |
261 | <target state="translated">Đường dẫn chứa một token riêng tư và không nên chia sẻ với bất cứ ai.</target> | 261 | <target state="translated">Đường dẫn chứa một token riêng tư và không nên chia sẻ với bất cứ ai.</target> |
@@ -325,13 +325,13 @@ | |||
325 | <trans-unit id="6995024616159044376" datatype="html"> | 325 | <trans-unit id="6995024616159044376" datatype="html"> |
326 | <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> | 326 | <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> |
327 | <target state="translated">Bạn đã dùng hết dung lượng cho phép với video này (dung lượng video: <x id="PH" equiv-text="videoSizeBytes"/>, đã dùng: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, dung lượng cho phép: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> | 327 | <target state="translated">Bạn đã dùng hết dung lượng cho phép với video này (dung lượng video: <x id="PH" equiv-text="videoSizeBytes"/>, đã dùng: <x id="PH_1" equiv-text="videoQuotaUsedBytes"/>, dung lượng cho phép: <x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> |
328 | <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">330</context></context-group> | 328 | |
329 | </trans-unit> | 329 | <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">337</context></context-group></trans-unit> |
330 | <trans-unit id="7873395933409147217" datatype="html"> | 330 | <trans-unit id="7873395933409147217" datatype="html"> |
331 | <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> | 331 | <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> |
332 | <target state="translated">Bạn đã dùng hết dung lượng hàng ngày cho phép với video này (dung lượng video: <x id="PH" equiv-text="videoSizeBytes"/>, đã dùng: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, dung lượng cho phép: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> | 332 | <target state="translated">Bạn đã dùng hết dung lượng hàng ngày cho phép với video này (dung lượng video: <x id="PH" equiv-text="videoSizeBytes"/>, đã dùng: <x id="PH_1" equiv-text="quotaUsedDailyBytes"/>, dung lượng cho phép: <x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> |
333 | <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">349</context></context-group> | 333 | |
334 | </trans-unit> | 334 | <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">356</context></context-group></trans-unit> |
335 | <trans-unit id="5235042777215655908" datatype="html"> | 335 | <trans-unit id="5235042777215655908" datatype="html"> |
336 | <source>subtitles</source> | 336 | <source>subtitles</source> |
337 | <target state="translated">phụ đề</target> | 337 | <target state="translated">phụ đề</target> |
@@ -342,9 +342,9 @@ | |||
342 | <target> | 342 | <target> |
343 | Huỷ | 343 | Huỷ |
344 | </target> | 344 | </target> |
345 | <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">48</context></context-group> | 345 | |
346 | <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> | 346 | |
347 | </trans-unit> | 347 | <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">48</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">23</context></context-group></trans-unit> |
348 | <trans-unit id="3099741642167775297"> | 348 | <trans-unit id="3099741642167775297"> |
349 | <source>Download</source> | 349 | <source>Download</source> |
350 | <target>Tải về</target> | 350 | <target>Tải về</target> |
@@ -908,10 +908,10 @@ | |||
908 | <trans-unit id="2392488717875840729" datatype="html"> | 908 | <trans-unit id="2392488717875840729" datatype="html"> |
909 | <source>User</source> | 909 | <source>User</source> |
910 | <target state="translated">Thành viên</target> | 910 | <target state="translated">Thành viên</target> |
911 | 911 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group> | |
912 | 912 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">27</context></context-group> | |
913 | 913 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group> | |
914 | <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">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group></trans-unit> | 914 | </trans-unit> |
915 | <trans-unit id="4209525355702493436"> | 915 | <trans-unit id="4209525355702493436"> |
916 | <source>Ban</source> | 916 | <source>Ban</source> |
917 | <target>Chặn</target> | 917 | <target>Chặn</target> |
@@ -2035,14 +2035,14 @@ The link will expire within 1 hour.</source> | |||
2035 | <trans-unit id="6179532215548637839" datatype="html"> | 2035 | <trans-unit id="6179532215548637839" datatype="html"> |
2036 | <source>extensions</source> | 2036 | <source>extensions</source> |
2037 | <target state="translated">định dạng file</target> | 2037 | <target state="translated">định dạng file</target> |
2038 | 2038 | <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> | |
2039 | <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> | 2039 | </trans-unit> |
2040 | <trans-unit id="8054921481196967348" datatype="html"> | 2040 | <trans-unit id="8054921481196967348" datatype="html"> |
2041 | <source>This image is too large.</source> | 2041 | <source>This image is too large.</source> |
2042 | <target state="translated">Hình này quá lớn.</target> | 2042 | <target state="translated">Hình này quá lớn.</target> |
2043 | 2043 | <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> | |
2044 | 2044 | <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> | |
2045 | <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> | 2045 | </trans-unit> |
2046 | <trans-unit id="6259523075362402245" datatype="html"> | 2046 | <trans-unit id="6259523075362402245" datatype="html"> |
2047 | <source>Upload a new banner</source> | 2047 | <source>Upload a new banner</source> |
2048 | <target state="translated">Tải lên ảnh bìa mới</target> | 2048 | <target state="translated">Tải lên ảnh bìa mới</target> |
@@ -2067,13 +2067,13 @@ The link will expire within 1 hour.</source> | |||
2067 | <trans-unit id="3220184757632006830" datatype="html"> | 2067 | <trans-unit id="3220184757632006830" datatype="html"> |
2068 | <source>Account avatar</source> | 2068 | <source>Account avatar</source> |
2069 | <target state="translated">Ảnh đại diện tài khoản</target> | 2069 | <target state="translated">Ảnh đại diện tài khoản</target> |
2070 | 2070 | <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> | |
2071 | <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> | 2071 | </trans-unit> |
2072 | <trans-unit id="1138964882426023395" datatype="html"> | 2072 | <trans-unit id="1138964882426023395" datatype="html"> |
2073 | <source>Channel avatar</source> | 2073 | <source>Channel avatar</source> |
2074 | <target state="translated">Ảnh đại diện kênh</target> | 2074 | <target state="translated">Ảnh đại diện kênh</target> |
2075 | 2075 | <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> | |
2076 | <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> | 2076 | </trans-unit> |
2077 | <trans-unit id="1358902062258458923" datatype="html"> | 2077 | <trans-unit id="1358902062258458923" datatype="html"> |
2078 | <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> | 2078 | <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> |
2079 | <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">"/>Tương thích Markdown<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> và đồng thời hỗ trợ <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>PeerTube HTML tags<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> | 2079 | <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">"/>Tương thích Markdown<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> và đồng thời hỗ trợ <x id="START_LINK_1" equiv-text="<a href="https://docs.joinpeertube.org/api-custom-client-markup" target="_blank" rel="noreferer noopener">"/>PeerTube HTML tags<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> |
@@ -2524,8 +2524,8 @@ The link will expire within 1 hour.</source> | |||
2524 | <trans-unit id="6161604372916832458" datatype="html"> | 2524 | <trans-unit id="6161604372916832458" datatype="html"> |
2525 | <source>Upload on hold</source> | 2525 | <source>Upload on hold</source> |
2526 | <target state="translated">Đang tiếp tục tải lên</target> | 2526 | <target state="translated">Đang tiếp tục tải lên</target> |
2527 | <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">167</context></context-group> | 2527 | |
2528 | </trans-unit> | 2528 | <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">174</context></context-group></trans-unit> |
2529 | <trans-unit id="285180972645018518" datatype="html"> | 2529 | <trans-unit id="285180972645018518" datatype="html"> |
2530 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2530 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2531 | <target state="translated">Xin lỗi, tài khoản của bạn đã bị cấm tải lên. Nếu bạn muốn đăng thêm video, bạn phải liên hệ một quản trị viên để mở khóa dung lượng cho phép.</target> | 2531 | <target state="translated">Xin lỗi, tài khoản của bạn đã bị cấm tải lên. Nếu bạn muốn đăng thêm video, bạn phải liên hệ một quản trị viên để mở khóa dung lượng cho phép.</target> |
@@ -3300,9 +3300,8 @@ The link will expire within 1 hour.</source> | |||
3300 | <trans-unit id="9160510009013134726" datatype="html"> | 3300 | <trans-unit id="9160510009013134726" datatype="html"> |
3301 | <source>Unfollow</source> | 3301 | <source>Unfollow</source> |
3302 | <target state="translated">Ngưng theo dõi</target> | 3302 | <target state="translated">Ngưng theo dõi</target> |
3303 | 3303 | <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> | |
3304 | 3304 | </trans-unit> | |
3305 | <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> | ||
3306 | <trans-unit id="8246779176913476983" datatype="html"> | 3305 | <trans-unit id="8246779176913476983" datatype="html"> |
3307 | <source>Open instance in a new tab</source> | 3306 | <source>Open instance in a new tab</source> |
3308 | <target state="translated">Mở máy chủ trong tab mới</target> | 3307 | <target state="translated">Mở máy chủ trong tab mới</target> |
@@ -4834,8 +4833,8 @@ The link will expire within 1 hour.</source> | |||
4834 | <trans-unit id="2149300564474427551" datatype="html"> | 4833 | <trans-unit id="2149300564474427551" datatype="html"> |
4835 | <source>Administrator</source> | 4834 | <source>Administrator</source> |
4836 | <target state="translated">Quản trị viên</target> | 4835 | <target state="translated">Quản trị viên</target> |
4837 | 4836 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group> | |
4838 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group></trans-unit> | 4837 | </trans-unit> |
4839 | <trans-unit id="3171683206914962995" datatype="html"> | 4838 | <trans-unit id="3171683206914962995" datatype="html"> |
4840 | <source>Admin email</source> | 4839 | <source>Admin email</source> |
4841 | <target state="translated">Email admin</target> | 4840 | <target state="translated">Email admin</target> |
@@ -5399,8 +5398,6 @@ color: red; | |||
5399 | <context context-type="linenumber">66</context> | 5398 | <context context-type="linenumber">66</context> |
5400 | </context-group> | 5399 | </context-group> |
5401 | </trans-unit> | 5400 | </trans-unit> |
5402 | |||
5403 | |||
5404 | <trans-unit id="5723033003381016192" datatype="html"> | 5401 | <trans-unit id="5723033003381016192" datatype="html"> |
5405 | <source>Scope:</source> | 5402 | <source>Scope:</source> |
5406 | <target state="translated">Phạm vi:</target> | 5403 | <target state="translated">Phạm vi:</target> |
@@ -5409,7 +5406,6 @@ color: red; | |||
5409 | <context context-type="linenumber">81</context> | 5406 | <context context-type="linenumber">81</context> |
5410 | </context-group> | 5407 | </context-group> |
5411 | </trans-unit> | 5408 | </trans-unit> |
5412 | |||
5413 | <trans-unit id="8481241275509347668" datatype="html"> | 5409 | <trans-unit id="8481241275509347668" datatype="html"> |
5414 | <source>Local videos (this instance)</source> | 5410 | <source>Local videos (this instance)</source> |
5415 | <target state="translated">Video máy chủ (máy chủ này)</target> | 5411 | <target state="translated">Video máy chủ (máy chủ này)</target> |
@@ -5418,7 +5414,6 @@ color: red; | |||
5418 | <context context-type="linenumber">85</context> | 5414 | <context context-type="linenumber">85</context> |
5419 | </context-group> | 5415 | </context-group> |
5420 | </trans-unit> | 5416 | </trans-unit> |
5421 | |||
5422 | <trans-unit id="8383401711408398806" datatype="html"> | 5417 | <trans-unit id="8383401711408398806" datatype="html"> |
5423 | <source>Federated videos (this instance + followed instances)</source> | 5418 | <source>Federated videos (this instance + followed instances)</source> |
5424 | <target state="translated">Video liên hợp (máy chủ này + những máy chủ đã theo dõi)</target> | 5419 | <target state="translated">Video liên hợp (máy chủ này + những máy chủ đã theo dõi)</target> |
@@ -5443,7 +5438,6 @@ color: red; | |||
5443 | <context context-type="linenumber">99</context> | 5438 | <context context-type="linenumber">99</context> |
5444 | </context-group> | 5439 | </context-group> |
5445 | </trans-unit> | 5440 | </trans-unit> |
5446 | |||
5447 | <trans-unit id="1370537846415473089" datatype="html"> | 5441 | <trans-unit id="1370537846415473089" datatype="html"> |
5448 | <source>Categories:</source> | 5442 | <source>Categories:</source> |
5449 | <target state="translated">Thể loại:</target> | 5443 | <target state="translated">Thể loại:</target> |
@@ -6459,7 +6453,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6459 | </trans-unit> | 6453 | </trans-unit> |
6460 | <trans-unit id="3857357852909495917" datatype="html"> | 6454 | <trans-unit id="3857357852909495917" datatype="html"> |
6461 | <source>This instance does not have instances followers.</source> | 6455 | <source>This instance does not have instances followers.</source> |
6462 | <target state="translated">Máy chủ này khng có người theo dõi máy chủ.</target> | 6456 | <target state="translated">Chưa được máy chủ khc theo dõi.</target> |
6463 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">6</context></context-group> | 6457 | <context-group purpose="location"><context context-type="sourcefile">src/app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">6</context></context-group> |
6464 | </trans-unit> | 6458 | </trans-unit> |
6465 | <trans-unit id="8438752523256358076" datatype="html"> | 6459 | <trans-unit id="8438752523256358076" datatype="html"> |
@@ -6668,8 +6662,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6668 | <trans-unit id="784681343382270982" datatype="html"> | 6662 | <trans-unit id="784681343382270982" datatype="html"> |
6669 | <source>Remove this filter</source> | 6663 | <source>Remove this filter</source> |
6670 | <target state="translated">Xóa bộ lọc này</target> | 6664 | <target state="translated">Xóa bộ lọc này</target> |
6671 | 6665 | <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> | |
6672 | <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> | 6666 | </trans-unit> |
6673 | <trans-unit id="5254305728396198887" datatype="html"> | 6667 | <trans-unit id="5254305728396198887" datatype="html"> |
6674 | <source>Sensitive content</source> | 6668 | <source>Sensitive content</source> |
6675 | <target state="translated">Nội dung nhạy cảm</target> | 6669 | <target state="translated">Nội dung nhạy cảm</target> |
@@ -8337,9 +8331,9 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8337 | <trans-unit id="7916647920967632052" datatype="html"> | 8331 | <trans-unit id="7916647920967632052" datatype="html"> |
8338 | <source>max size</source> | 8332 | <source>max size</source> |
8339 | <target state="translated">max size</target> | 8333 | <target state="translated">max size</target> |
8340 | 8334 | <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> | |
8341 | 8335 | <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> | |
8342 | <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> | 8336 | </trans-unit> |
8343 | <trans-unit id="6489275254908395777" datatype="html"> | 8337 | <trans-unit id="6489275254908395777" datatype="html"> |
8344 | <source>Maximize editor</source> | 8338 | <source>Maximize editor</source> |
8345 | <target state="translated">Phóng to trình chỉnh sửa</target> | 8339 | <target state="translated">Phóng to trình chỉnh sửa</target> |
@@ -9765,16 +9759,16 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9765 | <trans-unit id="6952960992592445535" datatype="html"> | 9759 | <trans-unit id="6952960992592445535" datatype="html"> |
9766 | <source><x id="PH"/> (channel page) </source> | 9760 | <source><x id="PH"/> (channel page) </source> |
9767 | <target state="translated"><x id="PH"/> (trang kênh) </target> | 9761 | <target state="translated"><x id="PH"/> (trang kênh) </target> |
9768 | 9762 | <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">19</context></context-group> | |
9769 | 9763 | <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> | |
9770 | 9764 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">113</context></context-group> | |
9771 | <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">19</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">113</context></context-group></trans-unit> | 9765 | </trans-unit> |
9772 | <trans-unit id="1209500590333005801" datatype="html"> | 9766 | <trans-unit id="1209500590333005801" datatype="html"> |
9773 | <source><x id="PH"/> (account page) </source> | 9767 | <source><x id="PH"/> (account page) </source> |
9774 | <target state="translated"><x id="PH"/> (trang tài khoản) </target> | 9768 | <target state="translated"><x id="PH"/> (trang tài khoản) </target> |
9775 | 9769 | <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> | |
9776 | 9770 | <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> | |
9777 | <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">39</context></context-group></trans-unit> | 9771 | </trans-unit> |
9778 | <trans-unit id="2516633974298697807"> | 9772 | <trans-unit id="2516633974298697807"> |
9779 | <source>Emphasis</source> | 9773 | <source>Emphasis</source> |
9780 | <target>Nhấn mạnh</target> | 9774 | <target>Nhấn mạnh</target> |
@@ -10182,8 +10176,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10182 | <trans-unit id="4968151111061046122"> | 10176 | <trans-unit id="4968151111061046122"> |
10183 | <source>Moderator</source> | 10177 | <source>Moderator</source> |
10184 | <target>Người quản trị</target> | 10178 | <target>Người quản trị</target> |
10185 | 10179 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group> | |
10186 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group></trans-unit> | 10180 | </trans-unit> |
10187 | <trans-unit id="2279527393438260622" datatype="html"> | 10181 | <trans-unit id="2279527393438260622" datatype="html"> |
10188 | <source>Search videos, playlists, channels…</source> | 10182 | <source>Search videos, playlists, channels…</source> |
10189 | <target state="translated">Tìm video, danh sách phát, kênh…</target> | 10183 | <target state="translated">Tìm video, danh sách phát, kênh…</target> |
@@ -10728,35 +10722,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10728 | <trans-unit id="3284171506518522275"> | 10722 | <trans-unit id="3284171506518522275"> |
10729 | <source>Your video was uploaded to your account and is private.</source> | 10723 | <source>Your video was uploaded to your account and is private.</source> |
10730 | <target>Video đã được tải lên riêng tư vào tài khoản của bạn.</target> | 10724 | <target>Video đã được tải lên riêng tư vào tài khoản của bạn.</target> |
10731 | <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">118</context></context-group> | 10725 | |
10732 | </trans-unit> | 10726 | <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">125</context></context-group></trans-unit> |
10733 | <trans-unit id="5699822024600815733"> | 10727 | <trans-unit id="5699822024600815733"> |
10734 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10728 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10735 | <target>Nhưng các dữ liệu liên quan (thẻ, mô tả,...) sẽ bị mất. Bạn có chắc muốn rời khỏi trang không?</target> | 10729 | <target>Nhưng các dữ liệu liên quan (thẻ, mô tả,...) sẽ bị mất. Bạn có chắc muốn rời khỏi trang không?</target> |
10736 | <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">119</context></context-group> | 10730 | |
10737 | </trans-unit> | 10731 | <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> |
10738 | <trans-unit id="1219739004043110649"> | 10732 | <trans-unit id="1219739004043110649"> |
10739 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10733 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10740 | <target>Video của bạn vẫn chưa được tải lên, bạn có chắc muốn rời trang?</target> | 10734 | <target>Video của bạn vẫn chưa được tải lên, bạn có chắc muốn rời trang?</target> |
10741 | <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">121</context></context-group> | 10735 | |
10742 | </trans-unit> | 10736 | <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">128</context></context-group></trans-unit> |
10743 | <trans-unit id="6932865105766151309" datatype="html"> | 10737 | <trans-unit id="6932865105766151309" datatype="html"> |
10744 | <source>Upload</source> | 10738 | <source>Upload</source> |
10745 | <target state="translated">Tải lên</target> | 10739 | <target state="translated">Tải lên</target> |
10746 | <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">227</context></context-group> | 10740 | |
10747 | </trans-unit> | 10741 | <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">234</context></context-group></trans-unit> |
10748 | <trans-unit id="8278735427925094503"> | 10742 | <trans-unit id="8278735427925094503"> |
10749 | <source>Upload <x id="PH"/> </source> | 10743 | <source>Upload <x id="PH"/> </source> |
10750 | <target>Tải lên | 10744 | <target>Tải lên |
10751 | <x id="PH"/> | 10745 | <x id="PH"/> |
10752 | </target> | 10746 | </target> |
10753 | <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">229</context></context-group> | 10747 | |
10754 | </trans-unit> | 10748 | <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">236</context></context-group></trans-unit> |
10755 | <trans-unit id="5981816353437801748"> | 10749 | <trans-unit id="5981816353437801748"> |
10756 | <source>Video published.</source> | 10750 | <source>Video published.</source> |
10757 | <target>Đã xuất bản video.</target> | 10751 | <target>Đã xuất bản video.</target> |
10758 | <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">251</context></context-group> | 10752 | |
10759 | </trans-unit> | 10753 | <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">258</context></context-group></trans-unit> |
10760 | <trans-unit id="764164089183618119"> | 10754 | <trans-unit id="764164089183618119"> |
10761 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 10755 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
10762 | <target>Bạn có sửa đổi chưa lưu! Nếu rời đi, những sửa đổi này sẽ bị mất.</target> | 10756 | <target>Bạn có sửa đổi chưa lưu! Nếu rời đi, những sửa đổi này sẽ bị mất.</target> |
diff --git a/client/src/locale/angular.xlf b/client/src/locale/angular.xlf index c0610a39d..cc6fd2ce2 100644 --- a/client/src/locale/angular.xlf +++ b/client/src/locale/angular.xlf | |||
@@ -8876,56 +8876,56 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8876 | <source>Your video was uploaded to your account and is private.</source> | 8876 | <source>Your video was uploaded to your account and is private.</source> |
8877 | <context-group purpose="location"> | 8877 | <context-group purpose="location"> |
8878 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> | 8878 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> |
8879 | <context context-type="linenumber">118</context> | 8879 | <context context-type="linenumber">125</context> |
8880 | </context-group> | 8880 | </context-group> |
8881 | </trans-unit> | 8881 | </trans-unit> |
8882 | <trans-unit id="5699822024600815733" datatype="html"> | 8882 | <trans-unit id="5699822024600815733" datatype="html"> |
8883 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 8883 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
8884 | <context-group purpose="location"> | 8884 | <context-group purpose="location"> |
8885 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> | 8885 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> |
8886 | <context context-type="linenumber">119</context> | 8886 | <context context-type="linenumber">126</context> |
8887 | </context-group> | 8887 | </context-group> |
8888 | </trans-unit> | 8888 | </trans-unit> |
8889 | <trans-unit id="1219739004043110649" datatype="html"> | 8889 | <trans-unit id="1219739004043110649" datatype="html"> |
8890 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 8890 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
8891 | <context-group purpose="location"> | 8891 | <context-group purpose="location"> |
8892 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> | 8892 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> |
8893 | <context context-type="linenumber">121</context> | 8893 | <context context-type="linenumber">128</context> |
8894 | </context-group> | 8894 | </context-group> |
8895 | </trans-unit> | 8895 | </trans-unit> |
8896 | <trans-unit id="6161604372916832458" datatype="html"> | 8896 | <trans-unit id="6161604372916832458" datatype="html"> |
8897 | <source>Upload on hold</source> | 8897 | <source>Upload on hold</source> |
8898 | <context-group purpose="location"> | 8898 | <context-group purpose="location"> |
8899 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> | 8899 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> |
8900 | <context context-type="linenumber">167</context> | 8900 | <context context-type="linenumber">174</context> |
8901 | </context-group> | 8901 | </context-group> |
8902 | </trans-unit> | 8902 | </trans-unit> |
8903 | <trans-unit id="6932865105766151309" datatype="html"> | 8903 | <trans-unit id="6932865105766151309" datatype="html"> |
8904 | <source>Upload</source> | 8904 | <source>Upload</source> |
8905 | <context-group purpose="location"> | 8905 | <context-group purpose="location"> |
8906 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> | 8906 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> |
8907 | <context context-type="linenumber">227</context> | 8907 | <context context-type="linenumber">234</context> |
8908 | </context-group> | 8908 | </context-group> |
8909 | </trans-unit> | 8909 | </trans-unit> |
8910 | <trans-unit id="8278735427925094503" datatype="html"> | 8910 | <trans-unit id="8278735427925094503" datatype="html"> |
8911 | <source>Upload <x id="PH" equiv-text="videofile.name"/></source> | 8911 | <source>Upload <x id="PH" equiv-text="videofile.name"/></source> |
8912 | <context-group purpose="location"> | 8912 | <context-group purpose="location"> |
8913 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> | 8913 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> |
8914 | <context context-type="linenumber">229</context> | 8914 | <context context-type="linenumber">236</context> |
8915 | </context-group> | 8915 | </context-group> |
8916 | </trans-unit> | 8916 | </trans-unit> |
8917 | <trans-unit id="5981816353437801748" datatype="html"> | 8917 | <trans-unit id="5981816353437801748" datatype="html"> |
8918 | <source>Video published.</source> | 8918 | <source>Video published.</source> |
8919 | <context-group purpose="location"> | 8919 | <context-group purpose="location"> |
8920 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> | 8920 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> |
8921 | <context context-type="linenumber">251</context> | 8921 | <context context-type="linenumber">258</context> |
8922 | </context-group> | 8922 | </context-group> |
8923 | </trans-unit> | 8923 | </trans-unit> |
8924 | <trans-unit id="1006562256968398209" datatype="html"> | 8924 | <trans-unit id="1006562256968398209" datatype="html"> |
8925 | <source>video</source> | 8925 | <source>video</source> |
8926 | <context-group purpose="location"> | 8926 | <context-group purpose="location"> |
8927 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> | 8927 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> |
8928 | <context context-type="linenumber">294</context> | 8928 | <context context-type="linenumber">301</context> |
8929 | </context-group> | 8929 | </context-group> |
8930 | <context-group purpose="location"> | 8930 | <context-group purpose="location"> |
8931 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> | 8931 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/video-download.component.ts</context> |
@@ -8936,14 +8936,14 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8936 | <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> | 8936 | <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> |
8937 | <context-group purpose="location"> | 8937 | <context-group purpose="location"> |
8938 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> | 8938 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> |
8939 | <context context-type="linenumber">330</context> | 8939 | <context context-type="linenumber">337</context> |
8940 | </context-group> | 8940 | </context-group> |
8941 | </trans-unit> | 8941 | </trans-unit> |
8942 | <trans-unit id="7873395933409147217" datatype="html"> | 8942 | <trans-unit id="7873395933409147217" datatype="html"> |
8943 | <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> | 8943 | <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> |
8944 | <context-group purpose="location"> | 8944 | <context-group purpose="location"> |
8945 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> | 8945 | <context context-type="sourcefile">src/app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> |
8946 | <context context-type="linenumber">349</context> | 8946 | <context context-type="linenumber">356</context> |
8947 | </context-group> | 8947 | </context-group> |
8948 | </trans-unit> | 8948 | </trans-unit> |
8949 | <trans-unit id="2587226585711833549" datatype="html"> | 8949 | <trans-unit id="2587226585711833549" datatype="html"> |
@@ -9225,7 +9225,7 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
9225 | </context-group> | 9225 | </context-group> |
9226 | <context-group purpose="location"> | 9226 | <context-group purpose="location"> |
9227 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context> | 9227 | <context context-type="sourcefile">src/app/shared/shared-video-miniature/videos-selection.component.html</context> |
9228 | <context context-type="linenumber">22,23</context> | 9228 | <context context-type="linenumber">23,24</context> |
9229 | </context-group> | 9229 | </context-group> |
9230 | </trans-unit> | 9230 | </trans-unit> |
9231 | <trans-unit id="2263890353858735493" datatype="html"> | 9231 | <trans-unit id="2263890353858735493" datatype="html"> |
diff --git a/client/src/locale/angular.zh-Hans-CN.xlf b/client/src/locale/angular.zh-Hans-CN.xlf index 44bab2949..e8ddd780b 100644 --- a/client/src/locale/angular.zh-Hans-CN.xlf +++ b/client/src/locale/angular.zh-Hans-CN.xlf | |||
@@ -258,7 +258,7 @@ | |||
258 | 258 | ||
259 | 259 | ||
260 | 260 | ||
261 | <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">294</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> | 261 | <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">301</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> |
262 | <trans-unit id="6438815964972582865" datatype="html"> | 262 | <trans-unit id="6438815964972582865" datatype="html"> |
263 | <source>The following link contains a private token and should not be shared with anyone.</source> | 263 | <source>The following link contains a private token and should not be shared with anyone.</source> |
264 | <target state="new"> The following link contains a private token and should not be shared with anyone. </target> | 264 | <target state="new"> The following link contains a private token and should not be shared with anyone. </target> |
@@ -332,12 +332,12 @@ | |||
332 | <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> | 332 | <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> |
333 | <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> | 333 | <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> |
334 | 334 | ||
335 | <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">330</context></context-group></trans-unit> | 335 | <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">337</context></context-group></trans-unit> |
336 | <trans-unit id="7873395933409147217" datatype="html"> | 336 | <trans-unit id="7873395933409147217" datatype="html"> |
337 | <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> | 337 | <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> |
338 | <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> | 338 | <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> |
339 | 339 | ||
340 | <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">349</context></context-group></trans-unit> | 340 | <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">356</context></context-group></trans-unit> |
341 | <trans-unit id="5235042777215655908" datatype="html"> | 341 | <trans-unit id="5235042777215655908" datatype="html"> |
342 | <source>subtitles</source> | 342 | <source>subtitles</source> |
343 | <target state="translated">字幕</target> | 343 | <target state="translated">字幕</target> |
@@ -350,7 +350,7 @@ | |||
350 | </target> | 350 | </target> |
351 | 351 | ||
352 | 352 | ||
353 | <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">48</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> | 353 | <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">48</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">23</context></context-group></trans-unit> |
354 | <trans-unit id="3099741642167775297"> | 354 | <trans-unit id="3099741642167775297"> |
355 | <source>Download</source> | 355 | <source>Download</source> |
356 | <target>下载</target> | 356 | <target>下载</target> |
@@ -2492,7 +2492,7 @@ The link will expire within 1 hour.</source> | |||
2492 | <source>Upload on hold</source> | 2492 | <source>Upload on hold</source> |
2493 | <target state="new">Upload on hold</target> | 2493 | <target state="new">Upload on hold</target> |
2494 | 2494 | ||
2495 | <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">167</context></context-group></trans-unit> | 2495 | <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">174</context></context-group></trans-unit> |
2496 | <trans-unit id="285180972645018518" datatype="html"> | 2496 | <trans-unit id="285180972645018518" datatype="html"> |
2497 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2497 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2498 | <target state="translated">对不起,您的帐户的上传功能已被禁用。如果你想添加视频,管理员必须解锁您的权限。</target> | 2498 | <target state="translated">对不起,您的帐户的上传功能已被禁用。如果你想添加视频,管理员必须解锁您的权限。</target> |
@@ -10831,34 +10831,34 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10831 | <source>Your video was uploaded to your account and is private.</source> | 10831 | <source>Your video was uploaded to your account and is private.</source> |
10832 | <target>您的视频已经以私有方式上传至您的帐户。</target> | 10832 | <target>您的视频已经以私有方式上传至您的帐户。</target> |
10833 | 10833 | ||
10834 | <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">118</context></context-group></trans-unit> | 10834 | <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">125</context></context-group></trans-unit> |
10835 | <trans-unit id="5699822024600815733"> | 10835 | <trans-unit id="5699822024600815733"> |
10836 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10836 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10837 | <target>相关信息(如标签、说明)将会丢失,您确定要离开这个页面吗?</target> | 10837 | <target>相关信息(如标签、说明)将会丢失,您确定要离开这个页面吗?</target> |
10838 | 10838 | ||
10839 | <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">119</context></context-group></trans-unit> | 10839 | <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> |
10840 | <trans-unit id="1219739004043110649"> | 10840 | <trans-unit id="1219739004043110649"> |
10841 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10841 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10842 | <target>您的视频尚未上传完毕,您确定要离开这个页面吗?</target> | 10842 | <target>您的视频尚未上传完毕,您确定要离开这个页面吗?</target> |
10843 | 10843 | ||
10844 | <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">121</context></context-group></trans-unit> | 10844 | <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">128</context></context-group></trans-unit> |
10845 | <trans-unit id="6932865105766151309" datatype="html"> | 10845 | <trans-unit id="6932865105766151309" datatype="html"> |
10846 | <source>Upload</source> | 10846 | <source>Upload</source> |
10847 | <target state="translated">上传</target> | 10847 | <target state="translated">上传</target> |
10848 | 10848 | ||
10849 | <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">227</context></context-group></trans-unit> | 10849 | <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">234</context></context-group></trans-unit> |
10850 | <trans-unit id="8278735427925094503"> | 10850 | <trans-unit id="8278735427925094503"> |
10851 | <source>Upload <x id="PH"/> </source> | 10851 | <source>Upload <x id="PH"/> </source> |
10852 | <target>上传 | 10852 | <target>上传 |
10853 | <x id="PH"/> | 10853 | <x id="PH"/> |
10854 | </target> | 10854 | </target> |
10855 | 10855 | ||
10856 | <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">229</context></context-group></trans-unit> | 10856 | <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">236</context></context-group></trans-unit> |
10857 | <trans-unit id="5981816353437801748"> | 10857 | <trans-unit id="5981816353437801748"> |
10858 | <source>Video published.</source> | 10858 | <source>Video published.</source> |
10859 | <target>视频已发布。</target> | 10859 | <target>视频已发布。</target> |
10860 | 10860 | ||
10861 | <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">251</context></context-group></trans-unit> | 10861 | <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">258</context></context-group></trans-unit> |
10862 | <trans-unit id="764164089183618119"> | 10862 | <trans-unit id="764164089183618119"> |
10863 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 10863 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
10864 | <target>您有未保存的修改!如果您离开本页面,您将会失去这些修改。</target> | 10864 | <target>您有未保存的修改!如果您离开本页面,您将会失去这些修改。</target> |
diff --git a/client/src/locale/angular.zh-Hant-TW.xlf b/client/src/locale/angular.zh-Hant-TW.xlf index 7bf134649..52c6d8ab0 100644 --- a/client/src/locale/angular.zh-Hant-TW.xlf +++ b/client/src/locale/angular.zh-Hant-TW.xlf | |||
@@ -255,9 +255,9 @@ | |||
255 | <trans-unit id="1006562256968398209" datatype="html"> | 255 | <trans-unit id="1006562256968398209" datatype="html"> |
256 | <source>video</source> | 256 | <source>video</source> |
257 | <target state="translated">影片</target> | 257 | <target state="translated">影片</target> |
258 | <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">294</context></context-group> | 258 | |
259 | <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> | 259 | |
260 | </trans-unit> | 260 | <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">301</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> |
261 | <trans-unit id="6438815964972582865" datatype="html"> | 261 | <trans-unit id="6438815964972582865" datatype="html"> |
262 | <source>The following link contains a private token and should not be shared with anyone.</source> | 262 | <source>The following link contains a private token and should not be shared with anyone.</source> |
263 | <target state="translated">以下連結包含了一個專用權杖,不應該與其他人分享。</target> | 263 | <target state="translated">以下連結包含了一個專用權杖,不應該與其他人分享。</target> |
@@ -329,13 +329,13 @@ | |||
329 | <trans-unit id="6995024616159044376" datatype="html"> | 329 | <trans-unit id="6995024616159044376" datatype="html"> |
330 | <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> | 330 | <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> |
331 | <target state="translated">此影片超過了您的影片配額(影片大小:<x id="PH" equiv-text="videoSizeBytes"/>,已使用:<x id="PH_1" equiv-text="videoQuotaUsedBytes"/>,配額:<x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> | 331 | <target state="translated">此影片超過了您的影片配額(影片大小:<x id="PH" equiv-text="videoSizeBytes"/>,已使用:<x id="PH_1" equiv-text="videoQuotaUsedBytes"/>,配額:<x id="PH_2" equiv-text="videoQuotaBytes"/>)</target> |
332 | <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">330</context></context-group> | 332 | |
333 | </trans-unit> | 333 | <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">337</context></context-group></trans-unit> |
334 | <trans-unit id="7873395933409147217" datatype="html"> | 334 | <trans-unit id="7873395933409147217" datatype="html"> |
335 | <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> | 335 | <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> |
336 | <target state="translated">此影片超過了您的每日影片配額(影片大小:<x id="PH" equiv-text="videoSizeBytes"/>,已使用:<x id="PH_1" equiv-text="quotaUsedDailyBytes"/>,配額:<x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> | 336 | <target state="translated">此影片超過了您的每日影片配額(影片大小:<x id="PH" equiv-text="videoSizeBytes"/>,已使用:<x id="PH_1" equiv-text="quotaUsedDailyBytes"/>,配額:<x id="PH_2" equiv-text="quotaDailyBytes"/>)</target> |
337 | <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">349</context></context-group> | 337 | |
338 | </trans-unit> | 338 | <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">356</context></context-group></trans-unit> |
339 | <trans-unit id="5235042777215655908" datatype="html"> | 339 | <trans-unit id="5235042777215655908" datatype="html"> |
340 | <source>subtitles</source> | 340 | <source>subtitles</source> |
341 | <target state="translated">字幕</target> | 341 | <target state="translated">字幕</target> |
@@ -346,9 +346,9 @@ | |||
346 | <target> | 346 | <target> |
347 | 取消 | 347 | 取消 |
348 | </target> | 348 | </target> |
349 | <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">48</context></context-group> | 349 | |
350 | <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> | 350 | |
351 | </trans-unit> | 351 | <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">48</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">23</context></context-group></trans-unit> |
352 | <trans-unit id="3099741642167775297"> | 352 | <trans-unit id="3099741642167775297"> |
353 | <source>Download</source> | 353 | <source>Download</source> |
354 | <target>下載</target> | 354 | <target>下載</target> |
@@ -912,10 +912,10 @@ | |||
912 | <trans-unit id="2392488717875840729" datatype="html"> | 912 | <trans-unit id="2392488717875840729" datatype="html"> |
913 | <source>User</source> | 913 | <source>User</source> |
914 | <target state="translated">使用者</target> | 914 | <target state="translated">使用者</target> |
915 | 915 | <context-group purpose="location"><context context-type="sourcefile">src/app/+login/login.component.html</context><context context-type="linenumber">21</context></context-group> | |
916 | 916 | <context-group purpose="location"><context context-type="sourcefile">src/app/+signup/+register/register.component.html</context><context context-type="linenumber">27</context></context-group> | |
917 | 917 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group> | |
918 | <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">27</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">416</context></context-group></trans-unit> | 918 | </trans-unit> |
919 | <trans-unit id="4209525355702493436"> | 919 | <trans-unit id="4209525355702493436"> |
920 | <source>Ban</source> | 920 | <source>Ban</source> |
921 | <target>阻擋</target> | 921 | <target>阻擋</target> |
@@ -2031,14 +2031,14 @@ The link will expire within 1 hour.</source> | |||
2031 | <trans-unit id="6179532215548637839" datatype="html"> | 2031 | <trans-unit id="6179532215548637839" datatype="html"> |
2032 | <source>extensions</source> | 2032 | <source>extensions</source> |
2033 | <target state="translated">擴充套件</target> | 2033 | <target state="translated">擴充套件</target> |
2034 | 2034 | <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> | |
2035 | <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> | 2035 | </trans-unit> |
2036 | <trans-unit id="8054921481196967348" datatype="html"> | 2036 | <trans-unit id="8054921481196967348" datatype="html"> |
2037 | <source>This image is too large.</source> | 2037 | <source>This image is too large.</source> |
2038 | <target state="translated">此圖片太大了。</target> | 2038 | <target state="translated">此圖片太大了。</target> |
2039 | 2039 | <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> | |
2040 | 2040 | <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> | |
2041 | <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> | 2041 | </trans-unit> |
2042 | <trans-unit id="6259523075362402245" datatype="html"> | 2042 | <trans-unit id="6259523075362402245" datatype="html"> |
2043 | <source>Upload a new banner</source> | 2043 | <source>Upload a new banner</source> |
2044 | <target state="translated">上傳新橫幅</target> | 2044 | <target state="translated">上傳新橫幅</target> |
@@ -2063,13 +2063,13 @@ The link will expire within 1 hour.</source> | |||
2063 | <trans-unit id="3220184757632006830" datatype="html"> | 2063 | <trans-unit id="3220184757632006830" datatype="html"> |
2064 | <source>Account avatar</source> | 2064 | <source>Account avatar</source> |
2065 | <target state="translated">帳號大頭照</target> | 2065 | <target state="translated">帳號大頭照</target> |
2066 | 2066 | <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> | |
2067 | <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> | 2067 | </trans-unit> |
2068 | <trans-unit id="1138964882426023395" datatype="html"> | 2068 | <trans-unit id="1138964882426023395" datatype="html"> |
2069 | <source>Channel avatar</source> | 2069 | <source>Channel avatar</source> |
2070 | <target state="translated">頻道大頭照</target> | 2070 | <target state="translated">頻道大頭照</target> |
2071 | 2071 | <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> | |
2072 | <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> | 2072 | </trans-unit> |
2073 | <trans-unit id="1358902062258458923" datatype="html"> | 2073 | <trans-unit id="1358902062258458923" datatype="html"> |
2074 | <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> | 2074 | <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> |
2075 | <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">"/>自訂 PeerTube HTML 標籤<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> | 2075 | <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">"/>自訂 PeerTube HTML 標籤<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></target> |
@@ -2518,8 +2518,8 @@ The link will expire within 1 hour.</source> | |||
2518 | <trans-unit id="6161604372916832458" datatype="html"> | 2518 | <trans-unit id="6161604372916832458" datatype="html"> |
2519 | <source>Upload on hold</source> | 2519 | <source>Upload on hold</source> |
2520 | <target state="translated">暫緩上傳</target> | 2520 | <target state="translated">暫緩上傳</target> |
2521 | <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">167</context></context-group> | 2521 | |
2522 | </trans-unit> | 2522 | <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">174</context></context-group></trans-unit> |
2523 | <trans-unit id="285180972645018518" datatype="html"> | 2523 | <trans-unit id="285180972645018518" datatype="html"> |
2524 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> | 2524 | <source>Sorry, the upload feature is disabled for your account. If you want to add videos, an admin must unlock your quota.</source> |
2525 | <target state="translated">抱歉,您的帳號已停用上傳功能。如果您想要新增影片,管理員必須解鎖您的配額。</target> | 2525 | <target state="translated">抱歉,您的帳號已停用上傳功能。如果您想要新增影片,管理員必須解鎖您的配額。</target> |
@@ -3305,9 +3305,8 @@ The link will expire within 1 hour.</source> | |||
3305 | <trans-unit id="9160510009013134726" datatype="html"> | 3305 | <trans-unit id="9160510009013134726" datatype="html"> |
3306 | <source>Unfollow</source> | 3306 | <source>Unfollow</source> |
3307 | <target state="translated">取消追蹤</target> | 3307 | <target state="translated">取消追蹤</target> |
3308 | 3308 | <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> | |
3309 | 3309 | </trans-unit> | |
3310 | <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> | ||
3311 | <trans-unit id="8246779176913476983" datatype="html"> | 3310 | <trans-unit id="8246779176913476983" datatype="html"> |
3312 | <source>Open instance in a new tab</source> | 3311 | <source>Open instance in a new tab</source> |
3313 | <target state="translated">在新分頁中開啟站臺</target> | 3312 | <target state="translated">在新分頁中開啟站臺</target> |
@@ -4838,8 +4837,8 @@ The link will expire within 1 hour.</source> | |||
4838 | <trans-unit id="2149300564474427551"> | 4837 | <trans-unit id="2149300564474427551"> |
4839 | <source>Administrator</source> | 4838 | <source>Administrator</source> |
4840 | <target>管理員</target> | 4839 | <target>管理員</target> |
4841 | 4840 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group> | |
4842 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">417</context></context-group></trans-unit> | 4841 | </trans-unit> |
4843 | <trans-unit id="3171683206914962995"> | 4842 | <trans-unit id="3171683206914962995"> |
4844 | <source>Admin email</source> | 4843 | <source>Admin email</source> |
4845 | <target>管理電子郵件</target> | 4844 | <target>管理電子郵件</target> |
@@ -5403,8 +5402,6 @@ color: red; | |||
5403 | <context context-type="linenumber">66</context> | 5402 | <context context-type="linenumber">66</context> |
5404 | </context-group> | 5403 | </context-group> |
5405 | </trans-unit> | 5404 | </trans-unit> |
5406 | |||
5407 | |||
5408 | <trans-unit id="5723033003381016192" datatype="html"> | 5405 | <trans-unit id="5723033003381016192" datatype="html"> |
5409 | <source>Scope:</source> | 5406 | <source>Scope:</source> |
5410 | <target state="translated">範圍:</target> | 5407 | <target state="translated">範圍:</target> |
@@ -5413,7 +5410,6 @@ color: red; | |||
5413 | <context context-type="linenumber">81</context> | 5410 | <context context-type="linenumber">81</context> |
5414 | </context-group> | 5411 | </context-group> |
5415 | </trans-unit> | 5412 | </trans-unit> |
5416 | |||
5417 | <trans-unit id="8481241275509347668" datatype="html"> | 5413 | <trans-unit id="8481241275509347668" datatype="html"> |
5418 | <source>Local videos (this instance)</source> | 5414 | <source>Local videos (this instance)</source> |
5419 | <target state="translated">本機影片(此站台)</target> | 5415 | <target state="translated">本機影片(此站台)</target> |
@@ -5422,7 +5418,6 @@ color: red; | |||
5422 | <context context-type="linenumber">85</context> | 5418 | <context context-type="linenumber">85</context> |
5423 | </context-group> | 5419 | </context-group> |
5424 | </trans-unit> | 5420 | </trans-unit> |
5425 | |||
5426 | <trans-unit id="8383401711408398806" datatype="html"> | 5421 | <trans-unit id="8383401711408398806" datatype="html"> |
5427 | <source>Federated videos (this instance + followed instances)</source> | 5422 | <source>Federated videos (this instance + followed instances)</source> |
5428 | <target state="translated">聯盟影片(此站台 + 已追蹤的站台)</target> | 5423 | <target state="translated">聯盟影片(此站台 + 已追蹤的站台)</target> |
@@ -5447,7 +5442,6 @@ color: red; | |||
5447 | <context context-type="linenumber">99</context> | 5442 | <context context-type="linenumber">99</context> |
5448 | </context-group> | 5443 | </context-group> |
5449 | </trans-unit> | 5444 | </trans-unit> |
5450 | |||
5451 | <trans-unit id="1370537846415473089" datatype="html"> | 5445 | <trans-unit id="1370537846415473089" datatype="html"> |
5452 | <source>Categories:</source> | 5446 | <source>Categories:</source> |
5453 | <target state="translated">分類:</target> | 5447 | <target state="translated">分類:</target> |
@@ -6689,8 +6683,8 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
6689 | <trans-unit id="784681343382270982" datatype="html"> | 6683 | <trans-unit id="784681343382270982" datatype="html"> |
6690 | <source>Remove this filter</source> | 6684 | <source>Remove this filter</source> |
6691 | <target state="translated">移除此過濾條件</target> | 6685 | <target state="translated">移除此過濾條件</target> |
6692 | 6686 | <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> | |
6693 | <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> | 6687 | </trans-unit> |
6694 | <trans-unit id="5254305728396198887" datatype="html"> | 6688 | <trans-unit id="5254305728396198887" datatype="html"> |
6695 | <source>Sensitive content</source> | 6689 | <source>Sensitive content</source> |
6696 | <target state="translated">敏感內容</target> | 6690 | <target state="translated">敏感內容</target> |
@@ -8384,9 +8378,9 @@ channel with the same name (<x id="PH_2" equiv-text="videoChannel.name"/>)!</sou | |||
8384 | <trans-unit id="7916647920967632052" datatype="html"> | 8378 | <trans-unit id="7916647920967632052" datatype="html"> |
8385 | <source>max size</source> | 8379 | <source>max size</source> |
8386 | <target state="translated">最大大小</target> | 8380 | <target state="translated">最大大小</target> |
8387 | 8381 | <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> | |
8388 | 8382 | <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> | |
8389 | <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> | 8383 | </trans-unit> |
8390 | <trans-unit id="6489275254908395777" datatype="html"> | 8384 | <trans-unit id="6489275254908395777" datatype="html"> |
8391 | <source>Maximize editor</source> | 8385 | <source>Maximize editor</source> |
8392 | <target state="translated">最大化編輯器</target> | 8386 | <target state="translated">最大化編輯器</target> |
@@ -9822,18 +9816,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9822 | <target state="translated"> | 9816 | <target state="translated"> |
9823 | <x id="PH"/>(頻道頁面) | 9817 | <x id="PH"/>(頻道頁面) |
9824 | </target> | 9818 | </target> |
9825 | 9819 | <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">19</context></context-group> | |
9826 | 9820 | <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> | |
9827 | 9821 | <context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.ts</context><context context-type="linenumber">113</context></context-group> | |
9828 | <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">19</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">113</context></context-group></trans-unit> | 9822 | </trans-unit> |
9829 | <trans-unit id="1209500590333005801" datatype="html"> | 9823 | <trans-unit id="1209500590333005801" datatype="html"> |
9830 | <source><x id="PH"/> (account page) </source> | 9824 | <source><x id="PH"/> (account page) </source> |
9831 | <target state="translated"> | 9825 | <target state="translated"> |
9832 | <x id="PH"/>(帳號頁面) | 9826 | <x id="PH"/>(帳號頁面) |
9833 | </target> | 9827 | </target> |
9834 | 9828 | <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> | |
9835 | 9829 | <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> | |
9836 | <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">39</context></context-group></trans-unit> | 9830 | </trans-unit> |
9837 | <trans-unit id="2516633974298697807"> | 9831 | <trans-unit id="2516633974298697807"> |
9838 | <source>Emphasis</source> | 9832 | <source>Emphasis</source> |
9839 | <target>強調</target> | 9833 | <target>強調</target> |
@@ -10235,8 +10229,8 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10235 | <trans-unit id="4968151111061046122"> | 10229 | <trans-unit id="4968151111061046122"> |
10236 | <source>Moderator</source> | 10230 | <source>Moderator</source> |
10237 | <target>調解員</target> | 10231 | <target>調解員</target> |
10238 | 10232 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group> | |
10239 | <context-group purpose="location"><context context-type="sourcefile">src/app/core/users/user.service.ts</context><context context-type="linenumber">418</context></context-group></trans-unit> | 10233 | </trans-unit> |
10240 | <trans-unit id="2279527393438260622" datatype="html"> | 10234 | <trans-unit id="2279527393438260622" datatype="html"> |
10241 | <source>Search videos, playlists, channels…</source> | 10235 | <source>Search videos, playlists, channels…</source> |
10242 | <target state="translated">搜尋影片、播放清單、頻道……</target> | 10236 | <target state="translated">搜尋影片、播放清單、頻道……</target> |
@@ -10768,35 +10762,35 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10768 | <trans-unit id="3284171506518522275"> | 10762 | <trans-unit id="3284171506518522275"> |
10769 | <source>Your video was uploaded to your account and is private.</source> | 10763 | <source>Your video was uploaded to your account and is private.</source> |
10770 | <target>您的影片已上傳到您的帳號並為私人影片。</target> | 10764 | <target>您的影片已上傳到您的帳號並為私人影片。</target> |
10771 | <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">118</context></context-group> | 10765 | |
10772 | </trans-unit> | 10766 | <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">125</context></context-group></trans-unit> |
10773 | <trans-unit id="5699822024600815733"> | 10767 | <trans-unit id="5699822024600815733"> |
10774 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> | 10768 | <source>But associated data (tags, description...) will be lost, are you sure you want to leave this page?</source> |
10775 | <target>但相關資料(標籤、描述等)將會遺失,您確定您想要離開此頁面嗎?</target> | 10769 | <target>但相關資料(標籤、描述等)將會遺失,您確定您想要離開此頁面嗎?</target> |
10776 | <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">119</context></context-group> | 10770 | |
10777 | </trans-unit> | 10771 | <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> |
10778 | <trans-unit id="1219739004043110649"> | 10772 | <trans-unit id="1219739004043110649"> |
10779 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> | 10773 | <source>Your video is not uploaded yet, are you sure you want to leave this page?</source> |
10780 | <target>您的影片尚未上傳,您確定您想要離開此頁面嗎?</target> | 10774 | <target>您的影片尚未上傳,您確定您想要離開此頁面嗎?</target> |
10781 | <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">121</context></context-group> | 10775 | |
10782 | </trans-unit> | 10776 | <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">128</context></context-group></trans-unit> |
10783 | <trans-unit id="6932865105766151309" datatype="html"> | 10777 | <trans-unit id="6932865105766151309" datatype="html"> |
10784 | <source>Upload</source> | 10778 | <source>Upload</source> |
10785 | <target state="translated">上傳</target> | 10779 | <target state="translated">上傳</target> |
10786 | <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">227</context></context-group> | 10780 | |
10787 | </trans-unit> | 10781 | <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">234</context></context-group></trans-unit> |
10788 | <trans-unit id="8278735427925094503"> | 10782 | <trans-unit id="8278735427925094503"> |
10789 | <source>Upload <x id="PH"/> </source> | 10783 | <source>Upload <x id="PH"/> </source> |
10790 | <target>上傳 | 10784 | <target>上傳 |
10791 | <x id="PH"/> | 10785 | <x id="PH"/> |
10792 | </target> | 10786 | </target> |
10793 | <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">229</context></context-group> | 10787 | |
10794 | </trans-unit> | 10788 | <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">236</context></context-group></trans-unit> |
10795 | <trans-unit id="5981816353437801748"> | 10789 | <trans-unit id="5981816353437801748"> |
10796 | <source>Video published.</source> | 10790 | <source>Video published.</source> |
10797 | <target>影片已發佈。</target> | 10791 | <target>影片已發佈。</target> |
10798 | <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">251</context></context-group> | 10792 | |
10799 | </trans-unit> | 10793 | <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">258</context></context-group></trans-unit> |
10800 | <trans-unit id="764164089183618119"> | 10794 | <trans-unit id="764164089183618119"> |
10801 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> | 10795 | <source>You have unsaved changes! If you leave, your changes will be lost.</source> |
10802 | <target>您有未儲存的變更!如果您離開,您的變更將會遺失。</target> | 10796 | <target>您有未儲存的變更!如果您離開,您的變更將會遺失。</target> |
diff --git a/client/src/locale/player.cs-CZ.json b/client/src/locale/player.cs-CZ.json index 370a4d9f3..f13a23b00 100644 --- a/client/src/locale/player.cs-CZ.json +++ b/client/src/locale/player.cs-CZ.json | |||
@@ -14,20 +14,20 @@ | |||
14 | "Copy magnet URI": "Zkopírovat URI magnetu", | 14 | "Copy magnet URI": "Zkopírovat URI magnetu", |
15 | "Total downloaded: ": "Celkem stažených: ", | 15 | "Total downloaded: ": "Celkem stažených: ", |
16 | "Total uploaded: ": "Celkem nahraných: ", | 16 | "Total uploaded: ": "Celkem nahraných: ", |
17 | "From servers: ": "From servers: ", | 17 | "From servers: ": "Ze serverů: ", |
18 | "From peers: ": "From peers: ", | 18 | "From peers: ": "From peers: ", |
19 | "Normal mode": "Normal mode", | 19 | "Normal mode": "Normal mode", |
20 | "Stats for nerds": "Stats for nerds", | 20 | "Stats for nerds": "Stats for nerds", |
21 | "Theater mode": "Theater mode", | 21 | "Theater mode": "Theater mode", |
22 | "Video UUID": "Video UUID", | 22 | "Video UUID": "Video UUID", |
23 | "Viewport / Frames": "Viewport / Frames", | 23 | "Viewport / Frames": "Viewport / Frames", |
24 | "Resolution": "Resolution", | 24 | "Resolution": "Rozlišení", |
25 | "Volume": "Volume", | 25 | "Volume": "Volume", |
26 | "Codecs": "Codecs", | 26 | "Codecs": "Kodeky", |
27 | "Color": "Color", | 27 | "Color": "Color", |
28 | "Connection Speed": "Connection Speed", | 28 | "Connection Speed": "Rychlost připojení", |
29 | "Network Activity": "Network Activity", | 29 | "Network Activity": "Network Activity", |
30 | "Total Transfered": "Total Transfered", | 30 | "Total Transfered": "Celkem přeneseno", |
31 | "Download Breakdown": "Download Breakdown", | 31 | "Download Breakdown": "Download Breakdown", |
32 | "Buffer Progress": "Buffer Progress", | 32 | "Buffer Progress": "Buffer Progress", |
33 | "Buffer State": "Buffer State", | 33 | "Buffer State": "Buffer State", |
diff --git a/client/src/locale/player.ru-RU.json b/client/src/locale/player.ru-RU.json index 3313f5f1b..ff29195bd 100644 --- a/client/src/locale/player.ru-RU.json +++ b/client/src/locale/player.ru-RU.json | |||
@@ -20,7 +20,7 @@ | |||
20 | "Stats for nerds": "Статистика для гиков", | 20 | "Stats for nerds": "Статистика для гиков", |
21 | "Theater mode": "Режим \"театр\"", | 21 | "Theater mode": "Режим \"театр\"", |
22 | "Video UUID": "Видео UUID", | 22 | "Video UUID": "Видео UUID", |
23 | "Viewport / Frames": "Viewport / Frames", | 23 | "Viewport / Frames": "Область просмотра / кадры", |
24 | "Resolution": "Разрешение", | 24 | "Resolution": "Разрешение", |
25 | "Volume": "Volume", | 25 | "Volume": "Volume", |
26 | "Codecs": "Кодеки", | 26 | "Codecs": "Кодеки", |
@@ -28,7 +28,7 @@ | |||
28 | "Connection Speed": "Скорость подключения", | 28 | "Connection Speed": "Скорость подключения", |
29 | "Network Activity": "Сетевая Активность", | 29 | "Network Activity": "Сетевая Активность", |
30 | "Total Transfered": "Всего передано", | 30 | "Total Transfered": "Всего передано", |
31 | "Download Breakdown": "Download Breakdown", | 31 | "Download Breakdown": "Скачать разбивку", |
32 | "Buffer Progress": "Buffer Progress", | 32 | "Buffer Progress": "Buffer Progress", |
33 | "Buffer State": "Состояние буфера", | 33 | "Buffer State": "Состояние буфера", |
34 | "Live Latency": "Задержка эфира", | 34 | "Live Latency": "Задержка эфира", |
diff --git a/client/src/locale/player.sv-SE.json b/client/src/locale/player.sv-SE.json index cbedec98a..4ea275ad9 100644 --- a/client/src/locale/player.sv-SE.json +++ b/client/src/locale/player.sv-SE.json | |||
@@ -20,7 +20,7 @@ | |||
20 | "Stats for nerds": "Statistik för nördar", | 20 | "Stats for nerds": "Statistik för nördar", |
21 | "Theater mode": "Biografläge", | 21 | "Theater mode": "Biografläge", |
22 | "Video UUID": "Video-UUID", | 22 | "Video UUID": "Video-UUID", |
23 | "Viewport / Frames": "Viewport / Frames", | 23 | "Viewport / Frames": "Visningsyta / Bildrutor", |
24 | "Resolution": "Upplösning", | 24 | "Resolution": "Upplösning", |
25 | "Volume": "Volume", | 25 | "Volume": "Volume", |
26 | "Codecs": "Kodekar", | 26 | "Codecs": "Kodekar", |
diff --git a/client/src/locale/server.cs-CZ.json b/client/src/locale/server.cs-CZ.json index 1be2ea5a2..984ceb043 100644 --- a/client/src/locale/server.cs-CZ.json +++ b/client/src/locale/server.cs-CZ.json | |||
@@ -27,28 +27,28 @@ | |||
27 | "Public": "Veřejné", | 27 | "Public": "Veřejné", |
28 | "Unlisted": "Nezobrazeno", | 28 | "Unlisted": "Nezobrazeno", |
29 | "Private": "Soukromé", | 29 | "Private": "Soukromé", |
30 | "Internal": "Internal", | 30 | "Internal": "Interní", |
31 | "Published": "Publikované", | 31 | "Published": "Publikované", |
32 | "To transcode": "K transkódování", | 32 | "To transcode": "K transkódování", |
33 | "To import": "To import", | 33 | "To import": "To import", |
34 | "Waiting for livestream": "Waiting for livestream", | 34 | "Waiting for livestream": "Čekání na živý stream", |
35 | "Livestream ended": "Livestream ended", | 35 | "Livestream ended": "Živý stream skončil", |
36 | "To move to an external storage": "To move to an external storage", | 36 | "To move to an external storage": "Přesunout na externí úložiště", |
37 | "Pending": "Čekající", | 37 | "Pending": "Čekající", |
38 | "Success": "Úspěch", | 38 | "Success": "Úspěch", |
39 | "Failed": "Neúspěch", | 39 | "Failed": "Neúspěch", |
40 | "Rejected": "Rejected", | 40 | "Rejected": "Odmítnuto", |
41 | "Regular": "Běžný", | 41 | "Regular": "Běžný", |
42 | "Watch later": "Přehrát později", | 42 | "Watch later": "Přehrát později", |
43 | "This video does not exist.": "Toto video neexistuje.", | 43 | "This video does not exist.": "Toto video neexistuje.", |
44 | "We cannot fetch the video. Please try again later.": "Nemůžeme získat toto video. Prosím zkuste to znovu později.", | 44 | "We cannot fetch the video. Please try again later.": "Nemůžeme získat toto video. Prosím zkuste to znovu později.", |
45 | "Sorry": "Omlouváme se", | 45 | "Sorry": "Omlouváme se", |
46 | "This video is not available because the remote instance is not responding.": "Toto video není dostupné, protože vzdálená instance neodpovídá.", | 46 | "This video is not available because the remote instance is not responding.": "Toto video není dostupné, protože vzdálená instance neodpovídá.", |
47 | "This playlist does not exist": "This playlist does not exist", | 47 | "This playlist does not exist": "Takový playlist neexistuje", |
48 | "We cannot fetch the playlist. Please try again later.": "We cannot fetch the playlist. Please try again later.", | 48 | "We cannot fetch the playlist. Please try again later.": "Nemůžeme poskytnout playlist. Prosíme, zkuste to později.", |
49 | "Playlist: {1}": "Playlist: {1}", | 49 | "Playlist: {1}": "Playlist: {1}", |
50 | "By {1}": "By {1}", | 50 | "By {1}": "By {1}", |
51 | "Unavailable video": "Unavailable video", | 51 | "Unavailable video": "Nedostupné video", |
52 | "Misc": "Různé", | 52 | "Misc": "Různé", |
53 | "Unknown": "Neznámé", | 53 | "Unknown": "Neznámé", |
54 | "Afar": "Afarština", | 54 | "Afar": "Afarština", |
diff --git a/client/src/locale/server.ru-RU.json b/client/src/locale/server.ru-RU.json index 004362a6e..1ba9e2468 100644 --- a/client/src/locale/server.ru-RU.json +++ b/client/src/locale/server.ru-RU.json | |||
@@ -33,7 +33,7 @@ | |||
33 | "To import": "Импортировать", | 33 | "To import": "Импортировать", |
34 | "Waiting for livestream": "В ожидании прямой трансляции", | 34 | "Waiting for livestream": "В ожидании прямой трансляции", |
35 | "Livestream ended": "Прямая трансляция закончилась", | 35 | "Livestream ended": "Прямая трансляция закончилась", |
36 | "To move to an external storage": "To move to an external storage", | 36 | "To move to an external storage": "Чтобы переместить на внешнее хранилище", |
37 | "Pending": "В ожидании", | 37 | "Pending": "В ожидании", |
38 | "Success": "Завершено", | 38 | "Success": "Завершено", |
39 | "Failed": "Неудачно", | 39 | "Failed": "Неудачно", |
diff --git a/client/src/standalone/videos/embed-api.ts b/client/src/standalone/videos/embed-api.ts index b5c9da431..a28aeeaef 100644 --- a/client/src/standalone/videos/embed-api.ts +++ b/client/src/standalone/videos/embed-api.ts | |||
@@ -64,19 +64,12 @@ export class PeerTubeEmbedApi { | |||
64 | if (this.isWebtorrent()) { | 64 | if (this.isWebtorrent()) { |
65 | if (resolutionId === -1 && this.embed.player.webtorrent().isAutoResolutionPossible() === false) return | 65 | if (resolutionId === -1 && this.embed.player.webtorrent().isAutoResolutionPossible() === false) return |
66 | 66 | ||
67 | // Auto resolution | 67 | this.embed.player.webtorrent().changeQuality(resolutionId) |
68 | if (resolutionId === -1) { | ||
69 | this.embed.player.webtorrent().enableAutoResolution() | ||
70 | return | ||
71 | } | ||
72 | |||
73 | this.embed.player.webtorrent().disableAutoResolution() | ||
74 | this.embed.player.webtorrent().updateResolution(resolutionId) | ||
75 | 68 | ||
76 | return | 69 | return |
77 | } | 70 | } |
78 | 71 | ||
79 | this.embed.player.p2pMediaLoader().getHLSJS().nextLevel = resolutionId | 72 | this.embed.player.p2pMediaLoader().getHLSJS().currentLevel = resolutionId |
80 | } | 73 | } |
81 | 74 | ||
82 | private getCaptions (): PeerTubeTextTrack[] { | 75 | private getCaptions (): PeerTubeTextTrack[] { |
@@ -139,15 +132,10 @@ export class PeerTubeEmbedApi { | |||
139 | }) | 132 | }) |
140 | 133 | ||
141 | // PeerTube specific capabilities | 134 | // PeerTube specific capabilities |
142 | if (this.isWebtorrent()) { | 135 | this.embed.player.peertubeResolutions().on('resolutionsAdded', () => this.loadResolutions()) |
143 | this.embed.player.webtorrent().on('autoResolutionUpdate', () => this.loadWebTorrentResolutions()) | 136 | this.embed.player.peertubeResolutions().on('resolutionChanged', () => this.loadResolutions()) |
144 | this.embed.player.webtorrent().on('videoFileUpdate', () => this.loadWebTorrentResolutions()) | ||
145 | 137 | ||
146 | this.loadWebTorrentResolutions() | 138 | this.loadResolutions() |
147 | } else { | ||
148 | this.embed.player.p2pMediaLoader().on('resolutionChange', () => this.loadP2PMediaLoaderResolutions()) | ||
149 | this.embed.player.p2pMediaLoader().on('resolutionsLoaded', () => this.loadP2PMediaLoaderResolutions()) | ||
150 | } | ||
151 | 139 | ||
152 | this.embed.player.on('volumechange', () => { | 140 | this.embed.player.on('volumechange', () => { |
153 | this.channel.notify({ | 141 | this.channel.notify({ |
@@ -157,49 +145,15 @@ export class PeerTubeEmbedApi { | |||
157 | }) | 145 | }) |
158 | } | 146 | } |
159 | 147 | ||
160 | private loadWebTorrentResolutions () { | 148 | private loadResolutions () { |
161 | this.resolutions = [] | 149 | this.resolutions = this.embed.player.peertubeResolutions().getResolutions() |
162 | 150 | .map(r => ({ | |
163 | const currentResolutionId = this.embed.player.webtorrent().getCurrentResolutionId() | 151 | id: r.id, |
164 | 152 | label: r.label, | |
165 | for (const videoFile of this.embed.player.webtorrent().videoFiles) { | 153 | active: r.selected, |
166 | let label = videoFile.resolution.label | 154 | width: r.width, |
167 | if (videoFile.fps && videoFile.fps >= 50) { | 155 | height: r.height |
168 | label += videoFile.fps | 156 | })) |
169 | } | ||
170 | |||
171 | this.resolutions.push({ | ||
172 | id: videoFile.resolution.id, | ||
173 | label, | ||
174 | src: videoFile.magnetUri, | ||
175 | active: videoFile.resolution.id === currentResolutionId, | ||
176 | height: videoFile.resolution.id | ||
177 | }) | ||
178 | } | ||
179 | |||
180 | this.channel.notify({ | ||
181 | method: 'resolutionUpdate', | ||
182 | params: this.resolutions | ||
183 | }) | ||
184 | } | ||
185 | |||
186 | private loadP2PMediaLoaderResolutions () { | ||
187 | this.resolutions = [] | ||
188 | |||
189 | const qualityLevels = this.embed.player.qualityLevels() | ||
190 | const currentResolutionId = this.embed.player.qualityLevels().selectedIndex | ||
191 | |||
192 | for (let i = 0; i < qualityLevels.length; i++) { | ||
193 | const level = qualityLevels[i] | ||
194 | |||
195 | this.resolutions.push({ | ||
196 | id: level.id, | ||
197 | label: level.height + 'p', | ||
198 | active: level.id === currentResolutionId, | ||
199 | width: level.width, | ||
200 | height: level.height | ||
201 | }) | ||
202 | } | ||
203 | 157 | ||
204 | this.channel.notify({ | 158 | this.channel.notify({ |
205 | method: 'resolutionUpdate', | 159 | method: 'resolutionUpdate', |
diff --git a/client/src/standalone/videos/test-embed.ts b/client/src/standalone/videos/test-embed.ts index a28a83cc1..18c338a2d 100644 --- a/client/src/standalone/videos/test-embed.ts +++ b/client/src/standalone/videos/test-embed.ts | |||
@@ -86,8 +86,6 @@ window.addEventListener('load', async () => { | |||
86 | captionEl.innerHTML = '' | 86 | captionEl.innerHTML = '' |
87 | 87 | ||
88 | captions.forEach(c => { | 88 | captions.forEach(c => { |
89 | console.log(c) | ||
90 | |||
91 | if (c.mode === 'showing') { | 89 | if (c.mode === 'showing') { |
92 | const itemEl = document.createElement('strong') | 90 | const itemEl = document.createElement('strong') |
93 | itemEl.innerText = `${c.label} (active)` | 91 | itemEl.innerText = `${c.label} (active)` |
diff --git a/client/yarn.lock b/client/yarn.lock index 8f41b3102..508b8ad28 100644 --- a/client/yarn.lock +++ b/client/yarn.lock | |||
@@ -12618,14 +12618,6 @@ videojs-contextmenu-pt@^5.4.1: | |||
12618 | global "^4.4.0" | 12618 | global "^4.4.0" |
12619 | video.js "^7.6.0" | 12619 | video.js "^7.6.0" |
12620 | 12620 | ||
12621 | videojs-contrib-quality-levels@^2.0.9: | ||
12622 | version "2.1.0" | ||
12623 | resolved "https://registry.yarnpkg.com/videojs-contrib-quality-levels/-/videojs-contrib-quality-levels-2.1.0.tgz#046e9e21ed01043f512b83a1916001d552457083" | ||
12624 | integrity sha512-dqGQGbL9AFhucxki7Zh0c3kIhH0PAPcHEh6jUdRyaFCVeOuqnJrOYs/3wNtsokDdBdRf2Du2annpu4Z2XaSZRg== | ||
12625 | dependencies: | ||
12626 | global "^4.3.2" | ||
12627 | video.js "^6 || ^7" | ||
12628 | |||
12629 | videojs-dock@^2.0.2: | 12621 | videojs-dock@^2.0.2: |
12630 | version "2.2.0" | 12622 | version "2.2.0" |
12631 | resolved "https://registry.yarnpkg.com/videojs-dock/-/videojs-dock-2.2.0.tgz#57e4f942da1b8e930c4387fed85942473bc40829" | 12623 | resolved "https://registry.yarnpkg.com/videojs-dock/-/videojs-dock-2.2.0.tgz#57e4f942da1b8e930c4387fed85942473bc40829" |
diff --git a/package.json b/package.json index ef22e2961..91b2be0da 100644 --- a/package.json +++ b/package.json | |||
@@ -198,8 +198,6 @@ | |||
198 | "eslint-plugin-standard": "^5.0.0", | 198 | "eslint-plugin-standard": "^5.0.0", |
199 | "fast-xml-parser": "^3.19.0", | 199 | "fast-xml-parser": "^3.19.0", |
200 | "maildev": "^1.0.0-rc3", | 200 | "maildev": "^1.0.0-rc3", |
201 | "marked": "^3.0.2", | ||
202 | "marked-man": "^0.7.0", | ||
203 | "mocha": "^9.0.0", | 201 | "mocha": "^9.0.0", |
204 | "nodemon": "^2.0.1", | 202 | "nodemon": "^2.0.1", |
205 | "proxy": "^1.0.2", | 203 | "proxy": "^1.0.2", |
diff --git a/scripts/generate-cli-doc.sh b/scripts/generate-cli-doc.sh deleted file mode 100755 index 0d00f183b..000000000 --- a/scripts/generate-cli-doc.sh +++ /dev/null | |||
@@ -1,5 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | set -eu | ||
4 | |||
5 | node_modules/marked-man/bin/marked-man server/tools/README.md > dist/server/tools/peertube.8 | ||
diff --git a/server/controllers/api/search/search-video-channels.ts b/server/controllers/api/search/search-video-channels.ts index 25173ac20..089feed65 100644 --- a/server/controllers/api/search/search-video-channels.ts +++ b/server/controllers/api/search/search-video-channels.ts | |||
@@ -47,7 +47,7 @@ export { searchChannelsRouter } | |||
47 | 47 | ||
48 | function searchVideoChannels (req: express.Request, res: express.Response) { | 48 | function searchVideoChannels (req: express.Request, res: express.Response) { |
49 | const query = pickSearchChannelQuery(req.query) | 49 | const query = pickSearchChannelQuery(req.query) |
50 | let search = query.search || '' | 50 | const search = query.search || '' |
51 | 51 | ||
52 | const parts = search.split('@') | 52 | const parts = search.split('@') |
53 | 53 | ||
@@ -58,7 +58,7 @@ function searchVideoChannels (req: express.Request, res: express.Response) { | |||
58 | if (isURISearch(search) || isWebfingerSearch) return searchVideoChannelURI(search, isWebfingerSearch, res) | 58 | if (isURISearch(search) || isWebfingerSearch) return searchVideoChannelURI(search, isWebfingerSearch, res) |
59 | 59 | ||
60 | // @username -> username to search in DB | 60 | // @username -> username to search in DB |
61 | if (search.startsWith('@')) search = search.replace(/^@/, '') | 61 | if (search.startsWith('@')) query.search = search.replace(/^@/, '') |
62 | 62 | ||
63 | if (isSearchIndexSearch(query)) { | 63 | if (isSearchIndexSearch(query)) { |
64 | return searchVideoChannelsIndex(query, res) | 64 | return searchVideoChannelsIndex(query, res) |
diff --git a/server/helpers/logger.ts b/server/helpers/logger.ts index 4bd00e503..81b0dfaaa 100644 --- a/server/helpers/logger.ts +++ b/server/helpers/logger.ts | |||
@@ -123,10 +123,9 @@ function buildLogger (labelSuffix?: string) { | |||
123 | } | 123 | } |
124 | 124 | ||
125 | function bunyanLogFactory (level: string) { | 125 | function bunyanLogFactory (level: string) { |
126 | return function () { | 126 | return function (...params: any[]) { |
127 | let meta = null | 127 | let meta = null |
128 | let args: any[] = [] | 128 | let args = [].concat(params) |
129 | args.concat(arguments) | ||
130 | 129 | ||
131 | if (arguments[0] instanceof Error) { | 130 | if (arguments[0] instanceof Error) { |
132 | meta = arguments[0].toString() | 131 | meta = arguments[0].toString() |
@@ -143,6 +142,7 @@ function bunyanLogFactory (level: string) { | |||
143 | } | 142 | } |
144 | 143 | ||
145 | const bunyanLogger = { | 144 | const bunyanLogger = { |
145 | level: () => { }, | ||
146 | trace: bunyanLogFactory('debug'), | 146 | trace: bunyanLogFactory('debug'), |
147 | debug: bunyanLogFactory('debug'), | 147 | debug: bunyanLogFactory('debug'), |
148 | info: bunyanLogFactory('info'), | 148 | info: bunyanLogFactory('info'), |
diff --git a/server/helpers/markdown.ts b/server/helpers/markdown.ts index 41e57d857..ebf479b98 100644 --- a/server/helpers/markdown.ts +++ b/server/helpers/markdown.ts | |||
@@ -34,7 +34,7 @@ const mdToPlainText = text => { | |||
34 | 34 | ||
35 | return safeHtml.replace(/<[^>]+>/g, '') | 35 | return safeHtml.replace(/<[^>]+>/g, '') |
36 | .replace(/\n$/, '') | 36 | .replace(/\n$/, '') |
37 | .replace('\n', ', ') | 37 | .replace(/\n/g, ', ') |
38 | } | 38 | } |
39 | 39 | ||
40 | // --------------------------------------------------------------------------- | 40 | // --------------------------------------------------------------------------- |
diff --git a/server/lib/client-html.ts b/server/lib/client-html.ts index 3529acf5e..84b4ca97d 100644 --- a/server/lib/client-html.ts +++ b/server/lib/client-html.ts | |||
@@ -303,7 +303,6 @@ class ClientHtml { | |||
303 | 303 | ||
304 | let html = buffer.toString() | 304 | let html = buffer.toString() |
305 | 305 | ||
306 | if (paramLang) html = ClientHtml.addHtmlLang(html, paramLang) | ||
307 | html = ClientHtml.addManifestContentHash(html) | 306 | html = ClientHtml.addManifestContentHash(html) |
308 | html = ClientHtml.addFaviconContentHash(html) | 307 | html = ClientHtml.addFaviconContentHash(html) |
309 | html = ClientHtml.addLogoContentHash(html) | 308 | html = ClientHtml.addLogoContentHash(html) |
@@ -555,8 +554,7 @@ function sendHTML (html: string, res: express.Response) { | |||
555 | } | 554 | } |
556 | 555 | ||
557 | async function serveIndexHTML (req: express.Request, res: express.Response) { | 556 | async function serveIndexHTML (req: express.Request, res: express.Response) { |
558 | if (req.accepts(ACCEPT_HEADERS) === 'html' || | 557 | if (req.accepts(ACCEPT_HEADERS) === 'html' || !req.headers.accept) { |
559 | !req.headers.accept) { | ||
560 | try { | 558 | try { |
561 | await generateHTMLPage(req, res, req.params.language) | 559 | await generateHTMLPage(req, res, req.params.language) |
562 | return | 560 | return |
diff --git a/server/lib/emailer.ts b/server/lib/emailer.ts index 6bb61484b..60284ea28 100644 --- a/server/lib/emailer.ts +++ b/server/lib/emailer.ts | |||
@@ -222,7 +222,7 @@ class Emailer { | |||
222 | sendmail: true, | 222 | sendmail: true, |
223 | newline: 'unix', | 223 | newline: 'unix', |
224 | path: CONFIG.SMTP.SENDMAIL, | 224 | path: CONFIG.SMTP.SENDMAIL, |
225 | logger: bunyanLogger as any | 225 | logger: bunyanLogger |
226 | }) | 226 | }) |
227 | } | 227 | } |
228 | 228 | ||
diff --git a/server/lib/transcoding/video-transcoding-profiles.ts b/server/lib/transcoding/video-transcoding-profiles.ts index 848b823e6..92971210c 100644 --- a/server/lib/transcoding/video-transcoding-profiles.ts +++ b/server/lib/transcoding/video-transcoding-profiles.ts | |||
@@ -65,7 +65,7 @@ const defaultAACOptionsBuilder: EncoderOptionsBuilder = async ({ input, streamNu | |||
65 | 65 | ||
66 | logger.debug('Calculating audio bitrate of %s by AAC encoder.', input, { bitrate: parsedAudio.bitrate, audioCodecName }) | 66 | logger.debug('Calculating audio bitrate of %s by AAC encoder.', input, { bitrate: parsedAudio.bitrate, audioCodecName }) |
67 | 67 | ||
68 | if (bitrate !== undefined && bitrate !== -1) { | 68 | if (bitrate !== -1) { |
69 | return { outputOptions: [ buildStreamSuffix('-b:a', streamNum), bitrate + 'k' ] } | 69 | return { outputOptions: [ buildStreamSuffix('-b:a', streamNum), bitrate + 'k' ] } |
70 | } | 70 | } |
71 | 71 | ||
diff --git a/server/middlewares/validators/oembed.ts b/server/middlewares/validators/oembed.ts index 96c8adc99..32dd05271 100644 --- a/server/middlewares/validators/oembed.ts +++ b/server/middlewares/validators/oembed.ts | |||
@@ -28,7 +28,6 @@ function buildUrls (paths: string[]) { | |||
28 | const startPlaylistURLs = buildUrls(playlistPaths) | 28 | const startPlaylistURLs = buildUrls(playlistPaths) |
29 | const startVideoURLs = buildUrls(videoPaths) | 29 | const startVideoURLs = buildUrls(videoPaths) |
30 | 30 | ||
31 | const watchRegex = /([^/]+)$/ | ||
32 | const isURLOptions = { | 31 | const isURLOptions = { |
33 | require_host: true, | 32 | require_host: true, |
34 | require_tld: true | 33 | require_tld: true |
@@ -81,9 +80,9 @@ const oembedValidator = [ | |||
81 | 80 | ||
82 | const startIsOk = isVideo || isPlaylist | 81 | const startIsOk = isVideo || isPlaylist |
83 | 82 | ||
84 | const matches = watchRegex.exec(urlPath) | 83 | const parts = urlPath.split('/') |
85 | 84 | ||
86 | if (startIsOk === false || matches === null) { | 85 | if (startIsOk === false || parts.length === 0) { |
87 | return res.fail({ | 86 | return res.fail({ |
88 | status: HttpStatusCode.BAD_REQUEST_400, | 87 | status: HttpStatusCode.BAD_REQUEST_400, |
89 | message: 'Invalid url.', | 88 | message: 'Invalid url.', |
@@ -93,7 +92,7 @@ const oembedValidator = [ | |||
93 | }) | 92 | }) |
94 | } | 93 | } |
95 | 94 | ||
96 | const elementId = toCompleteUUID(matches[1]) | 95 | const elementId = toCompleteUUID(parts.pop()) |
97 | if (isIdOrUUIDValid(elementId) === false) { | 96 | if (isIdOrUUIDValid(elementId) === false) { |
98 | return res.fail({ message: 'Invalid video or playlist id.' }) | 97 | return res.fail({ message: 'Invalid video or playlist id.' }) |
99 | } | 98 | } |
diff --git a/server/models/video/sql/shared/video-model-builder.ts b/server/models/video/sql/shared/video-model-builder.ts index e7e2aa1ca..33a0181e9 100644 --- a/server/models/video/sql/shared/video-model-builder.ts +++ b/server/models/video/sql/shared/video-model-builder.ts | |||
@@ -120,7 +120,7 @@ export class VideoModelBuilder { | |||
120 | private grabSeparateStreamingPlaylistFiles (rowsStreamingPlaylist?: SQLRow[]) { | 120 | private grabSeparateStreamingPlaylistFiles (rowsStreamingPlaylist?: SQLRow[]) { |
121 | if (!rowsStreamingPlaylist) return | 121 | if (!rowsStreamingPlaylist) return |
122 | 122 | ||
123 | for (const row of rowsStreamingPlaylist || []) { | 123 | for (const row of rowsStreamingPlaylist) { |
124 | const id = row['VideoStreamingPlaylists.id'] | 124 | const id = row['VideoStreamingPlaylists.id'] |
125 | if (!id) continue | 125 | if (!id) continue |
126 | 126 | ||
diff --git a/server/tools/README.md b/server/tools/README.md index e86df3bfc..449c57ce1 100644 --- a/server/tools/README.md +++ b/server/tools/README.md | |||
@@ -1,82 +1,3 @@ | |||
1 | peertube(8) -- companion CLI for PeerTube | 1 | # PeerTube CLI |
2 | ========================================= | ||
3 | 2 | ||
4 | SYNOPSIS | 3 | See https://docs.joinpeertube.org/maintain-tools?id=remote-tools |
5 | -------- | ||
6 | |||
7 | ``` | ||
8 | peertube [command] [options] | ||
9 | ``` | ||
10 | |||
11 | DESCRIPTION | ||
12 | ----------- | ||
13 | |||
14 | `peertube` wraps various utilities around PeerTube that are used either on a running local, running remote, or cold local instance. | ||
15 | |||
16 | COMMANDS | ||
17 | -------- | ||
18 | |||
19 | Unless otherwise specified, every command can be queried for its own help or manual by passing its name to the `help` command, or by using the `--help` option. | ||
20 | |||
21 | `auth [action]`: stores credentials for your accounts on remote instances, so that you don't need to pass them at every command | ||
22 | |||
23 | `upload|up`: upload a video to a remote instance | ||
24 | |||
25 | $ peertube upload \ | ||
26 | -u "PEERTUBE_URL" \ | ||
27 | -U "PEERTUBE_USER" \ | ||
28 | --password "PEERTUBE_PASSWORD" | ||
29 | |||
30 | `import-videos|import`: import a video from a streaming platform to a remote instance | ||
31 | |||
32 | $ peertube import \ | ||
33 | -u "PEERTUBE_URL" \ | ||
34 | -U "PEERTUBE_USER" \ | ||
35 | --password "PEERTUBE_PASSWORD" \ | ||
36 | -t "TARGET_URL" | ||
37 | |||
38 | The target URL can be directly the video file, or any of the supported sites of youtube-dl. The video is downloaded locally and then uploaded. Already downloaded videos will not be uploaded twice, so you can run and re-run the script in case of crash, disconnection… | ||
39 | |||
40 | `watch|w`: watch a video in the terminal ✩°。⋆ | ||
41 | |||
42 | -g, --gui <player> player type (default: ascii) | ||
43 | -i, --invert invert colors (ascii player only) | ||
44 | -r, --resolution <res> video resolution (default: 720) | ||
45 | |||
46 | It provides support for different players: | ||
47 | |||
48 | - ascii (default ; plays in ascii art in your terminal!) | ||
49 | - mpv | ||
50 | - mplayer | ||
51 | - vlc | ||
52 | - stdout | ||
53 | - xbmc | ||
54 | - airplay | ||
55 | - chromecast | ||
56 | |||
57 | `repl`: interact with the application libraries and objects even when PeerTube is not running | ||
58 | |||
59 | Type .help to see the repl-only functions, or to see the available PeerTube core functions: | ||
60 | |||
61 | repl> lodash.keys(context) | ||
62 | |||
63 | `help [cmd]`: display help for [cmd] | ||
64 | |||
65 | EXAMPLES | ||
66 | -------- | ||
67 | |||
68 | $ peertube auth add -u "PEERTUBE_URL" -U "PEERTUBE_USER" --password "PEERTUBE_PASSWORD" | ||
69 | $ peertube up <videoFile> | ||
70 | $ peertube watch https://peertube.cpy.re/videos/watch/e8a1af4e-414a-4d58-bfe6-2146eed06d10 | ||
71 | |||
72 | SEE ALSO | ||
73 | -------- | ||
74 | |||
75 | [PeerTube Tools Documentation](https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/tools.md) | ||
76 | |||
77 | [PeerTube Admin Documentation](https://docs.joinpeertube.org/lang/en/docs/) | ||
78 | |||
79 | REPORTING BUGS | ||
80 | -------------- | ||
81 | |||
82 | See [PeerTube repository](https://github.com/Chocobozzz/PeerTube). | ||
diff --git a/server/tools/package.json b/server/tools/package.json index e3899f3b2..b20f38244 100644 --- a/server/tools/package.json +++ b/server/tools/package.json | |||
@@ -5,8 +5,7 @@ | |||
5 | "dependencies": { | 5 | "dependencies": { |
6 | "application-config": "^2.0.0", | 6 | "application-config": "^2.0.0", |
7 | "cli-table3": "^0.6.0", | 7 | "cli-table3": "^0.6.0", |
8 | "netrc-parser": "^3.1.6", | 8 | "netrc-parser": "^3.1.6" |
9 | "webtorrent-hybrid": "^4.0.3" | ||
10 | }, | 9 | }, |
11 | "devDependencies": {} | 10 | "devDependencies": {} |
12 | } | 11 | } |
diff --git a/server/tools/peertube-repl.ts b/server/tools/peertube-repl.ts deleted file mode 100644 index eb0a776b8..000000000 --- a/server/tools/peertube-repl.ts +++ /dev/null | |||
@@ -1,83 +0,0 @@ | |||
1 | import { registerTSPaths } from '../helpers/register-ts-paths' | ||
2 | registerTSPaths() | ||
3 | |||
4 | import * as repl from 'repl' | ||
5 | import * as path from 'path' | ||
6 | import * as _ from 'lodash' | ||
7 | import * as Sequelize from 'sequelize' | ||
8 | import * as YoutubeDL from 'youtube-dl' | ||
9 | import { initDatabaseModels, sequelizeTypescript } from '../initializers/database' | ||
10 | import * as cli from '../tools/cli' | ||
11 | import { logger } from '../helpers/logger' | ||
12 | import * as constants from '../initializers/constants' | ||
13 | import * as modelsUtils from '../models/utils' | ||
14 | import * as coreUtils from '../helpers/core-utils' | ||
15 | import * as ffmpegUtils from '../helpers/ffmpeg-utils' | ||
16 | import * as peertubeCryptoUtils from '../helpers/peertube-crypto' | ||
17 | import * as utils from '../helpers/utils' | ||
18 | import * as YoutubeDLUtils from '../helpers/youtube-dl' | ||
19 | |||
20 | const start = async () => { | ||
21 | await initDatabaseModels(true) | ||
22 | |||
23 | const versionCommitHash = await utils.getServerCommit() | ||
24 | |||
25 | const initContext = (replServer) => { | ||
26 | return (context) => { | ||
27 | const properties = { | ||
28 | context, | ||
29 | repl: replServer, | ||
30 | env: process.env, | ||
31 | lodash: _, | ||
32 | path, | ||
33 | cli, | ||
34 | logger, | ||
35 | constants, | ||
36 | Sequelize, | ||
37 | sequelizeTypescript, | ||
38 | modelsUtils, | ||
39 | models: sequelizeTypescript.models, | ||
40 | transaction: sequelizeTypescript.transaction, | ||
41 | query: sequelizeTypescript.query, | ||
42 | queryInterface: sequelizeTypescript.getQueryInterface(), | ||
43 | YoutubeDL, | ||
44 | coreUtils, | ||
45 | ffmpegUtils, | ||
46 | peertubeCryptoUtils, | ||
47 | utils, | ||
48 | YoutubeDLUtils | ||
49 | } | ||
50 | |||
51 | for (const prop in properties) { | ||
52 | Object.defineProperty(context, prop, { | ||
53 | configurable: false, | ||
54 | enumerable: true, | ||
55 | value: properties[prop] | ||
56 | }) | ||
57 | } | ||
58 | } | ||
59 | } | ||
60 | |||
61 | const replServer = repl.start({ | ||
62 | prompt: `PeerTube [${cli.version}] (${versionCommitHash})> ` | ||
63 | }) | ||
64 | |||
65 | initContext(replServer)(replServer.context) | ||
66 | replServer.on('reset', initContext(replServer)) | ||
67 | replServer.on('exit', () => process.exit()) | ||
68 | |||
69 | const resetCommand = { | ||
70 | help: 'Reset REPL', | ||
71 | action () { | ||
72 | this.write('.clear\n') | ||
73 | this.displayPrompt() | ||
74 | } | ||
75 | } | ||
76 | replServer.defineCommand('reset', resetCommand) | ||
77 | replServer.defineCommand('r', resetCommand) | ||
78 | } | ||
79 | |||
80 | start() | ||
81 | .catch((err) => { | ||
82 | console.error(err) | ||
83 | }) | ||
diff --git a/server/tools/peertube-watch.ts b/server/tools/peertube-watch.ts deleted file mode 100644 index 892c9e7a6..000000000 --- a/server/tools/peertube-watch.ts +++ /dev/null | |||
@@ -1,42 +0,0 @@ | |||
1 | import { registerTSPaths } from '../helpers/register-ts-paths' | ||
2 | registerTSPaths() | ||
3 | |||
4 | import { program, Option, OptionValues } from 'commander' | ||
5 | import { join } from 'path' | ||
6 | import { execSync } from 'child_process' | ||
7 | |||
8 | program | ||
9 | .name('watch') | ||
10 | .arguments('<url>') | ||
11 | .addOption( | ||
12 | new Option('-g, --gui <player>', 'player type') | ||
13 | .default('vlc') | ||
14 | .choices([ 'airplay', 'stdout', 'chromecast', 'mpv', 'vlc', 'mplayer', 'xbmc' ]) | ||
15 | ) | ||
16 | .option('-r, --resolution <res>', 'video resolution', '480') | ||
17 | .addHelpText('after', '\n\n Examples:\n\n' + | ||
18 | ' $ peertube watch -g mpv https://peertube.cpy.re/videos/watch/e8a1af4e-414a-4d58-bfe6-2146eed06d10\n' + | ||
19 | ' $ peertube watch --gui stdout https://peertube.cpy.re/videos/watch/e8a1af4e-414a-4d58-bfe6-2146eed06d10\n' + | ||
20 | ' $ peertube watch https://peertube.cpy.re/videos/watch/e8a1af4e-414a-4d58-bfe6-2146eed06d10\n' | ||
21 | ) | ||
22 | .action((url, options) => run(url, options)) | ||
23 | .parse(process.argv) | ||
24 | |||
25 | function run (url: string, options: OptionValues) { | ||
26 | if (!url) { | ||
27 | console.error('<url> positional argument is required.') | ||
28 | process.exit(-1) | ||
29 | } | ||
30 | |||
31 | const cmd = 'node ' + join(__dirname, 'node_modules', 'webtorrent-hybrid', 'bin', 'cmd.js') | ||
32 | const args = ` --${options.gui} ` + | ||
33 | url.replace(/(\/videos\/watch\/)|\/w\//, '/download/torrents/') + | ||
34 | `-${options.resolution}.torrent` | ||
35 | |||
36 | try { | ||
37 | execSync(cmd + args) | ||
38 | } catch (err) { | ||
39 | console.error('Cannto exec command.', err) | ||
40 | process.exit(-1) | ||
41 | } | ||
42 | } | ||
diff --git a/server/tools/peertube.ts b/server/tools/peertube.ts index a40c1332e..9e07640f0 100644 --- a/server/tools/peertube.ts +++ b/server/tools/peertube.ts | |||
@@ -1,7 +1,5 @@ | |||
1 | #!/usr/bin/env node | 1 | #!/usr/bin/env node |
2 | 2 | ||
3 | /* eslint-disable no-useless-escape */ | ||
4 | |||
5 | import { registerTSPaths } from '../helpers/register-ts-paths' | 3 | import { registerTSPaths } from '../helpers/register-ts-paths' |
6 | registerTSPaths() | 4 | registerTSPaths() |
7 | 5 | ||
@@ -18,8 +16,6 @@ program | |||
18 | .command('upload', 'upload a video').alias('up') | 16 | .command('upload', 'upload a video').alias('up') |
19 | .command('import-videos', 'import a video from a streaming platform').alias('import') | 17 | .command('import-videos', 'import a video from a streaming platform').alias('import') |
20 | .command('get-access-token', 'get a peertube access token', { noHelp: true }).alias('token') | 18 | .command('get-access-token', 'get a peertube access token', { noHelp: true }).alias('token') |
21 | .command('watch', 'watch a video in the terminal ✩°。⋆').alias('w') | ||
22 | .command('repl', 'initiate a REPL to access internals') | ||
23 | .command('plugins [action]', 'manage instance plugins/themes').alias('p') | 19 | .command('plugins [action]', 'manage instance plugins/themes').alias('p') |
24 | .command('redundancy [action]', 'manage instance redundancies').alias('r') | 20 | .command('redundancy [action]', 'manage instance redundancies').alias('r') |
25 | 21 | ||
@@ -47,7 +43,7 @@ if (!process.argv.slice(2).length) { | |||
47 | / / -" _/"/ | 43 | / / -" _/"/ |
48 | / | ._\\\\ |\\ |_.".-" / | 44 | / | ._\\\\ |\\ |_.".-" / |
49 | / | __\\)|)|),/|_." _,." | 45 | / | __\\)|)|),/|_." _,." |
50 | / \_." " ") | ).-""---''-- | 46 | / \\_." " ") | ).-""---''-- |
51 | ( "/.""7__-""'' | 47 | ( "/.""7__-""'' |
52 | | " ."._--._ | 48 | | " ."._--._ |
53 | \\ \\ (_ __ "" ".,_ | 49 | \\ \\ (_ __ "" ".,_ |
@@ -72,8 +68,7 @@ getSettings() | |||
72 | .addHelpText('after', '\n\n State: ' + state + '\n\n' + | 68 | .addHelpText('after', '\n\n State: ' + state + '\n\n' + |
73 | ' Examples:\n\n' + | 69 | ' Examples:\n\n' + |
74 | ' $ peertube auth add -u "PEERTUBE_URL" -U "PEERTUBE_USER" --password "PEERTUBE_PASSWORD"\n' + | 70 | ' $ peertube auth add -u "PEERTUBE_URL" -U "PEERTUBE_USER" --password "PEERTUBE_PASSWORD"\n' + |
75 | ' $ peertube up <videoFile>\n' + | 71 | ' $ peertube up <videoFile>\n' |
76 | ' $ peertube watch https://peertube.cpy.re/videos/watch/e8a1af4e-414a-4d58-bfe6-2146eed06d10\n' | ||
77 | ) | 72 | ) |
78 | .parse(process.argv) | 73 | .parse(process.argv) |
79 | }) | 74 | }) |
diff --git a/server/tools/test-live.ts b/server/tools/test-live.ts deleted file mode 100644 index 27f2a4a92..000000000 --- a/server/tools/test-live.ts +++ /dev/null | |||
@@ -1,102 +0,0 @@ | |||
1 | import { program } from 'commander' | ||
2 | import { LiveVideoCreate, VideoPrivacy } from '@shared/models' | ||
3 | import { | ||
4 | createSingleServer, | ||
5 | killallServers, | ||
6 | sendRTMPStream, | ||
7 | PeerTubeServer, | ||
8 | setAccessTokensToServers, | ||
9 | setDefaultVideoChannel | ||
10 | } from '../../shared/extra-utils' | ||
11 | import { registerTSPaths } from '../helpers/register-ts-paths' | ||
12 | |||
13 | registerTSPaths() | ||
14 | |||
15 | type CommandType = 'live-mux' | 'live-transcoding' | ||
16 | |||
17 | registerTSPaths() | ||
18 | |||
19 | const command = program | ||
20 | .name('test-live') | ||
21 | .option('-t, --type <type>', 'live-muxing|live-transcoding') | ||
22 | .parse(process.argv) | ||
23 | |||
24 | run() | ||
25 | .catch(err => { | ||
26 | console.error(err) | ||
27 | process.exit(-1) | ||
28 | }) | ||
29 | |||
30 | async function run () { | ||
31 | const commandType: CommandType = command['type'] | ||
32 | if (!commandType) { | ||
33 | console.error('Miss command type') | ||
34 | process.exit(-1) | ||
35 | } | ||
36 | |||
37 | console.log('Starting server.') | ||
38 | |||
39 | const server = await createSingleServer(1, {}, { hideLogs: false, nodeArgs: [ '--inspect' ] }) | ||
40 | |||
41 | const cleanup = async () => { | ||
42 | console.log('Killing server') | ||
43 | await killallServers([ server ]) | ||
44 | } | ||
45 | |||
46 | process.on('exit', cleanup) | ||
47 | process.on('SIGINT', cleanup) | ||
48 | |||
49 | await setAccessTokensToServers([ server ]) | ||
50 | await setDefaultVideoChannel([ server ]) | ||
51 | |||
52 | await buildConfig(server, commandType) | ||
53 | |||
54 | const attributes: LiveVideoCreate = { | ||
55 | name: 'live', | ||
56 | saveReplay: true, | ||
57 | channelId: server.store.channel.id, | ||
58 | privacy: VideoPrivacy.PUBLIC | ||
59 | } | ||
60 | |||
61 | console.log('Creating live.') | ||
62 | |||
63 | const { uuid: liveVideoUUID } = await server.live.create({ fields: attributes }) | ||
64 | |||
65 | const live = await server.live.get({ videoId: liveVideoUUID }) | ||
66 | |||
67 | console.log('Sending RTMP stream.') | ||
68 | |||
69 | const ffmpegCommand = sendRTMPStream({ rtmpBaseUrl: live.rtmpUrl, streamKey: live.streamKey }) | ||
70 | |||
71 | ffmpegCommand.on('error', err => { | ||
72 | console.error(err) | ||
73 | process.exit(-1) | ||
74 | }) | ||
75 | |||
76 | ffmpegCommand.on('end', () => { | ||
77 | console.log('ffmpeg ended') | ||
78 | process.exit(0) | ||
79 | }) | ||
80 | } | ||
81 | |||
82 | // ---------------------------------------------------------------------------- | ||
83 | |||
84 | async function buildConfig (server: PeerTubeServer, commandType: CommandType) { | ||
85 | await server.config.updateCustomSubConfig({ | ||
86 | newConfig: { | ||
87 | instance: { | ||
88 | customizations: { | ||
89 | javascript: '', | ||
90 | css: '' | ||
91 | } | ||
92 | }, | ||
93 | live: { | ||
94 | enabled: true, | ||
95 | allowReplay: true, | ||
96 | transcoding: { | ||
97 | enabled: commandType === 'live-transcoding' | ||
98 | } | ||
99 | } | ||
100 | } | ||
101 | }) | ||
102 | } | ||
diff --git a/server/tools/yarn.lock b/server/tools/yarn.lock index dceacb223..28e9779da 100644 --- a/server/tools/yarn.lock +++ b/server/tools/yarn.lock | |||
@@ -23,97 +23,6 @@ | |||
23 | chalk "^2.0.0" | 23 | chalk "^2.0.0" |
24 | js-tokens "^4.0.0" | 24 | js-tokens "^4.0.0" |
25 | 25 | ||
26 | "@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": | ||
27 | version "1.1.2" | ||
28 | resolved "https://registry.yarnpkg.com/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" | ||
29 | integrity sha1-m4sMxmPWaafY9vXQiToU00jzD78= | ||
30 | |||
31 | "@protobufjs/base64@^1.1.2": | ||
32 | version "1.1.2" | ||
33 | resolved "https://registry.yarnpkg.com/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735" | ||
34 | integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg== | ||
35 | |||
36 | "@protobufjs/codegen@^2.0.4": | ||
37 | version "2.0.4" | ||
38 | resolved "https://registry.yarnpkg.com/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb" | ||
39 | integrity sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg== | ||
40 | |||
41 | "@protobufjs/eventemitter@^1.1.0": | ||
42 | version "1.1.0" | ||
43 | resolved "https://registry.yarnpkg.com/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70" | ||
44 | integrity sha1-NVy8mLr61ZePntCV85diHx0Ga3A= | ||
45 | |||
46 | "@protobufjs/fetch@^1.1.0": | ||
47 | version "1.1.0" | ||
48 | resolved "https://registry.yarnpkg.com/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45" | ||
49 | integrity sha1-upn7WYYUr2VwDBYZ/wbUVLDYTEU= | ||
50 | dependencies: | ||
51 | "@protobufjs/aspromise" "^1.1.1" | ||
52 | "@protobufjs/inquire" "^1.1.0" | ||
53 | |||
54 | "@protobufjs/float@^1.0.2": | ||
55 | version "1.0.2" | ||
56 | resolved "https://registry.yarnpkg.com/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1" | ||
57 | integrity sha1-Xp4avctz/Ap8uLKR33jIy9l7h9E= | ||
58 | |||
59 | "@protobufjs/inquire@^1.1.0": | ||
60 | version "1.1.0" | ||
61 | resolved "https://registry.yarnpkg.com/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089" | ||
62 | integrity sha1-/yAOPnzyQp4tyvwRQIKOjMY48Ik= | ||
63 | |||
64 | "@protobufjs/path@^1.1.2": | ||
65 | version "1.1.2" | ||
66 | resolved "https://registry.yarnpkg.com/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d" | ||
67 | integrity sha1-bMKyDFya1q0NzP0hynZz2Nf79o0= | ||
68 | |||
69 | "@protobufjs/pool@^1.1.0": | ||
70 | version "1.1.0" | ||
71 | resolved "https://registry.yarnpkg.com/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54" | ||
72 | integrity sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q= | ||
73 | |||
74 | "@protobufjs/utf8@^1.1.0": | ||
75 | version "1.1.0" | ||
76 | resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" | ||
77 | integrity sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA= | ||
78 | |||
79 | "@types/long@^4.0.1": | ||
80 | version "4.0.1" | ||
81 | resolved "https://registry.yarnpkg.com/@types/long/-/long-4.0.1.tgz#459c65fa1867dafe6a8f322c4c51695663cc55e9" | ||
82 | integrity sha512-5tXH6Bx/kNGd3MgffdmP4dy2Z+G4eaXw0SE81Tq3BNadtnMR5/ySMzX4SLEzHJzSmPNn4HIdpQsBvXMUykr58w== | ||
83 | |||
84 | "@types/node@>=13.7.0": | ||
85 | version "15.12.2" | ||
86 | resolved "https://registry.yarnpkg.com/@types/node/-/node-15.12.2.tgz#1f2b42c4be7156ff4a6f914b2fb03d05fa84e38d" | ||
87 | integrity sha512-zjQ69G564OCIWIOHSXyQEEDpdpGl+G348RAKY0XXy9Z5kU9Vzv1GMNnkar/ZJ8dzXB3COzD9Mo9NtRZ4xfgUww== | ||
88 | |||
89 | abbrev@1: | ||
90 | version "1.1.1" | ||
91 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" | ||
92 | integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== | ||
93 | |||
94 | addr-to-ip-port@^1.0.1, addr-to-ip-port@^1.5.1: | ||
95 | version "1.5.1" | ||
96 | resolved "https://registry.yarnpkg.com/addr-to-ip-port/-/addr-to-ip-port-1.5.1.tgz#bfada13fd6aeeeac19f1e9f7d84b4bbab45e5208" | ||
97 | integrity sha512-bA+dyydTNuQtrEDJ0g9eR7XabNhvrM5yZY0hvTbNK3yvoeC73ZqMES6E1cEqH9WPxs4uMtMsOjfwS4FmluhsAA== | ||
98 | |||
99 | airplay-js@^0.3.0: | ||
100 | version "0.3.0" | ||
101 | resolved "https://registry.yarnpkg.com/airplay-js/-/airplay-js-0.3.0.tgz#16bac2ef91b31249382924bfdeeabaddc9db7398" | ||
102 | integrity sha1-FrrC75GzEkk4KSS/3uq63cnbc5g= | ||
103 | dependencies: | ||
104 | mdns-js "0.5.0" | ||
105 | plist-with-patches "0.5.1" | ||
106 | |||
107 | ansi-regex@^2.0.0: | ||
108 | version "2.1.1" | ||
109 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" | ||
110 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= | ||
111 | |||
112 | ansi-regex@^3.0.0: | ||
113 | version "3.0.0" | ||
114 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" | ||
115 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= | ||
116 | |||
117 | ansi-regex@^5.0.0: | 26 | ansi-regex@^5.0.0: |
118 | version "5.0.0" | 27 | version "5.0.0" |
119 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" | 28 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" |
@@ -140,221 +49,6 @@ application-config@^2.0.0: | |||
140 | load-json-file "^6.2.0" | 49 | load-json-file "^6.2.0" |
141 | write-json-file "^4.2.0" | 50 | write-json-file "^4.2.0" |
142 | 51 | ||
143 | aproba@^1.0.3: | ||
144 | version "1.2.0" | ||
145 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" | ||
146 | integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== | ||
147 | |||
148 | are-we-there-yet@~1.1.2: | ||
149 | version "1.1.5" | ||
150 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" | ||
151 | integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== | ||
152 | dependencies: | ||
153 | delegates "^1.0.0" | ||
154 | readable-stream "^2.0.6" | ||
155 | |||
156 | balanced-match@^1.0.0: | ||
157 | version "1.0.2" | ||
158 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" | ||
159 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== | ||
160 | |||
161 | base64-js@^1.3.1: | ||
162 | version "1.5.1" | ||
163 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" | ||
164 | integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== | ||
165 | |||
166 | bencode@^2.0.0, bencode@^2.0.1: | ||
167 | version "2.0.1" | ||
168 | resolved "https://registry.yarnpkg.com/bencode/-/bencode-2.0.1.tgz#667a6a31c5e038d558608333da6b7c94e836c85b" | ||
169 | integrity sha512-2uhEl8FdjSBUyb69qDTgOEeeqDTa+n3yMQzLW0cOzNf1Ow5bwcg3idf+qsWisIKRH8Bk8oC7UXL8irRcPA8ZEQ== | ||
170 | dependencies: | ||
171 | safe-buffer "^5.1.1" | ||
172 | |||
173 | bep53-range@^1.1.0: | ||
174 | version "1.1.0" | ||
175 | resolved "https://registry.yarnpkg.com/bep53-range/-/bep53-range-1.1.0.tgz#a009311710c955d27eb3a30cf329e8c139693d27" | ||
176 | integrity sha512-yGQTG4NtwTciX0Bkgk1FqQL4p+NiCQKpTSFho2lrxvUkXIlzyJDwraj8aYxAxRZMnnOhRr7QlIBoMRPEnIR34Q== | ||
177 | |||
178 | binary-search@^1.3.4: | ||
179 | version "1.3.6" | ||
180 | resolved "https://registry.yarnpkg.com/binary-search/-/binary-search-1.3.6.tgz#e32426016a0c5092f0f3598836a1c7da3560565c" | ||
181 | integrity sha512-nbE1WxOTTrUWIfsfZ4aHGYu5DOuNkbxGokjV6Z2kxfJK3uaAb8zNK1muzOeipoLHZjInT4Br88BHpzevc681xA== | ||
182 | |||
183 | bitfield@^4.0.0: | ||
184 | version "4.0.0" | ||
185 | resolved "https://registry.yarnpkg.com/bitfield/-/bitfield-4.0.0.tgz#3094123c870030dc6198a283d779639bd2a8e256" | ||
186 | integrity sha512-jtuSG9CQr5yoHFuvhgf50+DH8Aezl3C/mMSfqdG4DqP7Kqe34uBUtCEHPN9oWaldTm96/i7y5e778SnM5ES4rw== | ||
187 | |||
188 | bittorrent-dht@^10.0.0: | ||
189 | version "10.0.0" | ||
190 | resolved "https://registry.yarnpkg.com/bittorrent-dht/-/bittorrent-dht-10.0.0.tgz#01de59bb03ed86a8847cb533134925d236d7f565" | ||
191 | integrity sha512-mrM18HMabvd3n/hQa4PYe942nWvBsJCBQb5PfT9kUJLlspNPGiulZYSCgWs7+XarS7nufYrGEp07f9eKTKIrgw== | ||
192 | dependencies: | ||
193 | bencode "^2.0.0" | ||
194 | debug "^4.1.1" | ||
195 | k-bucket "^5.0.0" | ||
196 | k-rpc "^5.0.0" | ||
197 | last-one-wins "^1.0.4" | ||
198 | lru "^3.1.0" | ||
199 | randombytes "^2.0.5" | ||
200 | record-cache "^1.0.2" | ||
201 | simple-sha1 "^3.0.0" | ||
202 | |||
203 | bittorrent-lsd@^1.0.0: | ||
204 | version "1.1.0" | ||
205 | resolved "https://registry.yarnpkg.com/bittorrent-lsd/-/bittorrent-lsd-1.1.0.tgz#64f7fa5a277e0236af6c03d475065f2bb3fc6ade" | ||
206 | integrity sha512-j9F+bDt1R//+kLfeSgkmc1A3x0u70gjb/FXaRgTtw+V3wIeYjOekiIlmsXf1SNKuxU5YHDkNL8CFNHx+MfSPSw== | ||
207 | dependencies: | ||
208 | chrome-dgram "^3.0.6" | ||
209 | debug "^4.2.0" | ||
210 | |||
211 | bittorrent-peerid@^1.3.3: | ||
212 | version "1.3.3" | ||
213 | resolved "https://registry.yarnpkg.com/bittorrent-peerid/-/bittorrent-peerid-1.3.3.tgz#b8dc79e421f8136d2ffd0b163a18e9d70da09949" | ||
214 | integrity sha512-tSh9HdQgwyEAfo1jzoGEis6o/zs4CcdRTchG93XVl5jct+DCAN90M5MVUV76k2vJ9Xg3GAzLB5NLsY/vnVTh6w== | ||
215 | |||
216 | bittorrent-protocol@^3.3.1: | ||
217 | version "3.4.1" | ||
218 | resolved "https://registry.yarnpkg.com/bittorrent-protocol/-/bittorrent-protocol-3.4.1.tgz#b481d09dbf910fa7fcca5f06a7c1c4246151d4d1" | ||
219 | integrity sha512-3qBW4ZZrUZKN7HzHbX4+kbiphrTNeraMp3i9n3wobicysjibAV8SBDY+sGiBN4SgXV6WvEW4kyRPIjoSqW+khw== | ||
220 | dependencies: | ||
221 | bencode "^2.0.1" | ||
222 | bitfield "^4.0.0" | ||
223 | buffer-xor "^2.0.2" | ||
224 | debug "^4.3.1" | ||
225 | randombytes "^2.1.0" | ||
226 | rc4 "^0.1.5" | ||
227 | readable-stream "^3.6.0" | ||
228 | simple-sha1 "^3.0.0" | ||
229 | speedometer "^1.1.0" | ||
230 | unordered-array-remove "^1.0.2" | ||
231 | |||
232 | bittorrent-tracker@^9.0.0: | ||
233 | version "9.17.2" | ||
234 | resolved "https://registry.yarnpkg.com/bittorrent-tracker/-/bittorrent-tracker-9.17.2.tgz#1afb02d3d2fb474c13389c45e8a2b6919bff40bd" | ||
235 | integrity sha512-hXjed0OnB16da+ScJUZnrAZbf9gMgSLKqh5rJebtYnTRgN4o1mX0DOPH3Nf5RFCs935ibhSmZN5nwbkh+3MdEA== | ||
236 | dependencies: | ||
237 | bencode "^2.0.1" | ||
238 | bittorrent-peerid "^1.3.3" | ||
239 | bn.js "^5.2.0" | ||
240 | chrome-dgram "^3.0.6" | ||
241 | compact2string "^1.4.1" | ||
242 | debug "^4.1.1" | ||
243 | ip "^1.1.5" | ||
244 | lru "^3.1.0" | ||
245 | minimist "^1.2.5" | ||
246 | once "^1.4.0" | ||
247 | queue-microtask "^1.2.3" | ||
248 | random-iterate "^1.0.1" | ||
249 | randombytes "^2.1.0" | ||
250 | run-parallel "^1.2.0" | ||
251 | run-series "^1.1.9" | ||
252 | simple-get "^4.0.0" | ||
253 | simple-peer "^9.11.0" | ||
254 | simple-websocket "^9.1.0" | ||
255 | string2compact "^1.3.0" | ||
256 | unordered-array-remove "^1.0.2" | ||
257 | ws "^7.4.5" | ||
258 | optionalDependencies: | ||
259 | bufferutil "^4.0.3" | ||
260 | utf-8-validate "^5.0.5" | ||
261 | |||
262 | blob-to-buffer@^1.2.9: | ||
263 | version "1.2.9" | ||
264 | resolved "https://registry.yarnpkg.com/blob-to-buffer/-/blob-to-buffer-1.2.9.tgz#a17fd6c1c564011408f8971e451544245daaa84a" | ||
265 | integrity sha512-BF033y5fN6OCofD3vgHmNtwZWRcq9NLyyxyILx9hfMy1sXYy4ojFl765hJ2lP0YaN2fuxPaLO2Vzzoxy0FLFFA== | ||
266 | |||
267 | block-stream2@^2.0.0, block-stream2@^2.1.0: | ||
268 | version "2.1.0" | ||
269 | resolved "https://registry.yarnpkg.com/block-stream2/-/block-stream2-2.1.0.tgz#ac0c5ef4298b3857796e05be8ebed72196fa054b" | ||
270 | integrity sha512-suhjmLI57Ewpmq00qaygS8UgEq2ly2PCItenIyhMqVjo4t4pGzqMvfgJuX8iWTeSDdfSSqS6j38fL4ToNL7Pfg== | ||
271 | dependencies: | ||
272 | readable-stream "^3.4.0" | ||
273 | |||
274 | bn.js@^5.2.0: | ||
275 | version "5.2.0" | ||
276 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.0.tgz#358860674396c6997771a9d051fcc1b57d4ae002" | ||
277 | integrity sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw== | ||
278 | |||
279 | brace-expansion@^1.1.7: | ||
280 | version "1.1.11" | ||
281 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" | ||
282 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== | ||
283 | dependencies: | ||
284 | balanced-match "^1.0.0" | ||
285 | concat-map "0.0.1" | ||
286 | |||
287 | browserify-package-json@^1.0.0: | ||
288 | version "1.0.1" | ||
289 | resolved "https://registry.yarnpkg.com/browserify-package-json/-/browserify-package-json-1.0.1.tgz#98dde8aa5c561fd6d3fe49bbaa102b74b396fdea" | ||
290 | integrity sha1-mN3oqlxWH9bT/km7qhArdLOW/eo= | ||
291 | |||
292 | buffer-alloc-unsafe@^1.1.0: | ||
293 | version "1.1.0" | ||
294 | resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" | ||
295 | integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg== | ||
296 | |||
297 | buffer-alloc@^1.1.0: | ||
298 | version "1.2.0" | ||
299 | resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" | ||
300 | integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow== | ||
301 | dependencies: | ||
302 | buffer-alloc-unsafe "^1.1.0" | ||
303 | buffer-fill "^1.0.0" | ||
304 | |||
305 | buffer-fill@^1.0.0: | ||
306 | version "1.0.0" | ||
307 | resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" | ||
308 | integrity sha1-+PeLdniYiO858gXNY39o5wISKyw= | ||
309 | |||
310 | buffer-from@^1.0.0: | ||
311 | version "1.1.1" | ||
312 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" | ||
313 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== | ||
314 | |||
315 | buffer-indexof@^1.0.0: | ||
316 | version "1.1.1" | ||
317 | resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c" | ||
318 | integrity sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g== | ||
319 | |||
320 | buffer-xor@^2.0.2: | ||
321 | version "2.0.2" | ||
322 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-2.0.2.tgz#34f7c64f04c777a1f8aac5e661273bb9dd320289" | ||
323 | integrity sha512-eHslX0bin3GB+Lx2p7lEYRShRewuNZL3fUl4qlVJGGiwoPGftmt8JQgk2Y9Ji5/01TnVDo33E5b5O3vUB1HdqQ== | ||
324 | dependencies: | ||
325 | safe-buffer "^5.1.1" | ||
326 | |||
327 | buffer@^6.0.3: | ||
328 | version "6.0.3" | ||
329 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" | ||
330 | integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== | ||
331 | dependencies: | ||
332 | base64-js "^1.3.1" | ||
333 | ieee754 "^1.2.1" | ||
334 | |||
335 | bufferutil@^4.0.3: | ||
336 | version "4.0.3" | ||
337 | resolved "https://registry.yarnpkg.com/bufferutil/-/bufferutil-4.0.3.tgz#66724b756bed23cd7c28c4d306d7994f9943cc6b" | ||
338 | integrity sha512-yEYTwGndELGvfXsImMBLop58eaGW+YdONi1fNjTINSY98tmMmFijBG6WXgdkfuLNt4imzQNtIE+eBp1PVpMCSw== | ||
339 | dependencies: | ||
340 | node-gyp-build "^4.2.0" | ||
341 | |||
342 | castv2-client@^1.1.0: | ||
343 | version "1.2.0" | ||
344 | resolved "https://registry.yarnpkg.com/castv2-client/-/castv2-client-1.2.0.tgz#a9193b1a5448b8cb9a0415bd021c8811ed7b0544" | ||
345 | integrity sha1-qRk7GlRIuMuaBBW9AhyIEe17BUQ= | ||
346 | dependencies: | ||
347 | castv2 "~0.1.4" | ||
348 | debug "^2.2.0" | ||
349 | |||
350 | castv2@~0.1.4: | ||
351 | version "0.1.10" | ||
352 | resolved "https://registry.yarnpkg.com/castv2/-/castv2-0.1.10.tgz#d3df00124f1ba8a97691c69dd44221d3b5f93c56" | ||
353 | integrity sha512-3QWevHrjT22KdF08Y2a217IYCDQDP7vEJaY4n0lPBeC5UBYbMFMadDfVTsaQwq7wqsEgYUHElPGm3EO1ey+TNw== | ||
354 | dependencies: | ||
355 | debug "^4.1.1" | ||
356 | protobufjs "^6.8.8" | ||
357 | |||
358 | chalk@^2.0.0: | 52 | chalk@^2.0.0: |
359 | version "2.4.2" | 53 | version "2.4.2" |
360 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" | 54 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" |
@@ -364,62 +58,6 @@ chalk@^2.0.0: | |||
364 | escape-string-regexp "^1.0.5" | 58 | escape-string-regexp "^1.0.5" |
365 | supports-color "^5.3.0" | 59 | supports-color "^5.3.0" |
366 | 60 | ||
367 | charset@^1.0.1: | ||
368 | version "1.0.1" | ||
369 | resolved "https://registry.yarnpkg.com/charset/-/charset-1.0.1.tgz#8d59546c355be61049a8fa9164747793319852bd" | ||
370 | integrity sha512-6dVyOOYjpfFcL1Y4qChrAoQLRHvj2ziyhcm0QJlhOcAhykL/k1kTUPbeo+87MNRTRdk2OIIsIXbuF3x2wi5EXg== | ||
371 | |||
372 | chownr@^1.1.1: | ||
373 | version "1.1.4" | ||
374 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" | ||
375 | integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== | ||
376 | |||
377 | chrome-dgram@^3.0.2, chrome-dgram@^3.0.6: | ||
378 | version "3.0.6" | ||
379 | resolved "https://registry.yarnpkg.com/chrome-dgram/-/chrome-dgram-3.0.6.tgz#2288b5c7471f66f073691206d36319dda713cf55" | ||
380 | integrity sha512-bqBsUuaOiXiqxXt/zA/jukNJJ4oaOtc7ciwqJpZVEaaXwwxqgI2/ZdG02vXYWUhHGziDlvGMQWk0qObgJwVYKA== | ||
381 | dependencies: | ||
382 | inherits "^2.0.4" | ||
383 | run-series "^1.1.9" | ||
384 | |||
385 | chrome-dns@^1.0.0: | ||
386 | version "1.0.1" | ||
387 | resolved "https://registry.yarnpkg.com/chrome-dns/-/chrome-dns-1.0.1.tgz#6870af680a40d2c4b2efc2154a378793f5a4ce4b" | ||
388 | integrity sha512-HqsYJgIc8ljJJOqOzLphjAs79EUuWSX3nzZi2LNkzlw3GIzAeZbaSektC8iT/tKvLqZq8yl1GJu5o6doA4TRbg== | ||
389 | dependencies: | ||
390 | chrome-net "^3.3.2" | ||
391 | |||
392 | chrome-net@^3.3.2, chrome-net@^3.3.3, chrome-net@^3.3.4: | ||
393 | version "3.3.4" | ||
394 | resolved "https://registry.yarnpkg.com/chrome-net/-/chrome-net-3.3.4.tgz#0e604a31d226ebfb8d2d1c381cab47d35309825d" | ||
395 | integrity sha512-Jzy2EnzmE+ligqIZUsmWnck9RBXLuUy6CaKyuNMtowFG3ZvLt8d+WBJCTPEludV0DHpIKjAOlwjFmTaEdfdWCw== | ||
396 | dependencies: | ||
397 | inherits "^2.0.1" | ||
398 | |||
399 | chromecasts@^1.9.1: | ||
400 | version "1.10.0" | ||
401 | resolved "https://registry.yarnpkg.com/chromecasts/-/chromecasts-1.10.0.tgz#7016c9f31b99e40636b21a75976c9364e3fbabbb" | ||
402 | integrity sha512-vrOiuHxqLb0bWRBlvyL18cHU8PcbZ7iJvwDB6aHdbtdIDVWuzWWZwDyAWHu54j4JNqyaAyYBJiJ6bbHInVcqBQ== | ||
403 | dependencies: | ||
404 | castv2-client "^1.1.0" | ||
405 | debug "^2.1.3" | ||
406 | dns-txt "^2.0.2" | ||
407 | mime "^1.3.4" | ||
408 | multicast-dns "^7.2.2" | ||
409 | simple-get "^2.0.0" | ||
410 | thunky "^0.1.0" | ||
411 | xml2js "^0.4.8" | ||
412 | optionalDependencies: | ||
413 | node-ssdp "^2.2.0" | ||
414 | |||
415 | chunk-store-stream@^4.3.0: | ||
416 | version "4.3.0" | ||
417 | resolved "https://registry.yarnpkg.com/chunk-store-stream/-/chunk-store-stream-4.3.0.tgz#3de5f4dfe19729366c29bb7ed52d139f9af29f0e" | ||
418 | integrity sha512-qby+/RXoiMoTVtPiylWZt7KFF1jy6M829TzMi2hxZtBIH9ptV19wxcft6zGiXLokJgCbuZPGNGab6DWHqiSEKw== | ||
419 | dependencies: | ||
420 | block-stream2 "^2.0.0" | ||
421 | readable-stream "^3.6.0" | ||
422 | |||
423 | cli-table3@^0.6.0: | 61 | cli-table3@^0.6.0: |
424 | version "0.6.0" | 62 | version "0.6.0" |
425 | resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.0.tgz#b7b1bc65ca8e7b5cef9124e13dc2b21e2ce4faee" | 63 | resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.0.tgz#b7b1bc65ca8e7b5cef9124e13dc2b21e2ce4faee" |
@@ -430,16 +68,6 @@ cli-table3@^0.6.0: | |||
430 | optionalDependencies: | 68 | optionalDependencies: |
431 | colors "^1.1.2" | 69 | colors "^1.1.2" |
432 | 70 | ||
433 | clivas@^0.2.0: | ||
434 | version "0.2.0" | ||
435 | resolved "https://registry.yarnpkg.com/clivas/-/clivas-0.2.0.tgz#b8d19188b3243e390f302410bd0cb1622db82649" | ||
436 | integrity sha1-uNGRiLMkPjkPMCQQvQyxYi24Jkk= | ||
437 | |||
438 | code-point-at@^1.0.0: | ||
439 | version "1.1.0" | ||
440 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" | ||
441 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= | ||
442 | |||
443 | color-convert@^1.9.0: | 71 | color-convert@^1.9.0: |
444 | version "1.9.3" | 72 | version "1.9.3" |
445 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" | 73 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" |
@@ -457,67 +85,6 @@ colors@^1.1.2: | |||
457 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" | 85 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" |
458 | integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== | 86 | integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== |
459 | 87 | ||
460 | common-tags@^1.8.0: | ||
461 | version "1.8.0" | ||
462 | resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937" | ||
463 | integrity sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw== | ||
464 | |||
465 | compact2string@^1.4.1: | ||
466 | version "1.4.1" | ||
467 | resolved "https://registry.yarnpkg.com/compact2string/-/compact2string-1.4.1.tgz#8d34929055f8300a13cfc030ad1832e2e53c2e25" | ||
468 | integrity sha512-3D+EY5nsRhqnOwDxveBv5T8wGo4DEvYxjDtPGmdOX+gfr5gE92c2RC0w2wa+xEefm07QuVqqcF3nZJUZ92l/og== | ||
469 | dependencies: | ||
470 | ipaddr.js ">= 0.1.5" | ||
471 | |||
472 | concat-map@0.0.1: | ||
473 | version "0.0.1" | ||
474 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" | ||
475 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= | ||
476 | |||
477 | concat-stream@^1.4.8: | ||
478 | version "1.6.2" | ||
479 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" | ||
480 | integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== | ||
481 | dependencies: | ||
482 | buffer-from "^1.0.0" | ||
483 | inherits "^2.0.3" | ||
484 | readable-stream "^2.2.2" | ||
485 | typedarray "^0.0.6" | ||
486 | |||
487 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: | ||
488 | version "1.1.0" | ||
489 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" | ||
490 | integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= | ||
491 | |||
492 | core-util-is@~1.0.0: | ||
493 | version "1.0.2" | ||
494 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" | ||
495 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= | ||
496 | |||
497 | cpus@^1.0.3: | ||
498 | version "1.0.3" | ||
499 | resolved "https://registry.yarnpkg.com/cpus/-/cpus-1.0.3.tgz#4ef6deea461968d6329d07dd01205685df2934a2" | ||
500 | integrity sha512-PXHBvGLuL69u55IkLa5e5838fLhIMHxmkV4ge42a8alGyn7BtawYgI0hQ849EedvtHIOLNNH3i6eQU1BiE9SUA== | ||
501 | |||
502 | create-torrent@^4.4.2, create-torrent@^4.7.0: | ||
503 | version "4.7.0" | ||
504 | resolved "https://registry.yarnpkg.com/create-torrent/-/create-torrent-4.7.0.tgz#ba5d52d41e7621d0d61c895c8026d3fb22aa4333" | ||
505 | integrity sha512-Pb3XjZNKdCs0Nk46yFKb82y+a3xRQeMvGi1AlJfIV40y/iwkgBqzS5EfqdnakEOvh2jzTOx3v8QxZpkz4hPzyw== | ||
506 | dependencies: | ||
507 | bencode "^2.0.1" | ||
508 | block-stream2 "^2.1.0" | ||
509 | filestream "^5.0.0" | ||
510 | is-file "^1.0.0" | ||
511 | junk "^3.1.0" | ||
512 | minimist "^1.2.5" | ||
513 | multistream "^4.0.1" | ||
514 | once "^1.4.0" | ||
515 | piece-length "^2.0.1" | ||
516 | queue-microtask "^1.2.2" | ||
517 | readable-stream "^3.6.0" | ||
518 | run-parallel "^1.1.10" | ||
519 | simple-sha1 "^3.0.1" | ||
520 | |||
521 | cross-spawn@^6.0.0: | 88 | cross-spawn@^6.0.0: |
522 | version "6.0.5" | 89 | version "6.0.5" |
523 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" | 90 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" |
@@ -529,142 +96,23 @@ cross-spawn@^6.0.0: | |||
529 | shebang-command "^1.2.0" | 96 | shebang-command "^1.2.0" |
530 | which "^1.2.9" | 97 | which "^1.2.9" |
531 | 98 | ||
532 | debug@^2.1.0, debug@^2.1.1, debug@^2.1.3, debug@^2.2.0: | 99 | debug@^3.1.0: |
533 | version "2.6.9" | ||
534 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" | ||
535 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== | ||
536 | dependencies: | ||
537 | ms "2.0.0" | ||
538 | |||
539 | debug@^3.1.0, debug@^3.2.6: | ||
540 | version "3.2.7" | 100 | version "3.2.7" |
541 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" | 101 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" |
542 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== | 102 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== |
543 | dependencies: | 103 | dependencies: |
544 | ms "^2.1.1" | 104 | ms "^2.1.1" |
545 | 105 | ||
546 | debug@^4.0.0, debug@^4.1.1, debug@^4.2.0, debug@^4.3.1: | ||
547 | version "4.3.1" | ||
548 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" | ||
549 | integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== | ||
550 | dependencies: | ||
551 | ms "2.1.2" | ||
552 | |||
553 | decompress-response@^3.3.0: | ||
554 | version "3.3.0" | ||
555 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" | ||
556 | integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= | ||
557 | dependencies: | ||
558 | mimic-response "^1.0.0" | ||
559 | |||
560 | decompress-response@^6.0.0: | ||
561 | version "6.0.0" | ||
562 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" | ||
563 | integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== | ||
564 | dependencies: | ||
565 | mimic-response "^3.1.0" | ||
566 | |||
567 | deep-extend@^0.6.0: | ||
568 | version "0.6.0" | ||
569 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" | ||
570 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== | ||
571 | |||
572 | define-lazy-prop@^2.0.0: | ||
573 | version "2.0.0" | ||
574 | resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" | ||
575 | integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== | ||
576 | |||
577 | delegates@^1.0.0: | ||
578 | version "1.0.0" | ||
579 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" | ||
580 | integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= | ||
581 | |||
582 | detect-indent@^6.0.0: | 106 | detect-indent@^6.0.0: |
583 | version "6.1.0" | 107 | version "6.1.0" |
584 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" | 108 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" |
585 | integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== | 109 | integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== |
586 | 110 | ||
587 | detect-libc@^1.0.2: | ||
588 | version "1.0.3" | ||
589 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" | ||
590 | integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= | ||
591 | |||
592 | dlnacasts@^0.1.0: | ||
593 | version "0.1.0" | ||
594 | resolved "https://registry.yarnpkg.com/dlnacasts/-/dlnacasts-0.1.0.tgz#f805211dcac74f6bb3a4d5d5541ad783b1b67d22" | ||
595 | integrity sha1-+AUhHcrHT2uzpNXVVBrXg7G2fSI= | ||
596 | dependencies: | ||
597 | debug "^2.1.3" | ||
598 | mime "^1.3.4" | ||
599 | node-ssdp "^2.7.1" | ||
600 | run-parallel "^1.1.6" | ||
601 | simple-get "^2.1.0" | ||
602 | thunky "^0.1.0" | ||
603 | upnp-mediarenderer-client "^1.2.2" | ||
604 | xml2js "^0.4.8" | ||
605 | |||
606 | dns-packet@^5.2.2: | ||
607 | version "5.2.4" | ||
608 | resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.2.4.tgz#e004f409eadfa8ec861964dcb9eb395884fcf67d" | ||
609 | integrity sha512-vgu5Bx5IV8mXmh/9cn1lzn+J7okFlXe1vBRp+kCBJXg1nBED6Z/Q4e+QaDxQRSozMr14p/VQmdXwsf/I2wGjUA== | ||
610 | dependencies: | ||
611 | ip "^1.1.5" | ||
612 | |||
613 | dns-txt@^2.0.2: | ||
614 | version "2.0.2" | ||
615 | resolved "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz#b91d806f5d27188e4ab3e7d107d881a1cc4642b6" | ||
616 | integrity sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY= | ||
617 | dependencies: | ||
618 | buffer-indexof "^1.0.0" | ||
619 | |||
620 | domexception@^1.0.1: | ||
621 | version "1.0.1" | ||
622 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" | ||
623 | integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug== | ||
624 | dependencies: | ||
625 | webidl-conversions "^4.0.2" | ||
626 | |||
627 | ecstatic@^4.1.4: | ||
628 | version "4.1.4" | ||
629 | resolved "https://registry.yarnpkg.com/ecstatic/-/ecstatic-4.1.4.tgz#86bf340dabe56c4d0c93d406ac36c040f68e1d79" | ||
630 | integrity sha512-8E4ZLK4uRuB9pwywGpy/B9vcz4gCp6IY7u4cMbeCINr/fjb1v+0wf0Ae2XlfSnG8xZYnE4uaJBjFkYI0bqcIdw== | ||
631 | dependencies: | ||
632 | charset "^1.0.1" | ||
633 | he "^1.1.1" | ||
634 | mime "^2.4.1" | ||
635 | minimist "^1.1.0" | ||
636 | on-finished "^2.3.0" | ||
637 | url-join "^4.0.0" | ||
638 | |||
639 | ee-first@1.1.1: | ||
640 | version "1.1.1" | ||
641 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" | ||
642 | integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= | ||
643 | |||
644 | elementtree@^0.1.6, elementtree@~0.1.6: | ||
645 | version "0.1.7" | ||
646 | resolved "https://registry.yarnpkg.com/elementtree/-/elementtree-0.1.7.tgz#9ac91be6e52fb6e6244c4e54a4ac3ed8ae8e29c0" | ||
647 | integrity sha1-mskb5uUvtuYkTE5UpKw+2K6OKcA= | ||
648 | dependencies: | ||
649 | sax "1.1.4" | ||
650 | |||
651 | emoji-regex@^8.0.0: | 111 | emoji-regex@^8.0.0: |
652 | version "8.0.0" | 112 | version "8.0.0" |
653 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" | 113 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" |
654 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== | 114 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== |
655 | 115 | ||
656 | end-of-stream@^1.1.0, end-of-stream@^1.4.4: | ||
657 | version "1.4.4" | ||
658 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" | ||
659 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== | ||
660 | dependencies: | ||
661 | once "^1.4.0" | ||
662 | |||
663 | err-code@^3.0.1: | ||
664 | version "3.0.1" | ||
665 | resolved "https://registry.yarnpkg.com/err-code/-/err-code-3.0.1.tgz#a444c7b992705f2b120ee320b09972eef331c920" | ||
666 | integrity sha512-GiaH0KJUewYok+eeY05IIgjtAe4Yltygk9Wqp1V5yVWLdhf0hYZchRjNIT9bb0mSwRcIusT3cx7PJUf3zEIfUA== | ||
667 | |||
668 | error-ex@^1.3.1: | 116 | error-ex@^1.3.1: |
669 | version "1.3.2" | 117 | version "1.3.2" |
670 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" | 118 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" |
@@ -672,11 +120,6 @@ error-ex@^1.3.1: | |||
672 | dependencies: | 120 | dependencies: |
673 | is-arrayish "^0.2.1" | 121 | is-arrayish "^0.2.1" |
674 | 122 | ||
675 | escape-html@^1.0.3: | ||
676 | version "1.0.3" | ||
677 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" | ||
678 | integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= | ||
679 | |||
680 | escape-string-regexp@^1.0.5: | 123 | escape-string-regexp@^1.0.5: |
681 | version "1.0.5" | 124 | version "1.0.5" |
682 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" | 125 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" |
@@ -695,91 +138,11 @@ execa@^0.10.0: | |||
695 | signal-exit "^3.0.0" | 138 | signal-exit "^3.0.0" |
696 | strip-eof "^1.0.0" | 139 | strip-eof "^1.0.0" |
697 | 140 | ||
698 | executable@^4.1.1: | ||
699 | version "4.1.1" | ||
700 | resolved "https://registry.yarnpkg.com/executable/-/executable-4.1.1.tgz#41532bff361d3e57af4d763b70582db18f5d133c" | ||
701 | integrity sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg== | ||
702 | dependencies: | ||
703 | pify "^2.2.0" | ||
704 | |||
705 | filestream@^5.0.0: | ||
706 | version "5.0.0" | ||
707 | resolved "https://registry.yarnpkg.com/filestream/-/filestream-5.0.0.tgz#79015f3bae95ad0f47ef818694846f085087b92e" | ||
708 | integrity sha512-5H3RqSaJp12THfZiNWodYM7TiKfQvrpX+EIOrB1XvCceTys4yvfEIl8wDp+/yI8qj6Bxym8m0NYWwVXDAet/+A== | ||
709 | dependencies: | ||
710 | readable-stream "^3.4.0" | ||
711 | typedarray-to-buffer "^3.0.0" | ||
712 | |||
713 | freelist@^1.0.3: | ||
714 | version "1.0.3" | ||
715 | resolved "https://registry.yarnpkg.com/freelist/-/freelist-1.0.3.tgz#006775509f3935701784d3ed2fc9f12c9df1bab2" | ||
716 | integrity sha1-AGd1UJ85NXAXhNPtL8nxLJ3xurI= | ||
717 | |||
718 | fs-chunk-store@^2.0.3: | ||
719 | version "2.0.3" | ||
720 | resolved "https://registry.yarnpkg.com/fs-chunk-store/-/fs-chunk-store-2.0.3.tgz#21e51f1833a84a07cb5e911d058dae084030375a" | ||
721 | integrity sha512-qQi93nHX3880gtoQPt1hKQcuYBNVfCbMk8OVRDqR0cJ0riheELW25ry9yl7pII8E9gOAONTGKBD5N/zGHFSVQg== | ||
722 | dependencies: | ||
723 | queue-microtask "^1.2.2" | ||
724 | random-access-file "^2.0.1" | ||
725 | randombytes "^2.0.3" | ||
726 | rimraf "^3.0.0" | ||
727 | run-parallel "^1.1.2" | ||
728 | thunky "^1.0.1" | ||
729 | |||
730 | fs-minipass@^1.2.5: | ||
731 | version "1.2.7" | ||
732 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" | ||
733 | integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA== | ||
734 | dependencies: | ||
735 | minipass "^2.6.0" | ||
736 | |||
737 | fs.realpath@^1.0.0: | ||
738 | version "1.0.0" | ||
739 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" | ||
740 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= | ||
741 | |||
742 | gauge@~2.7.3: | ||
743 | version "2.7.4" | ||
744 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" | ||
745 | integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= | ||
746 | dependencies: | ||
747 | aproba "^1.0.3" | ||
748 | console-control-strings "^1.0.0" | ||
749 | has-unicode "^2.0.0" | ||
750 | object-assign "^4.1.0" | ||
751 | signal-exit "^3.0.0" | ||
752 | string-width "^1.0.1" | ||
753 | strip-ansi "^3.0.1" | ||
754 | wide-align "^1.1.0" | ||
755 | |||
756 | get-browser-rtc@^1.1.0: | ||
757 | version "1.1.0" | ||
758 | resolved "https://registry.yarnpkg.com/get-browser-rtc/-/get-browser-rtc-1.1.0.tgz#d1494e299b00f33fc8e9d6d3343ba4ba99711a2c" | ||
759 | integrity sha512-MghbMJ61EJrRsDe7w1Bvqt3ZsBuqhce5nrn/XAwgwOXhcsz53/ltdxOse1h/8eKXj5slzxdsz56g5rzOFSGwfQ== | ||
760 | |||
761 | get-stdin@^8.0.0: | ||
762 | version "8.0.0" | ||
763 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-8.0.0.tgz#cbad6a73feb75f6eeb22ba9e01f89aa28aa97a53" | ||
764 | integrity sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg== | ||
765 | |||
766 | get-stream@^3.0.0: | 141 | get-stream@^3.0.0: |
767 | version "3.0.0" | 142 | version "3.0.0" |
768 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" | 143 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" |
769 | integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= | 144 | integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= |
770 | 145 | ||
771 | glob@^7.1.3: | ||
772 | version "7.1.7" | ||
773 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" | ||
774 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== | ||
775 | dependencies: | ||
776 | fs.realpath "^1.0.0" | ||
777 | inflight "^1.0.4" | ||
778 | inherits "2" | ||
779 | minimatch "^3.0.4" | ||
780 | once "^1.3.0" | ||
781 | path-is-absolute "^1.0.0" | ||
782 | |||
783 | graceful-fs@^4.1.15: | 146 | graceful-fs@^4.1.15: |
784 | version "4.2.6" | 147 | version "4.2.6" |
785 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" | 148 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" |
@@ -790,132 +153,16 @@ has-flag@^3.0.0: | |||
790 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" | 153 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" |
791 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= | 154 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= |
792 | 155 | ||
793 | has-unicode@^2.0.0: | ||
794 | version "2.0.1" | ||
795 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" | ||
796 | integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= | ||
797 | |||
798 | he@^1.1.1: | ||
799 | version "1.2.0" | ||
800 | resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" | ||
801 | integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== | ||
802 | |||
803 | "http-node@github:feross/http-node#webtorrent": | ||
804 | version "1.2.0" | ||
805 | resolved "https://codeload.github.com/feross/http-node/tar.gz/342ef8624495343ffd050bd0808b3750cf0e3974" | ||
806 | dependencies: | ||
807 | chrome-net "^3.3.3" | ||
808 | freelist "^1.0.3" | ||
809 | http-parser-js "^0.4.3" | ||
810 | |||
811 | http-parser-js@^0.4.3: | ||
812 | version "0.4.13" | ||
813 | resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.4.13.tgz#3bd6d6fde6e3172c9334c3b33b6c193d80fe1137" | ||
814 | integrity sha1-O9bW/ebjFyyTNMOzO2wZPYD+ETc= | ||
815 | |||
816 | iconv-lite@^0.4.4: | ||
817 | version "0.4.24" | ||
818 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" | ||
819 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== | ||
820 | dependencies: | ||
821 | safer-buffer ">= 2.1.2 < 3" | ||
822 | |||
823 | ieee754@^1.2.1: | ||
824 | version "1.2.1" | ||
825 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" | ||
826 | integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== | ||
827 | |||
828 | ignore-walk@^3.0.1: | ||
829 | version "3.0.4" | ||
830 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.4.tgz#c9a09f69b7c7b479a5d74ac1a3c0d4236d2a6335" | ||
831 | integrity sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ== | ||
832 | dependencies: | ||
833 | minimatch "^3.0.4" | ||
834 | |||
835 | immediate-chunk-store@^2.2.0: | ||
836 | version "2.2.0" | ||
837 | resolved "https://registry.yarnpkg.com/immediate-chunk-store/-/immediate-chunk-store-2.2.0.tgz#f56d30ecc7171f6cfcf632b0eb8395a89f92c03c" | ||
838 | integrity sha512-1bHBna0hCa6arRXicu91IiL9RvvkbNYLVq+mzWdaLGZC3hXvX4doh8e1dLhMKez5siu63CYgO5NrGJbRX5lbPA== | ||
839 | dependencies: | ||
840 | queue-microtask "^1.2.3" | ||
841 | |||
842 | imurmurhash@^0.1.4: | 156 | imurmurhash@^0.1.4: |
843 | version "0.1.4" | 157 | version "0.1.4" |
844 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" | 158 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" |
845 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= | 159 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= |
846 | 160 | ||
847 | inflight@^1.0.4: | ||
848 | version "1.0.6" | ||
849 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" | ||
850 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= | ||
851 | dependencies: | ||
852 | once "^1.3.0" | ||
853 | wrappy "1" | ||
854 | |||
855 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: | ||
856 | version "2.0.4" | ||
857 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" | ||
858 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== | ||
859 | |||
860 | ini@~1.3.0: | ||
861 | version "1.3.8" | ||
862 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" | ||
863 | integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== | ||
864 | |||
865 | ip-set@^2.1.0: | ||
866 | version "2.1.0" | ||
867 | resolved "https://registry.yarnpkg.com/ip-set/-/ip-set-2.1.0.tgz#9a47b9f5d220c38bc7fe5db8efc4baa45b0a0a35" | ||
868 | integrity sha512-JdHz4tSMx1IeFj8yEcQU0i58qiSkOlmZXkZ8+HJ0ROV5KcgLRDO9F703oJ1GeZCvqggrcCbmagD/V7hghY62wA== | ||
869 | dependencies: | ||
870 | ip "^1.1.5" | ||
871 | |||
872 | ip@^1.0.1, ip@^1.1.5: | ||
873 | version "1.1.5" | ||
874 | resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" | ||
875 | integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= | ||
876 | |||
877 | "ipaddr.js@>= 0.1.5": | ||
878 | version "2.0.1" | ||
879 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.0.1.tgz#eca256a7a877e917aeb368b0a7497ddf42ef81c0" | ||
880 | integrity sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng== | ||
881 | |||
882 | ipaddr.js@^1.0.1: | ||
883 | version "1.9.1" | ||
884 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" | ||
885 | integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== | ||
886 | |||
887 | is-arrayish@^0.2.1: | 161 | is-arrayish@^0.2.1: |
888 | version "0.2.1" | 162 | version "0.2.1" |
889 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" | 163 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" |
890 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= | 164 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= |
891 | 165 | ||
892 | is-ascii@^1.0.0: | ||
893 | version "1.0.0" | ||
894 | resolved "https://registry.yarnpkg.com/is-ascii/-/is-ascii-1.0.0.tgz#f02ad0259a0921cd199ff21ce1b09e0f6b4e3929" | ||
895 | integrity sha1-8CrQJZoJIc0Zn/Ic4bCeD2tOOSk= | ||
896 | |||
897 | is-docker@^2.0.0, is-docker@^2.1.1: | ||
898 | version "2.2.1" | ||
899 | resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" | ||
900 | integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== | ||
901 | |||
902 | is-file@^1.0.0: | ||
903 | version "1.0.0" | ||
904 | resolved "https://registry.yarnpkg.com/is-file/-/is-file-1.0.0.tgz#28a44cfbd9d3db193045f22b65fce8edf9620596" | ||
905 | integrity sha1-KKRM+9nT2xkwRfIrZfzo7fliBZY= | ||
906 | |||
907 | is-fullwidth-code-point@^1.0.0: | ||
908 | version "1.0.0" | ||
909 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" | ||
910 | integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= | ||
911 | dependencies: | ||
912 | number-is-nan "^1.0.0" | ||
913 | |||
914 | is-fullwidth-code-point@^2.0.0: | ||
915 | version "2.0.0" | ||
916 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" | ||
917 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= | ||
918 | |||
919 | is-fullwidth-code-point@^3.0.0: | 166 | is-fullwidth-code-point@^3.0.0: |
920 | version "3.0.0" | 167 | version "3.0.0" |
921 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" | 168 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" |
@@ -936,18 +183,6 @@ is-typedarray@^1.0.0: | |||
936 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" | 183 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" |
937 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= | 184 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= |
938 | 185 | ||
939 | is-wsl@^2.2.0: | ||
940 | version "2.2.0" | ||
941 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" | ||
942 | integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== | ||
943 | dependencies: | ||
944 | is-docker "^2.0.0" | ||
945 | |||
946 | isarray@~1.0.0: | ||
947 | version "1.0.0" | ||
948 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" | ||
949 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= | ||
950 | |||
951 | isexe@^2.0.0: | 186 | isexe@^2.0.0: |
952 | version "2.0.0" | 187 | version "2.0.0" |
953 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" | 188 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" |
@@ -963,58 +198,11 @@ json-parse-even-better-errors@^2.3.0: | |||
963 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" | 198 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" |
964 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== | 199 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== |
965 | 200 | ||
966 | junk@^3.1.0: | ||
967 | version "3.1.0" | ||
968 | resolved "https://registry.yarnpkg.com/junk/-/junk-3.1.0.tgz#31499098d902b7e98c5d9b9c80f43457a88abfa1" | ||
969 | integrity sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ== | ||
970 | |||
971 | k-bucket@^5.0.0: | ||
972 | version "5.1.0" | ||
973 | resolved "https://registry.yarnpkg.com/k-bucket/-/k-bucket-5.1.0.tgz#db2c9e72bd168b432e3f3e8fc092e2ccb61bff89" | ||
974 | integrity sha512-Fac7iINEovXIWU20GPnOMLUbjctiS+cnmyjC4zAUgvs3XPf1vo9akfCHkigftSic/jiKqKl+KA3a/vFcJbHyCg== | ||
975 | dependencies: | ||
976 | randombytes "^2.1.0" | ||
977 | |||
978 | k-rpc-socket@^1.7.2: | ||
979 | version "1.11.1" | ||
980 | resolved "https://registry.yarnpkg.com/k-rpc-socket/-/k-rpc-socket-1.11.1.tgz#f14b4b240a716c6cad7b6434b21716dbd7c7b0e8" | ||
981 | integrity sha512-8xtA8oqbZ6v1Niryp2/g4GxW16EQh5MvrUylQoOG+zcrDff5CKttON2XUXvMwlIHq4/2zfPVFiinAccJ+WhxoA== | ||
982 | dependencies: | ||
983 | bencode "^2.0.0" | ||
984 | chrome-dgram "^3.0.2" | ||
985 | chrome-dns "^1.0.0" | ||
986 | chrome-net "^3.3.2" | ||
987 | |||
988 | k-rpc@^5.0.0: | ||
989 | version "5.1.0" | ||
990 | resolved "https://registry.yarnpkg.com/k-rpc/-/k-rpc-5.1.0.tgz#af2052de2e84994d55da3032175da5dad8640174" | ||
991 | integrity sha512-FGc+n70Hcjoa/X2JTwP+jMIOpBz+pkRffHnSl9yrYiwUxg3FIgD50+u1ePfJUOnRCnx6pbjmVk5aAeB1wIijuQ== | ||
992 | dependencies: | ||
993 | k-bucket "^5.0.0" | ||
994 | k-rpc-socket "^1.7.2" | ||
995 | randombytes "^2.0.5" | ||
996 | |||
997 | last-one-wins@^1.0.4: | ||
998 | version "1.0.4" | ||
999 | resolved "https://registry.yarnpkg.com/last-one-wins/-/last-one-wins-1.0.4.tgz#c1bfd0cbcb46790ec9156b8d1aee8fcb86cda22a" | ||
1000 | integrity sha1-wb/Qy8tGeQ7JFWuNGu6Py4bNoio= | ||
1001 | |||
1002 | lines-and-columns@^1.1.6: | 201 | lines-and-columns@^1.1.6: |
1003 | version "1.1.6" | 202 | version "1.1.6" |
1004 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" | 203 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" |
1005 | integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= | 204 | integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= |
1006 | 205 | ||
1007 | load-ip-set@^2.2.1: | ||
1008 | version "2.2.1" | ||
1009 | resolved "https://registry.yarnpkg.com/load-ip-set/-/load-ip-set-2.2.1.tgz#9496ab8aa14ebf81aeb7c8bb38e7abdf50af3563" | ||
1010 | integrity sha512-G3hQXehU2LTOp52e+lPffpK4EvidfjwbvHaGqmFcp4ptiZagR4xFdL+D08kMX906dxeqZyWhfonEjdUxrWcldg== | ||
1011 | dependencies: | ||
1012 | ip-set "^2.1.0" | ||
1013 | netmask "^2.0.1" | ||
1014 | once "^1.4.0" | ||
1015 | simple-get "^4.0.0" | ||
1016 | split "^1.0.1" | ||
1017 | |||
1018 | load-json-file@^6.2.0: | 206 | load-json-file@^6.2.0: |
1019 | version "6.2.0" | 207 | version "6.2.0" |
1020 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-6.2.0.tgz#5c7770b42cafa97074ca2848707c61662f4251a1" | 208 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-6.2.0.tgz#5c7770b42cafa97074ca2848707c61662f4251a1" |
@@ -1025,34 +213,6 @@ load-json-file@^6.2.0: | |||
1025 | strip-bom "^4.0.0" | 213 | strip-bom "^4.0.0" |
1026 | type-fest "^0.6.0" | 214 | type-fest "^0.6.0" |
1027 | 215 | ||
1028 | long@^4.0.0: | ||
1029 | version "4.0.0" | ||
1030 | resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" | ||
1031 | integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== | ||
1032 | |||
1033 | lru@^3.1.0: | ||
1034 | version "3.1.0" | ||
1035 | resolved "https://registry.yarnpkg.com/lru/-/lru-3.1.0.tgz#ea7fb8546d83733396a13091d76cfeb4c06837d5" | ||
1036 | integrity sha1-6n+4VG2DczOWoTCR12z+tMBoN9U= | ||
1037 | dependencies: | ||
1038 | inherits "^2.0.1" | ||
1039 | |||
1040 | lt_donthave@^1.0.1: | ||
1041 | version "1.0.1" | ||
1042 | resolved "https://registry.yarnpkg.com/lt_donthave/-/lt_donthave-1.0.1.tgz#a160e08bdf15b9e092172063688855a6c031d8b3" | ||
1043 | integrity sha512-PfOXfDN9GnUjlNHjjxKQuMxPC8s12iSrnmg+Ff1BU1uLn7S1BFAKzpZCu6Gwg3WsCUvTZrZoDSHvy6B/j+N4/Q== | ||
1044 | dependencies: | ||
1045 | debug "^4.2.0" | ||
1046 | unordered-array-remove "^1.0.2" | ||
1047 | |||
1048 | magnet-uri@^6.0.0: | ||
1049 | version "6.2.0" | ||
1050 | resolved "https://registry.yarnpkg.com/magnet-uri/-/magnet-uri-6.2.0.tgz#10f7be050bf23452df210838239b118463c3eeff" | ||
1051 | integrity sha512-O9AgdDwT771fnUj0giPYu/rACpz8173y8UXCSOdLITjOVfBenZ9H9q3FqQmveK+ORUMuD+BkKNSZP8C3+IMAKQ== | ||
1052 | dependencies: | ||
1053 | bep53-range "^1.1.0" | ||
1054 | thirty-two "^1.0.2" | ||
1055 | |||
1056 | make-dir@^3.0.0: | 216 | make-dir@^3.0.0: |
1057 | version "3.1.0" | 217 | version "3.1.0" |
1058 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" | 218 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" |
@@ -1060,170 +220,11 @@ make-dir@^3.0.0: | |||
1060 | dependencies: | 220 | dependencies: |
1061 | semver "^6.0.0" | 221 | semver "^6.0.0" |
1062 | 222 | ||
1063 | mdns-js-packet@~0.2.0: | ||
1064 | version "0.2.0" | ||
1065 | resolved "https://registry.yarnpkg.com/mdns-js-packet/-/mdns-js-packet-0.2.0.tgz#642409e8183c7561cc60615bbd1420ec2fad7616" | ||
1066 | integrity sha1-ZCQJ6Bg8dWHMYGFbvRQg7C+tdhY= | ||
1067 | dependencies: | ||
1068 | debug "^2.1.0" | ||
1069 | qap "^3.1.2" | ||
1070 | |||
1071 | mdns-js@0.5.0: | ||
1072 | version "0.5.0" | ||
1073 | resolved "https://registry.yarnpkg.com/mdns-js/-/mdns-js-0.5.0.tgz#4c8abb6ba7cabdc892d39228c3faa2556e09cf87" | ||
1074 | integrity sha1-TIq7a6fKvciS05Iow/qiVW4Jz4c= | ||
1075 | dependencies: | ||
1076 | debug "^2.1.1" | ||
1077 | mdns-js-packet "~0.2.0" | ||
1078 | semver "~5.1.0" | ||
1079 | |||
1080 | mediasource@^2.2.2, mediasource@^2.4.0: | ||
1081 | version "2.4.0" | ||
1082 | resolved "https://registry.yarnpkg.com/mediasource/-/mediasource-2.4.0.tgz#7b03378054c41400374e9bade50aa0d7a758c39b" | ||
1083 | integrity sha512-SKUMrbFMHgiCUZFOWZcL0aiF/KgHx9SPIKzxrl6+7nMUMDK/ZnOmJdY/9wKzYeM0g3mybt3ueg+W+/mrYfmeFQ== | ||
1084 | dependencies: | ||
1085 | inherits "^2.0.4" | ||
1086 | readable-stream "^3.6.0" | ||
1087 | to-arraybuffer "^1.0.1" | ||
1088 | |||
1089 | memory-chunk-store@^1.3.5: | ||
1090 | version "1.3.5" | ||
1091 | resolved "https://registry.yarnpkg.com/memory-chunk-store/-/memory-chunk-store-1.3.5.tgz#700f712415895600bc5466007333efa19f1de07c" | ||
1092 | integrity sha512-E1Xc1U4ifk/FkC2ZsWhCaW1xg9HbE/OBmQTLe2Tr9c27YPSLbW7kw1cnb3kQWD1rDtErFJHa7mB9EVrs7aTx9g== | ||
1093 | dependencies: | ||
1094 | queue-microtask "^1.2.3" | ||
1095 | |||
1096 | mime@^1.3.4: | ||
1097 | version "1.6.0" | ||
1098 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" | ||
1099 | integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== | ||
1100 | |||
1101 | mime@^2.4.1, mime@^2.4.6, mime@^2.5.2: | ||
1102 | version "2.5.2" | ||
1103 | resolved "https://registry.yarnpkg.com/mime/-/mime-2.5.2.tgz#6e3dc6cc2b9510643830e5f19d5cb753da5eeabe" | ||
1104 | integrity sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg== | ||
1105 | |||
1106 | mimic-response@^1.0.0: | ||
1107 | version "1.0.1" | ||
1108 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" | ||
1109 | integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== | ||
1110 | |||
1111 | mimic-response@^3.1.0: | ||
1112 | version "3.1.0" | ||
1113 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" | ||
1114 | integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== | ||
1115 | |||
1116 | minimatch@^3.0.4: | ||
1117 | version "3.0.4" | ||
1118 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" | ||
1119 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== | ||
1120 | dependencies: | ||
1121 | brace-expansion "^1.1.7" | ||
1122 | |||
1123 | minimist@^1.1.0, minimist@^1.2.0, minimist@^1.2.5: | ||
1124 | version "1.2.5" | ||
1125 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" | ||
1126 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== | ||
1127 | |||
1128 | minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0: | ||
1129 | version "2.9.0" | ||
1130 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6" | ||
1131 | integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg== | ||
1132 | dependencies: | ||
1133 | safe-buffer "^5.1.2" | ||
1134 | yallist "^3.0.0" | ||
1135 | |||
1136 | minizlib@^1.2.1: | ||
1137 | version "1.3.3" | ||
1138 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" | ||
1139 | integrity sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q== | ||
1140 | dependencies: | ||
1141 | minipass "^2.9.0" | ||
1142 | |||
1143 | mkdirp-classic@^0.5.2: | ||
1144 | version "0.5.3" | ||
1145 | resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" | ||
1146 | integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== | ||
1147 | |||
1148 | mkdirp@^0.5.0, mkdirp@^0.5.1: | ||
1149 | version "0.5.5" | ||
1150 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" | ||
1151 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== | ||
1152 | dependencies: | ||
1153 | minimist "^1.2.5" | ||
1154 | |||
1155 | moment@^2.27.0: | ||
1156 | version "2.29.1" | ||
1157 | resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3" | ||
1158 | integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ== | ||
1159 | |||
1160 | mp4-box-encoding@^1.3.0: | ||
1161 | version "1.4.1" | ||
1162 | resolved "https://registry.yarnpkg.com/mp4-box-encoding/-/mp4-box-encoding-1.4.1.tgz#19b31804c896bc1adf1c21b497bcf951aa3b9098" | ||
1163 | integrity sha512-2/PRtGGiqPc/VEhbm7xAQ+gbb7yzHjjMAv6MpAifr5pCpbh3fQUdj93uNgwPiTppAGu8HFKe3PeU+OdRyAxStA== | ||
1164 | dependencies: | ||
1165 | uint64be "^2.0.2" | ||
1166 | |||
1167 | mp4-stream@^3.0.0: | ||
1168 | version "3.1.3" | ||
1169 | resolved "https://registry.yarnpkg.com/mp4-stream/-/mp4-stream-3.1.3.tgz#79b8a19900337203a9bd607a02eccc64419a379c" | ||
1170 | integrity sha512-DUT8f0x2jHbZjNMdqe9h6lZdt6RENWTTdGn8z3TXa4uEsoltuNY9lCCij84mdm0q7xcV0E2W25WRxlKBMo4hSw== | ||
1171 | dependencies: | ||
1172 | mp4-box-encoding "^1.3.0" | ||
1173 | next-event "^1.0.0" | ||
1174 | queue-microtask "^1.2.2" | ||
1175 | readable-stream "^3.0.6" | ||
1176 | |||
1177 | ms@2.0.0: | ||
1178 | version "2.0.0" | ||
1179 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" | ||
1180 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= | ||
1181 | |||
1182 | ms@2.1.2: | ||
1183 | version "2.1.2" | ||
1184 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" | ||
1185 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== | ||
1186 | |||
1187 | ms@^2.1.1: | 223 | ms@^2.1.1: |
1188 | version "2.1.3" | 224 | version "2.1.3" |
1189 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" | 225 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" |
1190 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== | 226 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== |
1191 | 227 | ||
1192 | multicast-dns@^7.2.2: | ||
1193 | version "7.2.3" | ||
1194 | resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-7.2.3.tgz#cbd07571dda41807b36f71067681f19e85ccc2cd" | ||
1195 | integrity sha512-TzxgGSLRLB7tqAlzjgd2x2ZE0cDsGFq4rs9W4yE5xp+7hlRXeUQGtXZsTGfGw2FwWB45rfe8DtXMYBpZGMLUng== | ||
1196 | dependencies: | ||
1197 | dns-packet "^5.2.2" | ||
1198 | thunky "^1.0.2" | ||
1199 | |||
1200 | multistream@^4.0.1, multistream@^4.1.0: | ||
1201 | version "4.1.0" | ||
1202 | resolved "https://registry.yarnpkg.com/multistream/-/multistream-4.1.0.tgz#7bf00dfd119556fbc153cff3de4c6d477909f5a8" | ||
1203 | integrity sha512-J1XDiAmmNpRCBfIWJv+n0ymC4ABcf/Pl+5YvC5B/D2f/2+8PtHvCNxMPKiQcZyi922Hq69J2YOpb1pTywfifyw== | ||
1204 | dependencies: | ||
1205 | once "^1.4.0" | ||
1206 | readable-stream "^3.6.0" | ||
1207 | |||
1208 | napi-macros@^2.0.0: | ||
1209 | version "2.0.0" | ||
1210 | resolved "https://registry.yarnpkg.com/napi-macros/-/napi-macros-2.0.0.tgz#2b6bae421e7b96eb687aa6c77a7858640670001b" | ||
1211 | integrity sha512-A0xLykHtARfueITVDernsAWdtIMbOJgKgcluwENp3AlsKN/PloyO10HtmoqnFAQAcxPkgZN7wdfPfEd0zNGxbg== | ||
1212 | |||
1213 | needle@^2.2.1: | ||
1214 | version "2.6.0" | ||
1215 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.6.0.tgz#24dbb55f2509e2324b4a99d61f413982013ccdbe" | ||
1216 | integrity sha512-KKYdza4heMsEfSWD7VPUIz3zX2XDwOyX2d+geb4vrERZMT5RMU6ujjaD+I5Yr54uZxQ2w6XRTAhHBbSCyovZBg== | ||
1217 | dependencies: | ||
1218 | debug "^3.2.6" | ||
1219 | iconv-lite "^0.4.4" | ||
1220 | sax "^1.2.4" | ||
1221 | |||
1222 | netmask@^2.0.1: | ||
1223 | version "2.0.2" | ||
1224 | resolved "https://registry.yarnpkg.com/netmask/-/netmask-2.0.2.tgz#8b01a07644065d536383835823bc52004ebac5e7" | ||
1225 | integrity sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg== | ||
1226 | |||
1227 | netrc-parser@^3.1.6: | 228 | netrc-parser@^3.1.6: |
1228 | version "3.1.6" | 229 | version "3.1.6" |
1229 | resolved "https://registry.yarnpkg.com/netrc-parser/-/netrc-parser-3.1.6.tgz#7243c9ec850b8e805b9bdc7eae7b1450d4a96e72" | 230 | resolved "https://registry.yarnpkg.com/netrc-parser/-/netrc-parser-3.1.6.tgz#7243c9ec850b8e805b9bdc7eae7b1450d4a96e72" |
@@ -1232,86 +233,11 @@ netrc-parser@^3.1.6: | |||
1232 | debug "^3.1.0" | 233 | debug "^3.1.0" |
1233 | execa "^0.10.0" | 234 | execa "^0.10.0" |
1234 | 235 | ||
1235 | network-address@^1.0.0, network-address@^1.1.2: | ||
1236 | version "1.1.2" | ||
1237 | resolved "https://registry.yarnpkg.com/network-address/-/network-address-1.1.2.tgz#4aa7bfd43f03f0b81c9702b13d6a858ddb326f3e" | ||
1238 | integrity sha1-Sqe/1D8D8LgclwKxPWqFjdsybz4= | ||
1239 | |||
1240 | next-event@^1.0.0: | ||
1241 | version "1.0.0" | ||
1242 | resolved "https://registry.yarnpkg.com/next-event/-/next-event-1.0.0.tgz#e7778acde2e55802e0ad1879c39cf6f75eda61d8" | ||
1243 | integrity sha1-53eKzeLlWALgrRh5w5z2917aYdg= | ||
1244 | |||
1245 | nice-try@^1.0.4: | 236 | nice-try@^1.0.4: |
1246 | version "1.0.5" | 237 | version "1.0.5" |
1247 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" | 238 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" |
1248 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== | 239 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== |
1249 | 240 | ||
1250 | node-gyp-build@^4.2.0: | ||
1251 | version "4.2.3" | ||
1252 | resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.2.3.tgz#ce6277f853835f718829efb47db20f3e4d9c4739" | ||
1253 | integrity sha512-MN6ZpzmfNCRM+3t57PTJHgHyw/h4OWnZ6mR8P5j/uZtqQr46RRuDE/P+g3n0YR/AiYXeWixZZzaip77gdICfRg== | ||
1254 | |||
1255 | node-pre-gyp@^0.13.0: | ||
1256 | version "0.13.0" | ||
1257 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.13.0.tgz#df9ab7b68dd6498137717838e4f92a33fc9daa42" | ||
1258 | integrity sha512-Md1D3xnEne8b/HGVQkZZwV27WUi1ZRuZBij24TNaZwUPU3ZAFtvT6xxJGaUVillfmMKnn5oD1HoGsp2Ftik7SQ== | ||
1259 | dependencies: | ||
1260 | detect-libc "^1.0.2" | ||
1261 | mkdirp "^0.5.1" | ||
1262 | needle "^2.2.1" | ||
1263 | nopt "^4.0.1" | ||
1264 | npm-packlist "^1.1.6" | ||
1265 | npmlog "^4.0.2" | ||
1266 | rc "^1.2.7" | ||
1267 | rimraf "^2.6.1" | ||
1268 | semver "^5.3.0" | ||
1269 | tar "^4" | ||
1270 | |||
1271 | node-ssdp@^2.2.0, node-ssdp@^2.7.1: | ||
1272 | version "2.9.1" | ||
1273 | resolved "https://registry.yarnpkg.com/node-ssdp/-/node-ssdp-2.9.1.tgz#2d6ba8e7eff9bf5b338564f91f7ac5d5cdddc55b" | ||
1274 | integrity sha1-LWuo5+/5v1szhWT5H3rF1c3dxVs= | ||
1275 | dependencies: | ||
1276 | debug "^2.2.0" | ||
1277 | ip "^1.0.1" | ||
1278 | |||
1279 | nodebmc@0.0.7: | ||
1280 | version "0.0.7" | ||
1281 | resolved "https://registry.yarnpkg.com/nodebmc/-/nodebmc-0.0.7.tgz#fae179165265509302cefbebeabd29bd4035184d" | ||
1282 | integrity sha1-+uF5FlJlUJMCzvvr6r0pvUA1GE0= | ||
1283 | dependencies: | ||
1284 | mdns-js "0.5.0" | ||
1285 | |||
1286 | nopt@^4.0.1: | ||
1287 | version "4.0.3" | ||
1288 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48" | ||
1289 | integrity sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg== | ||
1290 | dependencies: | ||
1291 | abbrev "1" | ||
1292 | osenv "^0.1.4" | ||
1293 | |||
1294 | npm-bundled@^1.0.1: | ||
1295 | version "1.1.2" | ||
1296 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.2.tgz#944c78789bd739035b70baa2ca5cc32b8d860bc1" | ||
1297 | integrity sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ== | ||
1298 | dependencies: | ||
1299 | npm-normalize-package-bin "^1.0.1" | ||
1300 | |||
1301 | npm-normalize-package-bin@^1.0.1: | ||
1302 | version "1.0.1" | ||
1303 | resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" | ||
1304 | integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== | ||
1305 | |||
1306 | npm-packlist@^1.1.6: | ||
1307 | version "1.4.8" | ||
1308 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.8.tgz#56ee6cc135b9f98ad3d51c1c95da22bbb9b2ef3e" | ||
1309 | integrity sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A== | ||
1310 | dependencies: | ||
1311 | ignore-walk "^3.0.1" | ||
1312 | npm-bundled "^1.0.1" | ||
1313 | npm-normalize-package-bin "^1.0.1" | ||
1314 | |||
1315 | npm-run-path@^2.0.0: | 241 | npm-run-path@^2.0.0: |
1316 | version "2.0.2" | 242 | version "2.0.2" |
1317 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" | 243 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" |
@@ -1319,79 +245,16 @@ npm-run-path@^2.0.0: | |||
1319 | dependencies: | 245 | dependencies: |
1320 | path-key "^2.0.0" | 246 | path-key "^2.0.0" |
1321 | 247 | ||
1322 | npmlog@^4.0.2: | ||
1323 | version "4.1.2" | ||
1324 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" | ||
1325 | integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== | ||
1326 | dependencies: | ||
1327 | are-we-there-yet "~1.1.2" | ||
1328 | console-control-strings "~1.1.0" | ||
1329 | gauge "~2.7.3" | ||
1330 | set-blocking "~2.0.0" | ||
1331 | |||
1332 | number-is-nan@^1.0.0: | ||
1333 | version "1.0.1" | ||
1334 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" | ||
1335 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= | ||
1336 | |||
1337 | object-assign@^4.1.0: | 248 | object-assign@^4.1.0: |
1338 | version "4.1.1" | 249 | version "4.1.1" |
1339 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" | 250 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" |
1340 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= | 251 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= |
1341 | 252 | ||
1342 | on-finished@^2.3.0: | ||
1343 | version "2.3.0" | ||
1344 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" | ||
1345 | integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= | ||
1346 | dependencies: | ||
1347 | ee-first "1.1.1" | ||
1348 | |||
1349 | once@^1.3.0, once@^1.3.1, once@^1.4.0: | ||
1350 | version "1.4.0" | ||
1351 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" | ||
1352 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= | ||
1353 | dependencies: | ||
1354 | wrappy "1" | ||
1355 | |||
1356 | open@^8.0.0: | ||
1357 | version "8.2.0" | ||
1358 | resolved "https://registry.yarnpkg.com/open/-/open-8.2.0.tgz#d6a4788b00009a9d60df471ecb89842a15fdcfc1" | ||
1359 | integrity sha512-O8uInONB4asyY3qUcEytpgwxQG3O0fJ/hlssoUHsBboOIRVZzT6Wq+Rwj5nffbeUhOdMjpXeISpDDzHCMRDuOQ== | ||
1360 | dependencies: | ||
1361 | define-lazy-prop "^2.0.0" | ||
1362 | is-docker "^2.1.1" | ||
1363 | is-wsl "^2.2.0" | ||
1364 | |||
1365 | os-homedir@^1.0.0: | ||
1366 | version "1.0.2" | ||
1367 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" | ||
1368 | integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= | ||
1369 | |||
1370 | os-tmpdir@^1.0.0: | ||
1371 | version "1.0.2" | ||
1372 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" | ||
1373 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= | ||
1374 | |||
1375 | osenv@^0.1.4: | ||
1376 | version "0.1.5" | ||
1377 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" | ||
1378 | integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== | ||
1379 | dependencies: | ||
1380 | os-homedir "^1.0.0" | ||
1381 | os-tmpdir "^1.0.0" | ||
1382 | |||
1383 | p-finally@^1.0.0: | 253 | p-finally@^1.0.0: |
1384 | version "1.0.0" | 254 | version "1.0.0" |
1385 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" | 255 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" |
1386 | integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= | 256 | integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= |
1387 | 257 | ||
1388 | package-json-versionify@^1.0.4: | ||
1389 | version "1.0.4" | ||
1390 | resolved "https://registry.yarnpkg.com/package-json-versionify/-/package-json-versionify-1.0.4.tgz#5860587a944873a6b7e6d26e8e51ffb22315bf17" | ||
1391 | integrity sha1-WGBYepRIc6a35tJujlH/siMVvxc= | ||
1392 | dependencies: | ||
1393 | browserify-package-json "^1.0.0" | ||
1394 | |||
1395 | parse-json@^5.0.0: | 258 | parse-json@^5.0.0: |
1396 | version "5.2.0" | 259 | version "5.2.0" |
1397 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" | 260 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" |
@@ -1402,250 +265,12 @@ parse-json@^5.0.0: | |||
1402 | json-parse-even-better-errors "^2.3.0" | 265 | json-parse-even-better-errors "^2.3.0" |
1403 | lines-and-columns "^1.1.6" | 266 | lines-and-columns "^1.1.6" |
1404 | 267 | ||
1405 | parse-torrent@^9.0.0, parse-torrent@^9.1.3: | ||
1406 | version "9.1.3" | ||
1407 | resolved "https://registry.yarnpkg.com/parse-torrent/-/parse-torrent-9.1.3.tgz#9b4bc8dca243b356bf449938d6d38a259a2a707c" | ||
1408 | integrity sha512-/Yr951CvJM8S6TjMaqrsmMxeQEAjDeCX+MZ3hGXXc7DG2wqzp/rzOsHtDzIVqN6NsFRCqy6wYLF/W7Sgvq7bXw== | ||
1409 | dependencies: | ||
1410 | bencode "^2.0.1" | ||
1411 | blob-to-buffer "^1.2.9" | ||
1412 | get-stdin "^8.0.0" | ||
1413 | magnet-uri "^6.0.0" | ||
1414 | queue-microtask "^1.2.2" | ||
1415 | simple-get "^4.0.0" | ||
1416 | simple-sha1 "^3.0.1" | ||
1417 | |||
1418 | path-is-absolute@^1.0.0: | ||
1419 | version "1.0.1" | ||
1420 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" | ||
1421 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= | ||
1422 | |||
1423 | path-key@^2.0.0, path-key@^2.0.1: | 268 | path-key@^2.0.0, path-key@^2.0.1: |
1424 | version "2.0.1" | 269 | version "2.0.1" |
1425 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" | 270 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" |
1426 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= | 271 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= |
1427 | 272 | ||
1428 | piece-length@^2.0.1: | 273 | semver@^5.5.0: |
1429 | version "2.0.1" | ||
1430 | resolved "https://registry.yarnpkg.com/piece-length/-/piece-length-2.0.1.tgz#dbed4e78976955f34466d0a65304d0cb21914ac9" | ||
1431 | integrity sha512-dBILiDmm43y0JPISWEmVGKBETQjwJe6mSU9GND+P9KW0SJGUwoU/odyH1nbalOP9i8WSYuqf1lQnaj92Bhw+Ug== | ||
1432 | |||
1433 | pify@^2.2.0: | ||
1434 | version "2.3.0" | ||
1435 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" | ||
1436 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= | ||
1437 | |||
1438 | plist-with-patches@0.5.1: | ||
1439 | version "0.5.1" | ||
1440 | resolved "https://registry.yarnpkg.com/plist-with-patches/-/plist-with-patches-0.5.1.tgz#868aae2e0df8989b026562b35cbc19cfd8bb780d" | ||
1441 | integrity sha1-hoquLg34mJsCZWKzXLwZz9i7eA0= | ||
1442 | dependencies: | ||
1443 | xmlbuilder "0.4.x" | ||
1444 | xmldom "0.1.x" | ||
1445 | |||
1446 | prettier-bytes@^1.0.4: | ||
1447 | version "1.0.4" | ||
1448 | resolved "https://registry.yarnpkg.com/prettier-bytes/-/prettier-bytes-1.0.4.tgz#994b02aa46f699c50b6257b5faaa7fe2557e62d6" | ||
1449 | integrity sha1-mUsCqkb2mcULYle1+qp/4lV+YtY= | ||
1450 | |||
1451 | process-nextick-args@~2.0.0: | ||
1452 | version "2.0.1" | ||
1453 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" | ||
1454 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== | ||
1455 | |||
1456 | protobufjs@^6.8.8: | ||
1457 | version "6.11.2" | ||
1458 | resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-6.11.2.tgz#de39fabd4ed32beaa08e9bb1e30d08544c1edf8b" | ||
1459 | integrity sha512-4BQJoPooKJl2G9j3XftkIXjoC9C0Av2NOrWmbLWT1vH32GcSUHjM0Arra6UfTsVyfMAuFzaLucXn1sadxJydAw== | ||
1460 | dependencies: | ||
1461 | "@protobufjs/aspromise" "^1.1.2" | ||
1462 | "@protobufjs/base64" "^1.1.2" | ||
1463 | "@protobufjs/codegen" "^2.0.4" | ||
1464 | "@protobufjs/eventemitter" "^1.1.0" | ||
1465 | "@protobufjs/fetch" "^1.1.0" | ||
1466 | "@protobufjs/float" "^1.0.2" | ||
1467 | "@protobufjs/inquire" "^1.1.0" | ||
1468 | "@protobufjs/path" "^1.1.2" | ||
1469 | "@protobufjs/pool" "^1.1.0" | ||
1470 | "@protobufjs/utf8" "^1.1.0" | ||
1471 | "@types/long" "^4.0.1" | ||
1472 | "@types/node" ">=13.7.0" | ||
1473 | long "^4.0.0" | ||
1474 | |||
1475 | pump@^3.0.0: | ||
1476 | version "3.0.0" | ||
1477 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" | ||
1478 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== | ||
1479 | dependencies: | ||
1480 | end-of-stream "^1.1.0" | ||
1481 | once "^1.3.1" | ||
1482 | |||
1483 | qap@^3.1.2: | ||
1484 | version "3.3.1" | ||
1485 | resolved "https://registry.yarnpkg.com/qap/-/qap-3.3.1.tgz#11f9e8fa8890fe7cb99210c0f44d0613b7372cac" | ||
1486 | integrity sha1-Efno+oiQ/ny5khDA9E0GE7c3LKw= | ||
1487 | |||
1488 | queue-microtask@^1.2.2, queue-microtask@^1.2.3: | ||
1489 | version "1.2.3" | ||
1490 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" | ||
1491 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== | ||
1492 | |||
1493 | random-access-file@^2.0.1: | ||
1494 | version "2.2.0" | ||
1495 | resolved "https://registry.yarnpkg.com/random-access-file/-/random-access-file-2.2.0.tgz#b49b999efefb374afb7587f219071fec5ce66546" | ||
1496 | integrity sha512-B744003Mj7v3EcuPl9hCiB2Ot4aZjgtU2mV6yFY1THiWU/XfGf1uSadR+SlQdJcwHgAWeG7Lbos0aUqjtj8FQg== | ||
1497 | dependencies: | ||
1498 | mkdirp-classic "^0.5.2" | ||
1499 | random-access-storage "^1.1.1" | ||
1500 | |||
1501 | random-access-storage@^1.1.1: | ||
1502 | version "1.4.1" | ||
1503 | resolved "https://registry.yarnpkg.com/random-access-storage/-/random-access-storage-1.4.1.tgz#39a524dd428ade9161ce61a8ae677766e6117ffb" | ||
1504 | integrity sha512-DbCc2TIzOxPaHF6KCbr8zLtiYOJQQQCBHUVNHV/SckUQobCBB2YkDtbLdxGnPwPNpJfEyMWxDAm36A2xkbxxtw== | ||
1505 | dependencies: | ||
1506 | inherits "^2.0.3" | ||
1507 | |||
1508 | random-iterate@^1.0.1: | ||
1509 | version "1.0.1" | ||
1510 | resolved "https://registry.yarnpkg.com/random-iterate/-/random-iterate-1.0.1.tgz#f7d97d92dee6665ec5f6da08c7f963cad4b2ac99" | ||
1511 | integrity sha1-99l9kt7mZl7F9toIx/ljytSyrJk= | ||
1512 | |||
1513 | randombytes@^2.0.3, randombytes@^2.0.5, randombytes@^2.1.0: | ||
1514 | version "2.1.0" | ||
1515 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" | ||
1516 | integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== | ||
1517 | dependencies: | ||
1518 | safe-buffer "^5.1.0" | ||
1519 | |||
1520 | range-parser@^1.2.1: | ||
1521 | version "1.2.1" | ||
1522 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" | ||
1523 | integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== | ||
1524 | |||
1525 | range-slice-stream@^2.0.0: | ||
1526 | version "2.0.0" | ||
1527 | resolved "https://registry.yarnpkg.com/range-slice-stream/-/range-slice-stream-2.0.0.tgz#1f25fc7a2cacf9ccd140c46f9cf670a1a7fe3ce6" | ||
1528 | integrity sha512-PPYLwZ63lXi6Tv2EZ8w3M4FzC0rVqvxivaOVS8pXSp5FMIHFnvi4MWHL3UdFLhwSy50aNtJsgjY0mBC6oFL26Q== | ||
1529 | dependencies: | ||
1530 | readable-stream "^3.0.2" | ||
1531 | |||
1532 | rc4@^0.1.5: | ||
1533 | version "0.1.5" | ||
1534 | resolved "https://registry.yarnpkg.com/rc4/-/rc4-0.1.5.tgz#08c6e04a0168f6eb621c22ab6cb1151bd9f4a64d" | ||
1535 | integrity sha1-CMbgSgFo9utiHCKrbLEVG9n0pk0= | ||
1536 | |||
1537 | rc@^1.2.7: | ||
1538 | version "1.2.8" | ||
1539 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" | ||
1540 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== | ||
1541 | dependencies: | ||
1542 | deep-extend "^0.6.0" | ||
1543 | ini "~1.3.0" | ||
1544 | minimist "^1.2.0" | ||
1545 | strip-json-comments "~2.0.1" | ||
1546 | |||
1547 | readable-stream@^2.0.6, readable-stream@^2.2.2: | ||
1548 | version "2.3.7" | ||
1549 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" | ||
1550 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== | ||
1551 | dependencies: | ||
1552 | core-util-is "~1.0.0" | ||
1553 | inherits "~2.0.3" | ||
1554 | isarray "~1.0.0" | ||
1555 | process-nextick-args "~2.0.0" | ||
1556 | safe-buffer "~5.1.1" | ||
1557 | string_decoder "~1.1.1" | ||
1558 | util-deprecate "~1.0.1" | ||
1559 | |||
1560 | readable-stream@^3.0.2, readable-stream@^3.0.6, readable-stream@^3.4.0, readable-stream@^3.6.0: | ||
1561 | version "3.6.0" | ||
1562 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" | ||
1563 | integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== | ||
1564 | dependencies: | ||
1565 | inherits "^2.0.3" | ||
1566 | string_decoder "^1.1.1" | ||
1567 | util-deprecate "^1.0.1" | ||
1568 | |||
1569 | record-cache@^1.0.2: | ||
1570 | version "1.1.1" | ||
1571 | resolved "https://registry.yarnpkg.com/record-cache/-/record-cache-1.1.1.tgz#ba3088a489f50491a4af7b14d410822c394fb811" | ||
1572 | integrity sha512-L5hZlgWc7CmGbztnemQoKE1bLu9rtI2skOB0ttE4C5+TVszLE8Rd0YLTROSgvXKLAqPumS/soyN5tJW5wJLmJQ== | ||
1573 | |||
1574 | render-media@^4.1.0: | ||
1575 | version "4.1.0" | ||
1576 | resolved "https://registry.yarnpkg.com/render-media/-/render-media-4.1.0.tgz#9188376822653d7e56c2d789d157c81e74fee0cb" | ||
1577 | integrity sha512-F5BMWDmgATEoyPCtKjmGNTGN1ghoZlfRQ3MJh8dS/MrvIUIxupiof/Y9uahChipXcqQ57twVbgMmyQmuO1vokw== | ||
1578 | dependencies: | ||
1579 | debug "^4.2.0" | ||
1580 | is-ascii "^1.0.0" | ||
1581 | mediasource "^2.4.0" | ||
1582 | stream-to-blob-url "^3.0.2" | ||
1583 | videostream "^3.2.2" | ||
1584 | |||
1585 | rimraf@^2.6.1: | ||
1586 | version "2.7.1" | ||
1587 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" | ||
1588 | integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== | ||
1589 | dependencies: | ||
1590 | glob "^7.1.3" | ||
1591 | |||
1592 | rimraf@^3.0.0: | ||
1593 | version "3.0.2" | ||
1594 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" | ||
1595 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== | ||
1596 | dependencies: | ||
1597 | glob "^7.1.3" | ||
1598 | |||
1599 | run-parallel-limit@^1.1.0: | ||
1600 | version "1.1.0" | ||
1601 | resolved "https://registry.yarnpkg.com/run-parallel-limit/-/run-parallel-limit-1.1.0.tgz#be80e936f5768623a38a963262d6bef8ff11e7ba" | ||
1602 | integrity sha512-jJA7irRNM91jaKc3Hcl1npHsFLOXOoTkPCUL1JEa1R82O2miplXXRaGdjW/KM/98YQWDhJLiSs793CnXfblJUw== | ||
1603 | dependencies: | ||
1604 | queue-microtask "^1.2.2" | ||
1605 | |||
1606 | run-parallel@^1.1.10, run-parallel@^1.1.2, run-parallel@^1.1.6, run-parallel@^1.2.0: | ||
1607 | version "1.2.0" | ||
1608 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" | ||
1609 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== | ||
1610 | dependencies: | ||
1611 | queue-microtask "^1.2.2" | ||
1612 | |||
1613 | run-series@^1.1.9: | ||
1614 | version "1.1.9" | ||
1615 | resolved "https://registry.yarnpkg.com/run-series/-/run-series-1.1.9.tgz#15ba9cb90e6a6c054e67c98e1dc063df0ecc113a" | ||
1616 | integrity sha512-Arc4hUN896vjkqCYrUXquBFtRZdv1PfLbTYP71efP6butxyQ0kWpiNJyAgsxscmQg1cqvHY32/UCBzXedTpU2g== | ||
1617 | |||
1618 | rusha@^0.8.13: | ||
1619 | version "0.8.14" | ||
1620 | resolved "https://registry.yarnpkg.com/rusha/-/rusha-0.8.14.tgz#a977d0de9428406138b7bb90d3de5dcd024e2f68" | ||
1621 | integrity sha512-cLgakCUf6PedEu15t8kbsjnwIFFR2D4RfL+W3iWFJ4iac7z4B0ZI8fxy4R3J956kAI68HclCFGL8MPoUVC3qVA== | ||
1622 | |||
1623 | safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0: | ||
1624 | version "5.2.1" | ||
1625 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" | ||
1626 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== | ||
1627 | |||
1628 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: | ||
1629 | version "5.1.2" | ||
1630 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" | ||
1631 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== | ||
1632 | |||
1633 | "safer-buffer@>= 2.1.2 < 3": | ||
1634 | version "2.1.2" | ||
1635 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" | ||
1636 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== | ||
1637 | |||
1638 | sax@1.1.4: | ||
1639 | version "1.1.4" | ||
1640 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.1.4.tgz#74b6d33c9ae1e001510f179a91168588f1aedaa9" | ||
1641 | integrity sha1-dLbTPJrh4AFRDxeakRaFiPGu2qk= | ||
1642 | |||
1643 | sax@>=0.6.0, sax@^1.2.4: | ||
1644 | version "1.2.4" | ||
1645 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" | ||
1646 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== | ||
1647 | |||
1648 | semver@^5.3.0, semver@^5.5.0: | ||
1649 | version "5.7.1" | 274 | version "5.7.1" |
1650 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" | 275 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" |
1651 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== | 276 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== |
@@ -1655,16 +280,6 @@ semver@^6.0.0: | |||
1655 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" | 280 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" |
1656 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== | 281 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== |
1657 | 282 | ||
1658 | semver@~5.1.0: | ||
1659 | version "5.1.1" | ||
1660 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.1.1.tgz#a3292a373e6f3e0798da0b20641b9a9c5bc47e19" | ||
1661 | integrity sha1-oykqNz5vPgeY2gsgZBuanFvEfhk= | ||
1662 | |||
1663 | set-blocking@~2.0.0: | ||
1664 | version "2.0.0" | ||
1665 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" | ||
1666 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= | ||
1667 | |||
1668 | shebang-command@^1.2.0: | 283 | shebang-command@^1.2.0: |
1669 | version "1.2.0" | 284 | version "1.2.0" |
1670 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" | 285 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" |
@@ -1682,61 +297,6 @@ signal-exit@^3.0.0, signal-exit@^3.0.2: | |||
1682 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" | 297 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" |
1683 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== | 298 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== |
1684 | 299 | ||
1685 | simple-concat@^1.0.0, simple-concat@^1.0.1: | ||
1686 | version "1.0.1" | ||
1687 | resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" | ||
1688 | integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== | ||
1689 | |||
1690 | simple-get@^2.0.0, simple-get@^2.1.0: | ||
1691 | version "2.8.1" | ||
1692 | resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-2.8.1.tgz#0e22e91d4575d87620620bc91308d57a77f44b5d" | ||
1693 | integrity sha512-lSSHRSw3mQNUGPAYRqo7xy9dhKmxFXIjLjp4KHpf99GEH2VH7C3AM+Qfx6du6jhfUi6Vm7XnbEVEf7Wb6N8jRw== | ||
1694 | dependencies: | ||
1695 | decompress-response "^3.3.0" | ||
1696 | once "^1.3.1" | ||
1697 | simple-concat "^1.0.0" | ||
1698 | |||
1699 | simple-get@^4.0.0: | ||
1700 | version "4.0.0" | ||
1701 | resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.0.tgz#73fa628278d21de83dadd5512d2cc1f4872bd675" | ||
1702 | integrity sha512-ZalZGexYr3TA0SwySsr5HlgOOinS4Jsa8YB2GJ6lUNAazyAu4KG/VmzMTwAt2YVXzzVj8QmefmAonZIK2BSGcQ== | ||
1703 | dependencies: | ||
1704 | decompress-response "^6.0.0" | ||
1705 | once "^1.3.1" | ||
1706 | simple-concat "^1.0.0" | ||
1707 | |||
1708 | simple-peer@^9.11.0: | ||
1709 | version "9.11.0" | ||
1710 | resolved "https://registry.yarnpkg.com/simple-peer/-/simple-peer-9.11.0.tgz#e8d27609c7a610c3ddd75767da868e8daab67571" | ||
1711 | integrity sha512-qvdNu/dGMHBm2uQ7oLhQBMhYlrOZC1ywXNCH/i8I4etxR1vrjCnU6ZSQBptndB1gcakjo2+w4OHo7Sjza1SHxg== | ||
1712 | dependencies: | ||
1713 | buffer "^6.0.3" | ||
1714 | debug "^4.3.1" | ||
1715 | err-code "^3.0.1" | ||
1716 | get-browser-rtc "^1.1.0" | ||
1717 | queue-microtask "^1.2.3" | ||
1718 | randombytes "^2.1.0" | ||
1719 | readable-stream "^3.6.0" | ||
1720 | |||
1721 | simple-sha1@^3.0.0, simple-sha1@^3.0.1, simple-sha1@^3.1.0: | ||
1722 | version "3.1.0" | ||
1723 | resolved "https://registry.yarnpkg.com/simple-sha1/-/simple-sha1-3.1.0.tgz#40cac8436dfaf9924332fc46a5c7bca45f656131" | ||
1724 | integrity sha512-ArTptMRC1v08H8ihPD6l0wesKvMfF9e8XL5rIHPanI7kGOsSsbY514MwVu6X1PITHCTB2F08zB7cyEbfc4wQjg== | ||
1725 | dependencies: | ||
1726 | queue-microtask "^1.2.2" | ||
1727 | rusha "^0.8.13" | ||
1728 | |||
1729 | simple-websocket@^9.1.0: | ||
1730 | version "9.1.0" | ||
1731 | resolved "https://registry.yarnpkg.com/simple-websocket/-/simple-websocket-9.1.0.tgz#91cbb39eafefbe7e66979da6c639109352786a7f" | ||
1732 | integrity sha512-8MJPnjRN6A8UCp1I+H/dSFyjwJhp6wta4hsVRhjf8w9qBHRzxYt14RaOcjvQnhD1N4yKOddEjflwMnQM4VtXjQ== | ||
1733 | dependencies: | ||
1734 | debug "^4.3.1" | ||
1735 | queue-microtask "^1.2.2" | ||
1736 | randombytes "^2.1.0" | ||
1737 | readable-stream "^3.6.0" | ||
1738 | ws "^7.4.2" | ||
1739 | |||
1740 | sort-keys@^4.0.0: | 300 | sort-keys@^4.0.0: |
1741 | version "4.2.0" | 301 | version "4.2.0" |
1742 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-4.2.0.tgz#6b7638cee42c506fff8c1cecde7376d21315be18" | 302 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-4.2.0.tgz#6b7638cee42c506fff8c1cecde7376d21315be18" |
@@ -1744,54 +304,6 @@ sort-keys@^4.0.0: | |||
1744 | dependencies: | 304 | dependencies: |
1745 | is-plain-obj "^2.0.0" | 305 | is-plain-obj "^2.0.0" |
1746 | 306 | ||
1747 | speedometer@^1.1.0: | ||
1748 | version "1.1.0" | ||
1749 | resolved "https://registry.yarnpkg.com/speedometer/-/speedometer-1.1.0.tgz#a30b13abda45687a1a76977012c060f2ac8a7934" | ||
1750 | integrity sha512-z/wAiTESw2XVPssY2XRcme4niTc4S5FkkJ4gknudtVoc33Zil8TdTxHy5torRcgqMqksJV2Yz8HQcvtbsnw0mQ== | ||
1751 | |||
1752 | split@^1.0.1: | ||
1753 | version "1.0.1" | ||
1754 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" | ||
1755 | integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== | ||
1756 | dependencies: | ||
1757 | through "2" | ||
1758 | |||
1759 | stream-to-blob-url@^3.0.2: | ||
1760 | version "3.0.2" | ||
1761 | resolved "https://registry.yarnpkg.com/stream-to-blob-url/-/stream-to-blob-url-3.0.2.tgz#5574d139e2a6d1435945476f0a9469947f2da4fb" | ||
1762 | integrity sha512-PS6wT2ZyyR38Cy+lE6PBEI1ZmO2HdzZoLeDGG0zZbYikCZd0dh8FUoSeFzgWLItpBYw1WJmPVRLpykRV+lAWLQ== | ||
1763 | dependencies: | ||
1764 | stream-to-blob "^2.0.0" | ||
1765 | |||
1766 | stream-to-blob@^2.0.0, stream-to-blob@^2.0.1: | ||
1767 | version "2.0.1" | ||
1768 | resolved "https://registry.yarnpkg.com/stream-to-blob/-/stream-to-blob-2.0.1.tgz#59ab71d7a7f0bfb899570e886e44d39f4ac4381a" | ||
1769 | integrity sha512-GXlqXt3svqwIVWoICenix5Poxi4KbCF0BdXXUbpU1X4vq1V8wmjiEIU3aFJzCGNFpKxfbnG0uoowS3nKUgSPYg== | ||
1770 | |||
1771 | stream-with-known-length-to-buffer@^1.0.4: | ||
1772 | version "1.0.4" | ||
1773 | resolved "https://registry.yarnpkg.com/stream-with-known-length-to-buffer/-/stream-with-known-length-to-buffer-1.0.4.tgz#6a8aec53f27b8f481f962337c951aa3916fb60d1" | ||
1774 | integrity sha512-ztP79ug6S+I7td0Nd2GBeIKCm+vA54c+e60FY87metz5n/l6ydPELd2lxsljz8OpIhsRM9HkIiAwz85+S5G5/A== | ||
1775 | dependencies: | ||
1776 | once "^1.4.0" | ||
1777 | |||
1778 | string-width@^1.0.1: | ||
1779 | version "1.0.2" | ||
1780 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" | ||
1781 | integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= | ||
1782 | dependencies: | ||
1783 | code-point-at "^1.0.0" | ||
1784 | is-fullwidth-code-point "^1.0.0" | ||
1785 | strip-ansi "^3.0.0" | ||
1786 | |||
1787 | "string-width@^1.0.2 || 2": | ||
1788 | version "2.1.1" | ||
1789 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" | ||
1790 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== | ||
1791 | dependencies: | ||
1792 | is-fullwidth-code-point "^2.0.0" | ||
1793 | strip-ansi "^4.0.0" | ||
1794 | |||
1795 | string-width@^4.2.0: | 307 | string-width@^4.2.0: |
1796 | version "4.2.2" | 308 | version "4.2.2" |
1797 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5" | 309 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5" |
@@ -1801,42 +313,6 @@ string-width@^4.2.0: | |||
1801 | is-fullwidth-code-point "^3.0.0" | 313 | is-fullwidth-code-point "^3.0.0" |
1802 | strip-ansi "^6.0.0" | 314 | strip-ansi "^6.0.0" |
1803 | 315 | ||
1804 | string2compact@^1.3.0: | ||
1805 | version "1.3.0" | ||
1806 | resolved "https://registry.yarnpkg.com/string2compact/-/string2compact-1.3.0.tgz#22d946127b082d1203c51316af60117a337423c3" | ||
1807 | integrity sha512-004ulKKANDuQilQsNxy2lisrpMG0qUJxBU+2YCEF7KziRyNR0Nredm2qk0f1V82nva59H3y9GWeHXE63HzGRFw== | ||
1808 | dependencies: | ||
1809 | addr-to-ip-port "^1.0.1" | ||
1810 | ipaddr.js "^1.0.1" | ||
1811 | |||
1812 | string_decoder@^1.1.1: | ||
1813 | version "1.3.0" | ||
1814 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" | ||
1815 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== | ||
1816 | dependencies: | ||
1817 | safe-buffer "~5.2.0" | ||
1818 | |||
1819 | string_decoder@~1.1.1: | ||
1820 | version "1.1.1" | ||
1821 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" | ||
1822 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== | ||
1823 | dependencies: | ||
1824 | safe-buffer "~5.1.0" | ||
1825 | |||
1826 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: | ||
1827 | version "3.0.1" | ||
1828 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" | ||
1829 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= | ||
1830 | dependencies: | ||
1831 | ansi-regex "^2.0.0" | ||
1832 | |||
1833 | strip-ansi@^4.0.0: | ||
1834 | version "4.0.0" | ||
1835 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" | ||
1836 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= | ||
1837 | dependencies: | ||
1838 | ansi-regex "^3.0.0" | ||
1839 | |||
1840 | strip-ansi@^6.0.0: | 316 | strip-ansi@^6.0.0: |
1841 | version "6.0.0" | 317 | version "6.0.0" |
1842 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" | 318 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" |
@@ -1854,11 +330,6 @@ strip-eof@^1.0.0: | |||
1854 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" | 330 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" |
1855 | integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= | 331 | integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= |
1856 | 332 | ||
1857 | strip-json-comments@~2.0.1: | ||
1858 | version "2.0.1" | ||
1859 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" | ||
1860 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= | ||
1861 | |||
1862 | supports-color@^5.3.0: | 333 | supports-color@^5.3.0: |
1863 | version "5.5.0" | 334 | version "5.5.0" |
1864 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" | 335 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" |
@@ -1866,276 +337,18 @@ supports-color@^5.3.0: | |||
1866 | dependencies: | 337 | dependencies: |
1867 | has-flag "^3.0.0" | 338 | has-flag "^3.0.0" |
1868 | 339 | ||
1869 | tar@^4: | ||
1870 | version "4.4.13" | ||
1871 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525" | ||
1872 | integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA== | ||
1873 | dependencies: | ||
1874 | chownr "^1.1.1" | ||
1875 | fs-minipass "^1.2.5" | ||
1876 | minipass "^2.8.6" | ||
1877 | minizlib "^1.2.1" | ||
1878 | mkdirp "^0.5.0" | ||
1879 | safe-buffer "^5.1.2" | ||
1880 | yallist "^3.0.3" | ||
1881 | |||
1882 | thirty-two@^1.0.2: | ||
1883 | version "1.0.2" | ||
1884 | resolved "https://registry.yarnpkg.com/thirty-two/-/thirty-two-1.0.2.tgz#4ca2fffc02a51290d2744b9e3f557693ca6b627a" | ||
1885 | integrity sha1-TKL//AKlEpDSdEueP1V2k8prYno= | ||
1886 | |||
1887 | through@2: | ||
1888 | version "2.3.8" | ||
1889 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" | ||
1890 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= | ||
1891 | |||
1892 | thunky@^0.1.0: | ||
1893 | version "0.1.0" | ||
1894 | resolved "https://registry.yarnpkg.com/thunky/-/thunky-0.1.0.tgz#bf30146824e2b6e67b0f2d7a4ac8beb26908684e" | ||
1895 | integrity sha1-vzAUaCTituZ7Dy16Ssi+smkIaE4= | ||
1896 | |||
1897 | thunky@^1.0.1, thunky@^1.0.2: | ||
1898 | version "1.1.0" | ||
1899 | resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d" | ||
1900 | integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== | ||
1901 | |||
1902 | timeout-refresh@^1.0.0: | ||
1903 | version "1.0.3" | ||
1904 | resolved "https://registry.yarnpkg.com/timeout-refresh/-/timeout-refresh-1.0.3.tgz#7024a8ce0a09a57acc2ea86002048e6c0bff7375" | ||
1905 | integrity sha512-Mz0CX4vBGM5lj8ttbIFt7o4ZMxk/9rgudJRh76EvB7xXZMur7T/cjRiH2w4Fmkq0zxf2QpM8IFvOSRn8FEu3gA== | ||
1906 | |||
1907 | to-arraybuffer@^1.0.1: | ||
1908 | version "1.0.1" | ||
1909 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" | ||
1910 | integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= | ||
1911 | |||
1912 | torrent-discovery@^9.4.0: | ||
1913 | version "9.4.0" | ||
1914 | resolved "https://registry.yarnpkg.com/torrent-discovery/-/torrent-discovery-9.4.0.tgz#e6b5f8244e6ea0c48efbcfc88792e033d15e6f56" | ||
1915 | integrity sha512-+YW9JGbO5bCuDw9YYW//p4iVLV0aP4C+AYrNQjL/+dSNPUtD1ufK1V8UZERt6rIoeNGhutkSVyeO4Fid9Tjxjg== | ||
1916 | dependencies: | ||
1917 | bittorrent-dht "^10.0.0" | ||
1918 | bittorrent-lsd "^1.0.0" | ||
1919 | bittorrent-tracker "^9.0.0" | ||
1920 | debug "^4.0.0" | ||
1921 | run-parallel "^1.1.2" | ||
1922 | |||
1923 | torrent-piece@^2.0.1: | ||
1924 | version "2.0.1" | ||
1925 | resolved "https://registry.yarnpkg.com/torrent-piece/-/torrent-piece-2.0.1.tgz#a1a50fffa589d9bf9560e38837230708bc3afdc6" | ||
1926 | integrity sha512-JLSOyvQVLI6JTWqioY4vFL0JkEUKQcaHQsU3loxkCvPTSttw8ePs2tFwsP4XIjw99Fz8EdOzt/4faykcbnPbCQ== | ||
1927 | |||
1928 | type-fest@^0.6.0: | 340 | type-fest@^0.6.0: |
1929 | version "0.6.0" | 341 | version "0.6.0" |
1930 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" | 342 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" |
1931 | integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== | 343 | integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== |
1932 | 344 | ||
1933 | typedarray-to-buffer@^3.0.0, typedarray-to-buffer@^3.1.5: | 345 | typedarray-to-buffer@^3.1.5: |
1934 | version "3.1.5" | 346 | version "3.1.5" |
1935 | resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" | 347 | resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" |
1936 | integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== | 348 | integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== |
1937 | dependencies: | 349 | dependencies: |
1938 | is-typedarray "^1.0.0" | 350 | is-typedarray "^1.0.0" |
1939 | 351 | ||
1940 | typedarray@^0.0.6: | ||
1941 | version "0.0.6" | ||
1942 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" | ||
1943 | integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= | ||
1944 | |||
1945 | uint64be@^2.0.2: | ||
1946 | version "2.0.2" | ||
1947 | resolved "https://registry.yarnpkg.com/uint64be/-/uint64be-2.0.2.tgz#ef4a179752fe8f9ddaa29544ecfc13490031e8e5" | ||
1948 | integrity sha512-9QqdvpGQTXgxthP+lY4e/gIBy+RuqcBaC6JVwT5I3bDLgT/btL6twZMR0pI3/Fgah9G/pdwzIprE5gL6v9UvyQ== | ||
1949 | dependencies: | ||
1950 | buffer-alloc "^1.1.0" | ||
1951 | |||
1952 | unordered-array-remove@^1.0.2: | ||
1953 | version "1.0.2" | ||
1954 | resolved "https://registry.yarnpkg.com/unordered-array-remove/-/unordered-array-remove-1.0.2.tgz#c546e8f88e317a0cf2644c97ecb57dba66d250ef" | ||
1955 | integrity sha1-xUbo+I4xegzyZEyX7LV9umbSUO8= | ||
1956 | |||
1957 | unordered-set@^2.0.1: | ||
1958 | version "2.0.1" | ||
1959 | resolved "https://registry.yarnpkg.com/unordered-set/-/unordered-set-2.0.1.tgz#4cd0fe27b8814bcf5d6073e5f0966ec7a50841e6" | ||
1960 | integrity sha512-eUmNTPzdx+q/WvOHW0bgGYLWvWHNT3PTKEQLg0MAQhc0AHASHVHoP/9YytYd4RBVariqno/mEUhVZN98CmD7bg== | ||
1961 | |||
1962 | upnp-device-client@^1.0.0: | ||
1963 | version "1.0.2" | ||
1964 | resolved "https://registry.yarnpkg.com/upnp-device-client/-/upnp-device-client-1.0.2.tgz#91f84705f2349bf89082855fff4e3006ac435337" | ||
1965 | integrity sha1-kfhHBfI0m/iQgoVf/04wBqxDUzc= | ||
1966 | dependencies: | ||
1967 | concat-stream "^1.4.8" | ||
1968 | debug "^2.1.3" | ||
1969 | elementtree "~0.1.6" | ||
1970 | network-address "^1.0.0" | ||
1971 | |||
1972 | upnp-mediarenderer-client@^1.2.2: | ||
1973 | version "1.4.0" | ||
1974 | resolved "https://registry.yarnpkg.com/upnp-mediarenderer-client/-/upnp-mediarenderer-client-1.4.0.tgz#06788675c00223d90f605f7971587ab8f3c6783b" | ||
1975 | integrity sha512-F+C3Yceoz0j3ZWEchz5tpaOEqkbpObRUmeuPGc9+2u2YvC1CDbXGQ6mjbM10MDhnUJ0tTWYTufpj6xsWctnULw== | ||
1976 | dependencies: | ||
1977 | debug "^2.1.3" | ||
1978 | elementtree "^0.1.6" | ||
1979 | upnp-device-client "^1.0.0" | ||
1980 | |||
1981 | url-join@^4.0.0: | ||
1982 | version "4.0.1" | ||
1983 | resolved "https://registry.yarnpkg.com/url-join/-/url-join-4.0.1.tgz#b642e21a2646808ffa178c4c5fda39844e12cde7" | ||
1984 | integrity sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA== | ||
1985 | |||
1986 | ut_metadata@^3.5.2: | ||
1987 | version "3.5.2" | ||
1988 | resolved "https://registry.yarnpkg.com/ut_metadata/-/ut_metadata-3.5.2.tgz#2351c9348759e929978fa6a08d56ef6f584749e7" | ||
1989 | integrity sha512-3XZZuJSeoIUyMYSuDbTbVtP4KAVGHPfU8nmHFkr8LJc+THCaUXwnu/2AV+LCSLarET/hL9IlbNfYTGrt6fOVuQ== | ||
1990 | dependencies: | ||
1991 | bencode "^2.0.1" | ||
1992 | bitfield "^4.0.0" | ||
1993 | debug "^4.2.0" | ||
1994 | simple-sha1 "^3.0.1" | ||
1995 | |||
1996 | ut_pex@^3.0.0: | ||
1997 | version "3.0.1" | ||
1998 | resolved "https://registry.yarnpkg.com/ut_pex/-/ut_pex-3.0.1.tgz#fb8b6e066f8f6f6de3e6b3e28e7d18e697be5854" | ||
1999 | integrity sha512-t1MHIDHSISgOJcmq8UM6Qv9/hRQYVaUvzqSNnXa5ATDbS9hXfhBpyBo2HcSyJtwPSHsmMtNui8G6yKirwJ8vow== | ||
2000 | dependencies: | ||
2001 | bencode "^2.0.1" | ||
2002 | compact2string "^1.4.1" | ||
2003 | string2compact "^1.3.0" | ||
2004 | |||
2005 | utf-8-validate@^5.0.5: | ||
2006 | version "5.0.5" | ||
2007 | resolved "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-5.0.5.tgz#dd32c2e82c72002dc9f02eb67ba6761f43456ca1" | ||
2008 | integrity sha512-+pnxRYsS/axEpkrrEpzYfNZGXp0IjC/9RIxwM5gntY4Koi8SHmUGSfxfWqxZdRxrtaoVstuOzUp/rbs3JSPELQ== | ||
2009 | dependencies: | ||
2010 | node-gyp-build "^4.2.0" | ||
2011 | |||
2012 | util-deprecate@^1.0.1, util-deprecate@~1.0.1: | ||
2013 | version "1.0.2" | ||
2014 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" | ||
2015 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= | ||
2016 | |||
2017 | utp-native@^2.4.0: | ||
2018 | version "2.5.0" | ||
2019 | resolved "https://registry.yarnpkg.com/utp-native/-/utp-native-2.5.0.tgz#3d8321760108b30cb15391196c8cc93db85b61ce" | ||
2020 | integrity sha512-HoHPE6gwLxC0xlpYJUl+Xw2sh809lhXx3TexHsb2/xY8vEd6NwuvAxOI/X27dBTc/TOT5diWUpCJWDaunkcVvA== | ||
2021 | dependencies: | ||
2022 | napi-macros "^2.0.0" | ||
2023 | node-gyp-build "^4.2.0" | ||
2024 | readable-stream "^3.0.2" | ||
2025 | timeout-refresh "^1.0.0" | ||
2026 | unordered-set "^2.0.1" | ||
2027 | |||
2028 | videostream@^3.2.2: | ||
2029 | version "3.2.2" | ||
2030 | resolved "https://registry.yarnpkg.com/videostream/-/videostream-3.2.2.tgz#e3e8d44f5159892f8f31ad35cbf9302d7a6e6afc" | ||
2031 | integrity sha512-4tz23yGGeATmbzj/ZnUm6wgQ4E1lzmMXu2mUA/c0G6adtWKxm1Di5YejdZdRsK6SdkLjKjhplFFYT7r+UUDKvA== | ||
2032 | dependencies: | ||
2033 | binary-search "^1.3.4" | ||
2034 | mediasource "^2.2.2" | ||
2035 | mp4-box-encoding "^1.3.0" | ||
2036 | mp4-stream "^3.0.0" | ||
2037 | pump "^3.0.0" | ||
2038 | range-slice-stream "^2.0.0" | ||
2039 | |||
2040 | vlc-command@^1.2.0: | ||
2041 | version "1.2.0" | ||
2042 | resolved "https://registry.yarnpkg.com/vlc-command/-/vlc-command-1.2.0.tgz#a5bac48c6948f587c0be412a07dcdc7b8eb07c9c" | ||
2043 | integrity sha512-YTr1w5KmxRN5CBCvplKOD6g/OjwCl5iz+SIjDbq8gWTkByYZun5duHm+OLUkBlbJrCGvMyFyNhTMQxV4Ny0v8g== | ||
2044 | dependencies: | ||
2045 | run-parallel "^1.1.6" | ||
2046 | winreg "^1.2.1" | ||
2047 | |||
2048 | webidl-conversions@^4.0.2: | ||
2049 | version "4.0.2" | ||
2050 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" | ||
2051 | integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== | ||
2052 | |||
2053 | webtorrent-cli@^3.2.0: | ||
2054 | version "3.3.0" | ||
2055 | resolved "https://registry.yarnpkg.com/webtorrent-cli/-/webtorrent-cli-3.3.0.tgz#465e9fb82373c6b279904b5876d4745cb8ac6b43" | ||
2056 | integrity sha512-E0gb1fXb8xNScgewQmvAmNLrnEto6MOaKlfzITVzR+bbU80LeV/YdrLw536ffcwiUv0arKQyfR/WIweBFrKWbg== | ||
2057 | dependencies: | ||
2058 | clivas "^0.2.0" | ||
2059 | common-tags "^1.8.0" | ||
2060 | create-torrent "^4.4.2" | ||
2061 | dlnacasts "^0.1.0" | ||
2062 | ecstatic "^4.1.4" | ||
2063 | executable "^4.1.1" | ||
2064 | mime "^2.4.6" | ||
2065 | minimist "^1.2.5" | ||
2066 | moment "^2.27.0" | ||
2067 | network-address "^1.1.2" | ||
2068 | open "^8.0.0" | ||
2069 | parse-torrent "^9.0.0" | ||
2070 | prettier-bytes "^1.0.4" | ||
2071 | vlc-command "^1.2.0" | ||
2072 | webtorrent "^1.0.0" | ||
2073 | winreg "^1.2.4" | ||
2074 | optionalDependencies: | ||
2075 | airplay-js "^0.3.0" | ||
2076 | chromecasts "^1.9.1" | ||
2077 | nodebmc "0.0.7" | ||
2078 | |||
2079 | webtorrent-hybrid@^4.0.3: | ||
2080 | version "4.1.0" | ||
2081 | resolved "https://registry.yarnpkg.com/webtorrent-hybrid/-/webtorrent-hybrid-4.1.0.tgz#86e397a8f051de225c60ce751f47d28a906cbfdc" | ||
2082 | integrity sha512-IqRWVI+gXHjv/ybj3YK6Q4gJM1OaIgy3Nw3ec0iPS7TeBrG6R3yhfHupF39DIwyKFERZDnYoxVnxHOt8TAaucw== | ||
2083 | dependencies: | ||
2084 | create-torrent "^4.4.2" | ||
2085 | webtorrent "^1.0.0" | ||
2086 | webtorrent-cli "^3.2.0" | ||
2087 | wrtc "^0.4.6" | ||
2088 | |||
2089 | webtorrent@^1.0.0: | ||
2090 | version "1.0.0" | ||
2091 | resolved "https://registry.yarnpkg.com/webtorrent/-/webtorrent-1.0.0.tgz#1d8fd388726ca013feb17d2437b1b9df2d24b5e8" | ||
2092 | integrity sha512-htwcY5OBOWL/OMwaw3xi1Mp2gE9k5UmGTKeO3n1ixQDH9QgeqqRlBJz2ZLEyOL8yN1FdS/D9z+ijm06bZ3oW5w== | ||
2093 | dependencies: | ||
2094 | addr-to-ip-port "^1.5.1" | ||
2095 | bitfield "^4.0.0" | ||
2096 | bittorrent-dht "^10.0.0" | ||
2097 | bittorrent-protocol "^3.3.1" | ||
2098 | chrome-net "^3.3.4" | ||
2099 | chunk-store-stream "^4.3.0" | ||
2100 | cpus "^1.0.3" | ||
2101 | create-torrent "^4.7.0" | ||
2102 | debug "^4.3.1" | ||
2103 | end-of-stream "^1.4.4" | ||
2104 | escape-html "^1.0.3" | ||
2105 | fs-chunk-store "^2.0.3" | ||
2106 | http-node "github:feross/http-node#webtorrent" | ||
2107 | immediate-chunk-store "^2.2.0" | ||
2108 | load-ip-set "^2.2.1" | ||
2109 | lt_donthave "^1.0.1" | ||
2110 | memory-chunk-store "^1.3.5" | ||
2111 | mime "^2.5.2" | ||
2112 | multistream "^4.1.0" | ||
2113 | package-json-versionify "^1.0.4" | ||
2114 | parse-torrent "^9.1.3" | ||
2115 | pump "^3.0.0" | ||
2116 | queue-microtask "^1.2.3" | ||
2117 | random-iterate "^1.0.1" | ||
2118 | randombytes "^2.1.0" | ||
2119 | range-parser "^1.2.1" | ||
2120 | readable-stream "^3.6.0" | ||
2121 | render-media "^4.1.0" | ||
2122 | run-parallel "^1.2.0" | ||
2123 | run-parallel-limit "^1.1.0" | ||
2124 | simple-concat "^1.0.1" | ||
2125 | simple-get "^4.0.0" | ||
2126 | simple-peer "^9.11.0" | ||
2127 | simple-sha1 "^3.1.0" | ||
2128 | speedometer "^1.1.0" | ||
2129 | stream-to-blob "^2.0.1" | ||
2130 | stream-to-blob-url "^3.0.2" | ||
2131 | stream-with-known-length-to-buffer "^1.0.4" | ||
2132 | torrent-discovery "^9.4.0" | ||
2133 | torrent-piece "^2.0.1" | ||
2134 | unordered-array-remove "^1.0.2" | ||
2135 | ut_metadata "^3.5.2" | ||
2136 | ut_pex "^3.0.0" | ||
2137 | utp-native "^2.4.0" | ||
2138 | |||
2139 | which@^1.2.9: | 352 | which@^1.2.9: |
2140 | version "1.3.1" | 353 | version "1.3.1" |
2141 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" | 354 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" |
@@ -2143,23 +356,6 @@ which@^1.2.9: | |||
2143 | dependencies: | 356 | dependencies: |
2144 | isexe "^2.0.0" | 357 | isexe "^2.0.0" |
2145 | 358 | ||
2146 | wide-align@^1.1.0: | ||
2147 | version "1.1.3" | ||
2148 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" | ||
2149 | integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== | ||
2150 | dependencies: | ||
2151 | string-width "^1.0.2 || 2" | ||
2152 | |||
2153 | winreg@^1.2.1, winreg@^1.2.4: | ||
2154 | version "1.2.4" | ||
2155 | resolved "https://registry.yarnpkg.com/winreg/-/winreg-1.2.4.tgz#ba065629b7a925130e15779108cf540990e98d1b" | ||
2156 | integrity sha1-ugZWKbepJRMOFXeRCM9UCZDpjRs= | ||
2157 | |||
2158 | wrappy@1: | ||
2159 | version "1.0.2" | ||
2160 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" | ||
2161 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= | ||
2162 | |||
2163 | write-file-atomic@^3.0.0: | 359 | write-file-atomic@^3.0.0: |
2164 | version "3.0.3" | 360 | version "3.0.3" |
2165 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" | 361 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" |
@@ -2181,45 +377,3 @@ write-json-file@^4.2.0: | |||
2181 | make-dir "^3.0.0" | 377 | make-dir "^3.0.0" |
2182 | sort-keys "^4.0.0" | 378 | sort-keys "^4.0.0" |
2183 | write-file-atomic "^3.0.0" | 379 | write-file-atomic "^3.0.0" |
2184 | |||
2185 | wrtc@^0.4.6: | ||
2186 | version "0.4.7" | ||
2187 | resolved "https://registry.yarnpkg.com/wrtc/-/wrtc-0.4.7.tgz#c61530cd662713e50bffe64b7a78673ce070426c" | ||
2188 | integrity sha512-P6Hn7VT4lfSH49HxLHcHhDq+aFf/jd9dPY7lDHeFhZ22N3858EKuwm2jmnlPzpsRGEPaoF6XwkcxY5SYnt4f/g== | ||
2189 | dependencies: | ||
2190 | node-pre-gyp "^0.13.0" | ||
2191 | optionalDependencies: | ||
2192 | domexception "^1.0.1" | ||
2193 | |||
2194 | ws@^7.4.2, ws@^7.4.5: | ||
2195 | version "7.4.6" | ||
2196 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c" | ||
2197 | integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A== | ||
2198 | |||
2199 | xml2js@^0.4.8: | ||
2200 | version "0.4.23" | ||
2201 | resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.23.tgz#a0c69516752421eb2ac758ee4d4ccf58843eac66" | ||
2202 | integrity sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug== | ||
2203 | dependencies: | ||
2204 | sax ">=0.6.0" | ||
2205 | xmlbuilder "~11.0.0" | ||
2206 | |||
2207 | xmlbuilder@0.4.x: | ||
2208 | version "0.4.3" | ||
2209 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-0.4.3.tgz#c4614ba74e0ad196e609c9272cd9e1ddb28a8a58" | ||
2210 | integrity sha1-xGFLp04K0ZbmCcknLNnh3bKKilg= | ||
2211 | |||
2212 | xmlbuilder@~11.0.0: | ||
2213 | version "11.0.1" | ||
2214 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3" | ||
2215 | integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== | ||
2216 | |||
2217 | xmldom@0.1.x: | ||
2218 | version "0.1.31" | ||
2219 | resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.31.tgz#b76c9a1bd9f0a9737e5a72dc37231cf38375e2ff" | ||
2220 | integrity sha512-yS2uJflVQs6n+CyjHoaBmVSqIDevTAWrzMmjG1Gc7h1qQ7uVozNhEPJAwZXWyGQ/Gafo3fCwrcaokezLPupVyQ== | ||
2221 | |||
2222 | yallist@^3.0.0, yallist@^3.0.3: | ||
2223 | version "3.1.1" | ||
2224 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" | ||
2225 | integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== | ||
diff --git a/shared/core-utils/common/url.ts b/shared/core-utils/common/url.ts index 52ed247c4..9c111cbcc 100644 --- a/shared/core-utils/common/url.ts +++ b/shared/core-utils/common/url.ts | |||
@@ -53,7 +53,7 @@ function decorateVideoLink (options: { | |||
53 | }) { | 53 | }) { |
54 | const { url } = options | 54 | const { url } = options |
55 | 55 | ||
56 | const params = generateParams(window.location.search) | 56 | const params = new URLSearchParams() |
57 | 57 | ||
58 | if (options.startTime !== undefined && options.startTime !== null) { | 58 | if (options.startTime !== undefined && options.startTime !== null) { |
59 | const startTimeInt = Math.floor(options.startTime) | 59 | const startTimeInt = Math.floor(options.startTime) |
@@ -85,7 +85,7 @@ function decoratePlaylistLink (options: { | |||
85 | }) { | 85 | }) { |
86 | const { url } = options | 86 | const { url } = options |
87 | 87 | ||
88 | const params = generateParams(window.location.search) | 88 | const params = new URLSearchParams() |
89 | 89 | ||
90 | if (options.playlistPosition) params.set('playlistPosition', '' + options.playlistPosition) | 90 | if (options.playlistPosition) params.set('playlistPosition', '' + options.playlistPosition) |
91 | 91 | ||
@@ -119,12 +119,3 @@ function buildUrl (url: string, params: URLSearchParams) { | |||
119 | 119 | ||
120 | return url | 120 | return url |
121 | } | 121 | } |
122 | |||
123 | function generateParams (url: string) { | ||
124 | const params = new URLSearchParams(window.location.search) | ||
125 | // Unused parameters in embed | ||
126 | params.delete('videoId') | ||
127 | params.delete('resume') | ||
128 | |||
129 | return params | ||
130 | } | ||
diff --git a/support/doc/dependencies.md b/support/doc/dependencies.md index 8fe190320..7c3fcd55b 100644 --- a/support/doc/dependencies.md +++ b/support/doc/dependencies.md | |||
@@ -1,5 +1,7 @@ | |||
1 | # Dependencies | 1 | # Dependencies |
2 | 2 | ||
3 | :warning: **Warning**: dependencies guide is maintained by the community. Some parts may be outdated! :warning: | ||
4 | |||
3 | Follow the below guides, and check their versions match [required external dependencies versions](https://github.com/Chocobozzz/PeerTube/blob/master/engines.yaml). You can check them automatically via `sudo npx engineslist`. | 5 | Follow the below guides, and check their versions match [required external dependencies versions](https://github.com/Chocobozzz/PeerTube/blob/master/engines.yaml). You can check them automatically via `sudo npx engineslist`. |
4 | 6 | ||
5 | _note_: only **LTS** versions of external dependencies are supported. If no LTS version matching the version constraint is available, only **release** versions are supported. | 7 | _note_: only **LTS** versions of external dependencies are supported. If no LTS version matching the version constraint is available, only **release** versions are supported. |
@@ -554,6 +556,12 @@ rc-service redis start | |||
554 | rc-service postgresql-11 start | 556 | rc-service postgresql-11 start |
555 | ``` | 557 | ``` |
556 | 558 | ||
559 | 6. Create Python version symlink for youtube-dl: | ||
560 | |||
561 | ``` | ||
562 | sudo ln -s /usr/bin/python3 /usr/bin/python | ||
563 | ``` | ||
564 | |||
557 | ## OpenBSD | 565 | ## OpenBSD |
558 | 566 | ||
559 | 1. Install Packages: | 567 | 1. Install Packages: |
diff --git a/support/doc/tools.md b/support/doc/tools.md index 433aaeff7..78ace1344 100644 --- a/support/doc/tools.md +++ b/support/doc/tools.md | |||
@@ -10,7 +10,6 @@ | |||
10 | - [CLI wrapper](#cli-wrapper) | 10 | - [CLI wrapper](#cli-wrapper) |
11 | - [peertube-import-videos.js](#peertube-import-videosjs) | 11 | - [peertube-import-videos.js](#peertube-import-videosjs) |
12 | - [peertube-upload.js](#peertube-uploadjs) | 12 | - [peertube-upload.js](#peertube-uploadjs) |
13 | - [peertube-watch.js](#peertube-watchjs) | ||
14 | - [peertube-plugins.js](#peertube-pluginsjs) | 13 | - [peertube-plugins.js](#peertube-pluginsjs) |
15 | - [peertube-redundancy.js](#peertube-redundancyjs) | 14 | - [peertube-redundancy.js](#peertube-redundancyjs) |
16 | - [Server tools](#server-tools) | 15 | - [Server tools](#server-tools) |
@@ -22,11 +21,6 @@ | |||
22 | - [update-host.js](#update-hostjs) | 21 | - [update-host.js](#update-hostjs) |
23 | - [reset-password.js](#reset-passwordjs) | 22 | - [reset-password.js](#reset-passwordjs) |
24 | - [plugin install/uninstall](#plugin-installuninstall) | 23 | - [plugin install/uninstall](#plugin-installuninstall) |
25 | - [REPL (Read Eval Print Loop)](#repl-read-eval-print-loop) | ||
26 | - [.help](#help) | ||
27 | - [Lodash example](#lodash-example) | ||
28 | - [YoutubeDL example](#youtubedl-example) | ||
29 | - [Models examples](#models-examples) | ||
30 | 24 | ||
31 | <!-- END doctoc generated TOC please keep comment here to allow auto update --> | 25 | <!-- END doctoc generated TOC please keep comment here to allow auto update --> |
32 | 26 | ||
@@ -75,8 +69,6 @@ You can access it as `peertube` via an alias in your `.bashrc` like `alias peert | |||
75 | auth [action] register your accounts on remote instances to use them with other commands | 69 | auth [action] register your accounts on remote instances to use them with other commands |
76 | upload|up upload a video | 70 | upload|up upload a video |
77 | import-videos|import import a video from a streaming platform | 71 | import-videos|import import a video from a streaming platform |
78 | watch|w watch a video in the terminal ✩°。⋆ | ||
79 | repl initiate a REPL to access internals | ||
80 | plugins|p [action] manage instance plugins | 72 | plugins|p [action] manage instance plugins |
81 | redundancy|r [action] manage video redundancies | 73 | redundancy|r [action] manage video redundancies |
82 | help [cmd] display help for [cmd] | 74 | help [cmd] display help for [cmd] |
@@ -100,12 +92,6 @@ You can now use that account to upload videos without feeding the same parameter | |||
100 | $ peertube up <videoFile> | 92 | $ peertube up <videoFile> |
101 | ``` | 93 | ``` |
102 | 94 | ||
103 | And now that your video is online, you can watch it from the confort of your terminal (use `peertube watch --help` to see the supported players): | ||
104 | |||
105 | ```bash | ||
106 | $ peertube watch https://peertube.cpy.re/videos/watch/e8a1af4e-414a-4d58-bfe6-2146eed06d10 | ||
107 | ``` | ||
108 | |||
109 | To list, install, uninstall dynamically plugins/themes of an instance: | 95 | To list, install, uninstall dynamically plugins/themes of an instance: |
110 | 96 | ||
111 | ```bash | 97 | ```bash |
@@ -169,22 +155,6 @@ $ cd ${CLONE} | |||
169 | $ node dist/server/tools/peertube-upload.js --help | 155 | $ node dist/server/tools/peertube-upload.js --help |
170 | ``` | 156 | ``` |
171 | 157 | ||
172 | #### peertube-watch.js | ||
173 | |||
174 | You can use this script to play videos directly from the CLI. | ||
175 | |||
176 | It provides support for different players: | ||
177 | |||
178 | - ascii (default ; plays in ascii art in your terminal!) | ||
179 | - mpv | ||
180 | - mplayer | ||
181 | - vlc | ||
182 | - stdout | ||
183 | - xbmc | ||
184 | - airplay | ||
185 | - chromecast | ||
186 | |||
187 | |||
188 | #### peertube-plugins.js | 158 | #### peertube-plugins.js |
189 | 159 | ||
190 | Install/update/uninstall or list local or NPM PeerTube plugins: | 160 | Install/update/uninstall or list local or NPM PeerTube plugins: |
@@ -413,134 +383,3 @@ $ # Docker installation | |||
413 | $ cd /var/www/peertube-docker | 383 | $ cd /var/www/peertube-docker |
414 | $ docker-compose exec -u peertube peertube npm run plugin:uninstall -- --npm-name peertube-plugin-myplugin | 384 | $ docker-compose exec -u peertube peertube npm run plugin:uninstall -- --npm-name peertube-plugin-myplugin |
415 | ``` | 385 | ``` |
416 | |||
417 | ### REPL (Read Eval Print Loop) | ||
418 | |||
419 | If you want to interact with the application libraries and objects even when PeerTube is not running, there is a REPL for that. | ||
420 | |||
421 | usage: `node ./dist/server/tools/peertube-repl.js` | ||
422 | |||
423 | "The default evaluator will, by default, assign the result of the most recently evaluated expression to the special variable `_` (underscore). Explicitly setting `_` to a value will disable this behavior." | ||
424 | |||
425 | - type `.help` to list commands available in the repl, notice it starts with a dot | ||
426 | - type `.exit` to exit, note that you still have to press CTRL-C to actually exit, or press CTRL-C (3 times) without typing `.exit` to exit | ||
427 | - type `context` to list all available objects and libraries in the context, note: `Promise` is also available but it's not listed in the context, in case you need promises for something | ||
428 | - type `env` to see the loaded environment variables | ||
429 | - type `path` to access path library | ||
430 | - type `lodash` to access lodash library | ||
431 | - type `uuidv1` to access uuid/v1 library | ||
432 | - type `uuidv3` to access uuid/v3 library | ||
433 | - type `uuidv4` to access uuid/v4 library | ||
434 | - type `uuidv5` to access uuid/v5 library | ||
435 | - type `YoutubeDL` to access youtube-dl library | ||
436 | - type `cli` to access the cli helpers object | ||
437 | - type `logger` to access the logger; if you log to it, it will write to stdout and to the peertube.log file | ||
438 | - type `constants` to access the constants loaded by the server | ||
439 | - type `coreUtils` to access the core-utils helpers object | ||
440 | - type `ffmpegUtils` to access the ffmpeg-utils helpers object | ||
441 | - type `peertubeCryptoUtils` to access the peertube-crypto helpers object | ||
442 | - type `signupUtils` to access the signup helpers object | ||
443 | - type `utils` to access the utils helpers object | ||
444 | - type `YoutubeDLUtils` to access the youtube-dl helpers object | ||
445 | - type `sequelizeTypescript` to access sequelizeTypescript | ||
446 | - type `modelsUtils` to access the models/utils | ||
447 | - type `models` to access the shortcut to sequelizeTypescript.models | ||
448 | - type `transaction` to access the shortcut to sequelizeTypescript.transaction | ||
449 | - type `query` to access the shortcut to sequelizeTypescript.query | ||
450 | - type `queryInterface` to access the shortcut to sequelizeTypescript.queryInterface | ||
451 | |||
452 | #### .help | ||
453 | |||
454 | ``` | ||
455 | PeerTube [1.0.0] (b10eb595)> .help | ||
456 | .break Sometimes you get stuck, this gets you out | ||
457 | .clear Break, and also clear the local context | ||
458 | .editor Enter editor mode | ||
459 | .exit Exit the repl | ||
460 | .help Print this help message | ||
461 | .load Load JS from a file into the REPL session | ||
462 | .r Reset REPL | ||
463 | .reset Reset REPL | ||
464 | .save Save all evaluated commands in this REPL session to a file | ||
465 | PeerTube [1.0.0] (b10eb595)> | ||
466 | ``` | ||
467 | |||
468 | #### Lodash example | ||
469 | |||
470 | ``` | ||
471 | PeerTube [1.0.0] (b10eb595)> lodash.keys(context) | ||
472 | [ 'global', | ||
473 | 'console', | ||
474 | 'DTRACE_NET_SERVER_CONNECTION', | ||
475 | 'DTRACE_NET_STREAM_END', | ||
476 | 'DTRACE_HTTP_SERVER_REQUEST', | ||
477 | 'DTRACE_HTTP_SERVER_RESPONSE', | ||
478 | 'DTRACE_HTTP_CLIENT_REQUEST', | ||
479 | 'DTRACE_HTTP_CLIENT_RESPONSE', | ||
480 | 'process', | ||
481 | 'Buffer', | ||
482 | 'clearImmediate', | ||
483 | 'clearInterval', | ||
484 | 'clearTimeout', | ||
485 | 'setImmediate', | ||
486 | 'setInterval', | ||
487 | 'setTimeout', | ||
488 | 'XMLHttpRequest', | ||
489 | 'compact2string', | ||
490 | 'module', | ||
491 | 'require', | ||
492 | 'path', | ||
493 | 'repl', | ||
494 | 'context', | ||
495 | 'env', | ||
496 | 'lodash', | ||
497 | 'uuidv1', | ||
498 | 'uuidv3', | ||
499 | 'uuidv4', | ||
500 | 'uuidv5', | ||
501 | 'cli', | ||
502 | 'logger', | ||
503 | 'constants', | ||
504 | 'Sequelize', | ||
505 | 'sequelizeTypescript', | ||
506 | 'modelsUtils', | ||
507 | 'models', | ||
508 | 'transaction', | ||
509 | 'query', | ||
510 | 'queryInterface', | ||
511 | 'YoutubeDL', | ||
512 | 'coreUtils', | ||
513 | 'ffmpegUtils', | ||
514 | 'peertubeCryptoUtils', | ||
515 | 'signupUtils', | ||
516 | 'utils', | ||
517 | 'YoutubeDLUtils' ] | ||
518 | PeerTube [1.0.0] (b10eb595)> | ||
519 | ``` | ||
520 | |||
521 | #### YoutubeDL example | ||
522 | ``` | ||
523 | YoutubeDL.getInfo('https://www.youtube.com/watch?v=I5ZN289jjDo', function(err, data) {console.log(err, data)}) | ||
524 | ``` | ||
525 | |||
526 | #### Models examples | ||
527 | ``` | ||
528 | PeerTube [1.0.0] (b10eb595)> new models.ActorModel({id: 3}).getVideoChannel().then(function(data){console.log(data.dataValues.name)}) | ||
529 | Promise { | ||
530 | _bitField: 0, | ||
531 | _fulfillmentHandler0: undefined, | ||
532 | _rejectionHandler0: undefined, | ||
533 | _promise0: undefined, | ||
534 | _receiver0: undefined } | ||
535 | PeerTube [1.0.0] (b10eb595)> Main root channel | ||
536 | PeerTube [1.0.0] (b10eb595)> let out; new models.UserModel({id: 1}).getAccount().then(function (data) {out = data.dataValues.id}) | ||
537 | Promise { | ||
538 | _bitField: 0, | ||
539 | _fulfillmentHandler0: undefined, | ||
540 | _rejectionHandler0: undefined, | ||
541 | _promise0: undefined, | ||
542 | _receiver0: undefined } | ||
543 | PeerTube [1.0.0] (b10eb595)> out | ||
544 | 2 | ||
545 | PeerTube [1.0.0] (b10eb595)> | ||
546 | ``` | ||
@@ -5967,16 +5967,6 @@ markdown-it@^12.0.4: | |||
5967 | mdurl "^1.0.1" | 5967 | mdurl "^1.0.1" |
5968 | uc.micro "^1.0.5" | 5968 | uc.micro "^1.0.5" |
5969 | 5969 | ||
5970 | marked-man@^0.7.0: | ||
5971 | version "0.7.0" | ||
5972 | resolved "https://registry.yarnpkg.com/marked-man/-/marked-man-0.7.0.tgz#220ba01d275d16f1a98e4e7fc3c5eac0630c68e4" | ||
5973 | integrity sha512-zxK5E4jbuARALc+fIUAanM2njVGnrd9YvKrqoDHUg2XwNLJijo39EzMIg59LecHBHsIHNtPqepqnJp4SmL/EVg== | ||
5974 | |||
5975 | marked@^3.0.2: | ||
5976 | version "3.0.2" | ||
5977 | resolved "https://registry.yarnpkg.com/marked/-/marked-3.0.2.tgz#60ce97d6aec34dd882ab4bb4df82494666854e17" | ||
5978 | integrity sha512-TMJQQ79Z0e3rJYazY0tIoMsFzteUGw9fB3FD+gzuIT3zLuG9L9ckIvUfF51apdJkcqc208jJN2KbtPbOvXtbjA== | ||
5979 | |||
5980 | math-interval-parser@^2.0.1: | 5970 | math-interval-parser@^2.0.1: |
5981 | version "2.0.1" | 5971 | version "2.0.1" |
5982 | resolved "https://registry.yarnpkg.com/math-interval-parser/-/math-interval-parser-2.0.1.tgz#e22cd6d15a0a7f4c03aec560db76513da615bed4" | 5972 | resolved "https://registry.yarnpkg.com/math-interval-parser/-/math-interval-parser-2.0.1.tgz#e22cd6d15a0a7f4c03aec560db76513da615bed4" |