Merge branch 'Chocobozzz:develop' into feature/Remember-user-table-pagination-in-admin

This commit is contained in:
Wicklow 2023-10-30 13:27:27 +00:00 committed by GitHub
commit 5373280b64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
157 changed files with 2334 additions and 2121 deletions

View File

@ -87,7 +87,7 @@ export class LoginPage {
await logout.click()
await browser.waitUntil(() => {
return $('.login-buttons-block, my-error-page a[href="/login"]').isDisplayed()
return $$('.login-buttons-block, my-error-page a[href="/login"]').some(e => e.isDisplayed())
})
}

View File

@ -128,7 +128,8 @@ export class MyAccountPage {
await selectCustomSelect('privacy', privacy)
const submit = await $('form input[type=submit]')
submit.waitForClickable()
await submit.waitForClickable()
await submit.scrollIntoView()
await submit.click()
return browser.waitUntil(async () => {

View File

@ -40,7 +40,7 @@ export class PlayerPage {
await browser.waitUntil(async () => {
return (await this.getWatchVideoPlayerCurrentTime()) >= waitUntilSec
})
}, { timeout: waitUntilSec * 2 * 1000 })
// Pause video
await $('div.video-js').click()

View File

@ -2,7 +2,7 @@ export class VideoSearchPage {
async search (search: string) {
await $('#search-video').setValue(search)
await $('my-header .icon-search').click()
await $('.search-button').click()
await browser.waitUntil(() => {
return $('my-video-miniature').isDisplayed()

View File

@ -68,6 +68,7 @@ export class VideoUploadPage {
selectCustomSelect('privacy', 'Password protected')
const videoPasswordInput = $('input#videoPassword')
await videoPasswordInput.waitForClickable()
await videoPasswordInput.clearValue()
return videoPasswordInput.setValue(videoPassword)

View File

@ -151,13 +151,13 @@ export class VideoWatchPage {
}
async fillVideoPassword (videoPassword: string) {
const videoPasswordInput = $('input#confirmInput')
const confirmButton = await $('input[value="Confirm"]')
const videoPasswordInput = await $('input#confirmInput')
await videoPasswordInput.waitForClickable()
await videoPasswordInput.clearValue()
await videoPasswordInput.setValue(videoPassword)
await confirmButton.waitForClickable()
const confirmButton = await $('input[value="Confirm"]')
await confirmButton.waitForClickable()
return confirmButton.click()
}
@ -188,6 +188,7 @@ export class VideoWatchPage {
async createThread (comment: string) {
const textarea = await $('my-video-comment-add textarea')
await textarea.waitForClickable()
await textarea.setValue(comment)
@ -202,10 +203,12 @@ export class VideoWatchPage {
async createReply (comment: string) {
const replyButton = await $('button.comment-action-reply')
await replyButton.waitForClickable()
await replyButton.scrollIntoView()
await replyButton.click()
const textarea = await $('my-video-comment my-video-comment-add textarea')
const textarea = await $('my-video-comment my-video-comment-add textarea')
await textarea.waitForClickable()
await textarea.setValue(comment)
const confirmButton = await $('my-video-comment .comment-buttons .orange-button')

View File

@ -1,7 +1,7 @@
import { LoginPage } from '../po/login.po'
import { VideoUploadPage } from '../po/video-upload.po'
import { VideoWatchPage } from '../po/video-watch.po'
import { go, isMobileDevice, isSafari, waitServerUp } from '../utils'
import { getScreenshotPath, go, isMobileDevice, isSafari, waitServerUp } from '../utils'
describe('Custom server defaults', () => {
let videoUploadPage: VideoUploadPage
@ -83,4 +83,8 @@ describe('Custom server defaults', () => {
await checkP2P(false)
})
})
after(async () => {
await browser.saveScreenshot(getScreenshotPath('after-test.png'))
})
})

View File

@ -3,7 +3,7 @@ import { SignupPage } from '../po/signup.po'
import { PlayerPage } from '../po/player.po'
import { VideoUploadPage } from '../po/video-upload.po'
import { VideoWatchPage } from '../po/video-watch.po'
import { go, isMobileDevice, isSafari, waitServerUp } from '../utils'
import { getScreenshotPath, go, isMobileDevice, isSafari, waitServerUp } from '../utils'
import { MyAccountPage } from '../po/my-account.po'
describe('Password protected videos', () => {
@ -153,6 +153,7 @@ describe('Password protected videos', () => {
})
describe('Regular users', function () {
before(async () => {
await signupPage.fullSignup({
accountInfo: {
@ -221,4 +222,8 @@ describe('Password protected videos', () => {
await videoWatchPage.waitUntilVideoName(publicVideoName2, 40 * 1000)
})
})
after(async () => {
await browser.saveScreenshot(getScreenshotPath('after-test.png'))
})
})

View File

@ -93,5 +93,14 @@ function buildConfig (suiteFile: string = undefined) {
}
}
if (filename === 'video-password.e2e-spec.ts') {
return {
signup: {
enabled: true,
limit: -1
}
}
}
return {}
}

View File

@ -3,6 +3,8 @@ import { join, resolve } from 'path'
function runServer (appInstance: number, config: any = {}) {
const env = Object.create(process.env)
env['NODE_OPTIONS'] = ''
env['NODE_ENV'] = 'test'
env['NODE_APP_INSTANCE'] = appInstance + ''
@ -43,7 +45,10 @@ function runServer (appInstance: number, config: any = {}) {
function runCommand (command: string) {
return new Promise<void>((res, rej) => {
const p = exec(command, { cwd: getRootCWD() })
// Reset NODE_OPTIONS env set by webdriverio
const env = { ...process.env, NODE_OPTIONS: '' }
const p = exec(command, { env, cwd: getRootCWD() })
p.stderr.on('data', data => console.error(data.toString()))
p.on('error', err => rej(err))

View File

@ -43,7 +43,7 @@ module.exports = {
}
],
services: [ 'chromedriver', 'geckodriver', 'shared-store' ],
services: [ 'shared-store' ],
beforeSession: beforeLocalSession,
beforeSuite: beforeLocalSuite,

View File

@ -22,6 +22,7 @@ module.exports = {
{
'browserName': 'chrome',
'goog:chromeOptions': {
binary: '/usr/bin/google-chrome-stable',
args: [ '--headless', '--disable-gpu', windowSizeArg ],
prefs
}
@ -37,7 +38,7 @@ module.exports = {
}
],
services: [ 'chromedriver', 'geckodriver', 'shared-store' ],
services: [ 'shared-store' ],
beforeSession: beforeLocalSession,
beforeSuite: beforeLocalSuite,

View File

@ -90,7 +90,6 @@
"buffer": "^6.0.3",
"chart.js": "^4.3.0",
"chartjs-plugin-zoom": "~2.0.1",
"chromedriver": "^117.0.3",
"core-js": "^3.22.8",
"css-loader": "^6.2.0",
"debug": "^4.3.1",
@ -100,7 +99,6 @@
"eslint-plugin-prefer-arrow": "latest",
"expect-webdriverio": "^4.2.3",
"focus-visible": "^5.0.2",
"geckodriver": "^4.0.0",
"hls.js": "~1.3",
"html-loader": "^4.1.0",
"html-webpack-plugin": "^5.3.1",
@ -130,8 +128,6 @@
"tslib": "^2.4.0",
"typescript": "~5.1.0",
"video.js": "^7.19.2",
"wdio-chromedriver-service": "^8.1.1",
"wdio-geckodriver-service": "^5.0.1",
"webpack": "^5.73.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^5.0.1",

View File

@ -527,7 +527,7 @@ export class VideoStatsComponent implements OnInit {
const date = new Date(label)
if (data.groupInterval.match(/ month?$/)) {
if (data.groupInterval.match(/ months?$/)) {
return date.toLocaleDateString([], { year: '2-digit', month: 'numeric' })
}

View File

@ -48,6 +48,7 @@ export class RecentVideosRecommendationService implements RecommendationService
: undefined
const defaultSubscription = this.videos.getVideos({
skipCount: true,
videoPagination: pagination,
sort: '-publishedAt',
nsfw
@ -61,6 +62,7 @@ export class RecentVideosRecommendationService implements RecommendationService
return this.searchService.searchVideos({
search: '',
componentPagination: pagination,
skipCount: true,
advancedSearch: new AdvancedSearch({
tagsOneOf: recommendation.tags.join(','),
sort: '-publishedAt',

View File

@ -695,6 +695,8 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
}
const getStartTime = () => {
if (video.isLive) return undefined
const byUrl = urlOptions.startTime !== undefined
const byHistory = video.userHistory && (!this.playlist || urlOptions.resume !== undefined)
const byLocalStorage = getStoredVideoWatchHistory(video.uuid)

View File

@ -23,7 +23,7 @@ export class CustomPageService {
return of({ content: '' })
}
this.restExtractor.handleError(err)
return this.restExtractor.handleError(err)
})
)
}

View File

@ -395,7 +395,7 @@ export class VideoService {
return of([])
}
this.restExtractor.handleError(err)
return this.restExtractor.handleError(err)
})
)
}
@ -411,7 +411,7 @@ export class VideoService {
return of(undefined)
}
this.restExtractor.handleError(err)
return this.restExtractor.handleError(err)
})
)
}

View File

@ -31,8 +31,9 @@ export class SearchService {
componentPagination?: ComponentPaginationLight
advancedSearch?: AdvancedSearch
uuids?: string[]
skipCount?: boolean
}): Observable<ResultList<Video>> {
const { search, uuids, componentPagination, advancedSearch } = parameters
const { search, uuids, componentPagination, advancedSearch, skipCount } = parameters
if (advancedSearch?.resultType !== undefined && advancedSearch.resultType !== 'videos') {
return of({ total: 0, data: [] })
@ -49,6 +50,7 @@ export class SearchService {
params = this.restService.addRestGetParams(params, pagination)
if (search) params = params.append('search', search)
if (skipCount === true) params = params.append('skipCount', true)
if (uuids) params = this.restService.addArrayParams(params, 'uuids', uuids)
if (advancedSearch) {

View File

@ -45,7 +45,9 @@ export class LiveStreamInformationComponent {
[LiveVideoError.FFMPEG_ERROR]: $localize`Server error`,
[LiveVideoError.QUOTA_EXCEEDED]: $localize`Quota exceeded`,
[LiveVideoError.RUNNER_JOB_CANCEL]: $localize`Runner job cancelled`,
[LiveVideoError.RUNNER_JOB_ERROR]: $localize`Error in runner job`
[LiveVideoError.RUNNER_JOB_ERROR]: $localize`Error in runner job`,
[LiveVideoError.UNKNOWN_ERROR]: $localize`Unknown error`,
[LiveVideoError.INVALID_INPUT_VIDEO_STREAM]: $localize`Invalid input video stream`
}
return errors[session.error]

View File

@ -37,6 +37,9 @@ my-video-thumbnail,
@include disable-default-a-behaviour;
color: pvar(--mainForegroundColor);
}
> a {
display: flex;
min-width: 0;
align-items: center;
@ -125,11 +128,11 @@ my-video-thumbnail,
a {
width: auto;
padding-right: 5px;
}
.pt-badge {
@include margin-right(5px);
margin: 0 5px;
white-space: nowrap;
}
}

View File

@ -168,8 +168,7 @@ export class PeerTubePlayer {
const webVideoOptionsBuilder = new WebVideoOptionsBuilder(pick(this.currentLoadOptions, [
'videoFileToken',
'webVideo',
'hls',
'startTime'
'hls'
]))
this.player.webVideo(webVideoOptionsBuilder.getPluginOptions())

View File

@ -4,13 +4,19 @@ import videojs, { VideoJsPlayer } from 'video.js'
const TimeToolTip = videojs.getComponent('TimeTooltip') as any // FIXME: typings don't have write method
class TimeTooltip extends TimeToolTip {
private currentTimecode: string
private currentChapterTitle: string
write (timecode: string) {
const player: VideoJsPlayer = this.player()
if (player.usingPlugin('chapters')) {
const chapterTitle = player.chapters().getChapter(timeToInt(timecode))
if (chapterTitle) return super.write(chapterTitle + '\r\n' + timecode)
if (timecode === this.currentTimecode) return
this.currentTimecode = timecode
this.currentChapterTitle = player.chapters().getChapter(timeToInt(this.currentTimecode))
if (this.currentChapterTitle) return super.write(this.currentChapterTitle + '\r\n' + this.currentTimecode)
}
return super.write(timecode)

View File

@ -87,16 +87,26 @@ class P2pMediaLoaderPlugin extends Plugin {
super.dispose()
}
// ---------------------------------------------------------------------------
getCurrentLevel () {
if (!this.hlsjs) return undefined
return this.hlsjs.levels[this.hlsjs.currentLevel]
}
// ---------------------------------------------------------------------------
getLiveLatency () {
return Math.round(this.hlsjs.latency)
}
getLiveLatencyFromEdge () {
return Math.round(this.hlsjs.latency - this.hlsjs.targetLatency)
}
// ---------------------------------------------------------------------------
getHLSJS () {
return this.hlsjs
}

View File

@ -409,10 +409,12 @@ class PeerTubePlugin extends Plugin {
// Prefer canplaythrough instead of canplay because Chrome has issues with the second one
this.player.one('canplaythrough', () => {
if (this.options.startTime()) {
debugLogger('Start the video at ' + this.options.startTime())
const startTime = this.options.startTime()
this.player.currentTime(timeToInt(this.options.startTime()))
if (startTime !== null && startTime !== undefined) {
debugLogger('Start the video at ' + startTime)
this.player.currentTime(timeToInt(startTime))
}
if (this.options.stopTime()) {

View File

@ -1,6 +1,6 @@
import { PeerTubePlayerLoadOptions, WebVideoPluginOptions } from '../../types'
type ConstructorOptions = Pick<PeerTubePlayerLoadOptions, 'videoFileToken' | 'webVideo' | 'hls' | 'startTime'>
type ConstructorOptions = Pick<PeerTubePlayerLoadOptions, 'videoFileToken' | 'webVideo' | 'hls'>
export class WebVideoOptionsBuilder {
@ -14,9 +14,7 @@ export class WebVideoOptionsBuilder {
videoFiles: this.options.webVideo.videoFiles.length !== 0
? this.options.webVideo.videoFiles
: this.options?.hls.videoFiles || [],
startTime: this.options.startTime
: this.options?.hls.videoFiles || []
}
}
}

View File

@ -163,9 +163,11 @@ class StatsCard extends Component {
let progress: number
let latency: string
let latencyFromEdge: string
if (this.options_.videoIsLive) {
latency = secondsToTime(p2pMediaLoader.getLiveLatency())
latencyFromEdge = secondsToTime(p2pMediaLoader.getLiveLatencyFromEdge())
} else {
progress = this.player().bufferedPercent()
}
@ -176,6 +178,7 @@ class StatsCard extends Component {
codecs,
buffer,
latency,
latencyFromEdge,
progress
}
}
@ -261,9 +264,10 @@ class StatsCard extends Component {
buffer: string
latency?: string
latencyFromEdge?: string
colorSpace?: string
}) {
const { playerNetworkInfo, progress, colorSpace, codecs, resolution, buffer, latency } = options
const { playerNetworkInfo, progress, colorSpace, codecs, resolution, buffer, latency, latencyFromEdge } = options
const { downloadedFromServer, downloadedFromPeers } = playerNetworkInfo
const player = this.player()
@ -311,16 +315,18 @@ class StatsCard extends Component {
this.setInfoValue(this.volume, volume)
this.setInfoValue(this.codecs, codecs)
this.setInfoValue(this.color, colorSpace)
this.setInfoValue(this.transferred, totalTransferred)
this.setInfoValue(this.connection, playerNetworkInfo.averageBandwidth)
this.setInfoValue(this.network, networkActivity)
this.setInfoValue(this.transferred, totalTransferred)
this.setInfoValue(this.download, downloadBreakdown)
this.setInfoValue(this.bufferProgress, bufferProgress)
this.setInfoValue(this.bufferState, buffer)
this.setInfoValue(this.liveLatency, latency)
if (latency && latencyFromEdge) {
this.setInfoValue(this.liveLatency, player.localize('{1} (from edge: {2})', [ latency, latencyFromEdge ]))
}
}
private setInfoValue (el: InfoElement, value: string) {

View File

@ -191,7 +191,6 @@ type TheaterButtonOptions = {
type WebVideoPluginOptions = {
videoFiles: VideoFile[]
startTime: number | string
videoFileToken: () => string
}

File diff suppressed because it is too large Load Diff

View File

@ -9862,7 +9862,7 @@ The link will expire within 1 hour.</source>
<target state="new">Subscribe to the account</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="new">PLAYLISTS</target>
@ -12927,67 +12927,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="new">Enter/exit fullscreen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="new">Play/Pause the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="new">Mute/unmute the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="new">Increase the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="new">Decrease the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="new">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="new">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="new">Increase playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="new">Decrease playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="new">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="new">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="new">Toggle theater mode</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184" datatype="html">
<source>Like the video</source>
<target state="new">Like the video</target>

View File

@ -9792,7 +9792,7 @@ The link will expire within 1 hour.</source>
<target>Odebírat účet</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">PLAYLISTY</target>
@ -12912,67 +12912,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="translated">Vstup/výstup na celoobrazovkový režim</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">Přehrát / Zastavit video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="translated">Ztišit / zrušit ztišení videa</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="translated">Přeskočení na určitou část videa: 0 je 0 % a 9 je 90 %</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">Zvýšit hlasitost</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">Snížit hlasitost</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="translated">Procházení videa dopředu</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="translated">Procházení videa dozadu</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="translated">Zvýšení rychlosti přehrávání</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="translated">Snížení rychlosti přehrávání</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="translated">Přejít ve videu na předchozí snímek</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="translated">Přejít ve videu na další snímek</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="translated">Přepnutí režimu kina</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184">
<source>Like the video</source>
<target>To se mi líbí</target>

View File

@ -9228,7 +9228,7 @@ The link will expire within 1 hour.</target>
<target state="new">Subscribe to the account</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="new">PLAYLISTS</target>
@ -12072,43 +12072,43 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<trans-unit id="5856931617181450881" datatype="html">
<source>Enter/exit fullscreen</source><target state="new">Enter/exit fullscreen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit><trans-unit id="2971009377468404076" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit><trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source><target state="new">Play/Pause the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="4147087312411482964" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit><trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source><target state="new">Mute/unmute the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit><trans-unit id="4791956574676305640" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source><target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit><trans-unit id="3887762369650091344" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit><trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source><target state="new">Increase the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="1363382131573461910" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit><trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source><target state="new">Decrease the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit><trans-unit id="2541031516422557760" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit><trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source><target state="new">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit><trans-unit id="8813023402019364882" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source><target state="new">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit><trans-unit id="581757752202843950" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit><trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source><target state="new">Increase playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit><trans-unit id="5467642834854681120" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit><trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source><target state="new">Decrease playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit><trans-unit id="3860402955823859506" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit><trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source><target state="new">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit><trans-unit id="8232494782895420700" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit><trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source><target state="new">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="8223917068580581095" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit><trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source><target state="new">Toggle theater mode</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>

View File

@ -9842,7 +9842,7 @@ Hilf mit PeerTube zu übersetzen!</target>
<target>Diesen Account abonnieren</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">WIEDERGABELISTEN</target>
@ -12950,67 +12950,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="translated">Vollbildmodus aufrufen/verlassen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">Abspielen/Pausieren des Videos</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="translated">Video stummschalten/auf laut schalten</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="translated">Springe zu einem bestimmten Prozentsatz des Videos: 0 entspricht 0% und 9 entspricht 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">Erhöhen der Lautstärke</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">Verringern der Lautstärke</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="translated">Das Video vorwärts spulen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="translated">Das Video rückwärts spulen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="translated">Wiedergaberate erhöhen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="translated">Wiedergaberate verringern</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="translated">Im Video zum vorherigen Frame navigieren</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="translated">Im Video zum nächsten Frame navigieren</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="translated">Kinomodus umschalten</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184">
<source>Like the video</source>
<target>Das Video gefällt mir</target>

View File

@ -10075,7 +10075,7 @@ The link will expire within 1 hour.</target>
<target>Συνδρομή στον λογαριασμό</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="new">PLAYLISTS</target>
@ -13217,67 +13217,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="new">Enter/exit fullscreen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="new">Play/Pause the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="new">Mute/unmute the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="new">Increase the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="new">Decrease the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="new">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="new">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="new">Increase playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="new">Decrease playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="new">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="new">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="new">Toggle theater mode</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184">
<source>Like the video</source>
<target>Σας αρέσει το βίντεο</target>

View File

@ -8676,7 +8676,7 @@ The link will expire within 1 hour.</target>
<target>Subscribe to the account</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit><trans-unit id="3131904093925601441" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit><trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source><target state="new">PLAYLISTS</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">90</context></context-group></trans-unit><trans-unit id="1593265243494758679" datatype="html">
@ -11365,43 +11365,43 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<trans-unit id="5856931617181450881" datatype="html">
<source>Enter/exit fullscreen</source><target state="new">Enter/exit fullscreen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit><trans-unit id="2971009377468404076" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit><trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source><target state="new">Play/Pause the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="4147087312411482964" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit><trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source><target state="new">Mute/unmute the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit><trans-unit id="4791956574676305640" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source><target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit><trans-unit id="3887762369650091344" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit><trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source><target state="new">Increase the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="1363382131573461910" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit><trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source><target state="new">Decrease the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit><trans-unit id="2541031516422557760" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit><trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source><target state="new">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit><trans-unit id="8813023402019364882" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source><target state="new">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit><trans-unit id="581757752202843950" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit><trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source><target state="new">Increase playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit><trans-unit id="5467642834854681120" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit><trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source><target state="new">Decrease playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit><trans-unit id="3860402955823859506" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit><trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source><target state="new">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit><trans-unit id="8232494782895420700" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit><trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source><target state="new">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="8223917068580581095" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit><trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source><target state="new">Toggle theater mode</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>

View File

@ -8339,7 +8339,7 @@ The link will expire within 1 hour.</target>
<target state="final">Subscribe to the account</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit><trans-unit id="3131904093925601441" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit><trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source><target state="final">PLAYLISTS</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">90</context></context-group></trans-unit><trans-unit id="1593265243494758679" datatype="html">
@ -10995,43 +10995,43 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<trans-unit id="5856931617181450881" datatype="html">
<source>Enter/exit fullscreen</source><target state="final">Enter/exit fullscreen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit><trans-unit id="2971009377468404076" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit><trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source><target state="final">Play/Pause the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="4147087312411482964" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit><trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source><target state="final">Mute/unmute the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit><trans-unit id="4791956574676305640" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source><target state="final">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit><trans-unit id="3887762369650091344" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit><trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source><target state="final">Increase the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="1363382131573461910" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit><trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source><target state="final">Decrease the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit><trans-unit id="2541031516422557760" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit><trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source><target state="final">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit><trans-unit id="8813023402019364882" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source><target state="final">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit><trans-unit id="581757752202843950" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit><trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source><target state="final">Increase playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit><trans-unit id="5467642834854681120" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit><trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source><target state="final">Decrease playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit><trans-unit id="3860402955823859506" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit><trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source><target state="final">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit><trans-unit id="8232494782895420700" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit><trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source><target state="final">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="8223917068580581095" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit><trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source><target state="final">Toggle theater mode</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>

View File

@ -9831,7 +9831,7 @@ The link will expire within 1 hour.</source>
<target>Aboni la konton</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="new">PLAYLISTS</target>
@ -12921,67 +12921,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="new">Enter/exit fullscreen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="new">Play/Pause the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="new">Mute/unmute the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="new">Increase the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="new">Decrease the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="new">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="new">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="new">Increase playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="new">Decrease playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="new">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="new">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="new">Toggle theater mode</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184">
<source>Like the video</source>
<target>Ŝati la filmon</target>

View File

@ -9807,7 +9807,7 @@ The link will expire within 1 hour.</source>
<target>Suscribirse a la cuenta</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">LISTAS DE REPRODUCCIÓN</target>
@ -12896,67 +12896,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="translated">Entrar/salir de pantalla completa</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">Reproducir/Pausar el video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="translated">Silenciar/activar sonido del video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="translated">Saltar a un porcentaje del video: 0 es 0% y 9 es 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">Aumentar el volumen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">Disminuir el volumen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="translated">Buscar el video adelante</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="translated">Buscar el video hacia atrás</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="translated">Aumentar la tasa de reproducción</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="translated">Disminuir la velocidad de reproducción</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="translated">Navegar en el video al cuadro anterior</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="translated">Navegar en el video al siguiente cuadro</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="translated">Alternar el modo teatro</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184">
<source>Like the video</source>
<target>Colocar Me gusta a este vídeo</target>

File diff suppressed because it is too large Load Diff

View File

@ -9772,7 +9772,7 @@ The link will expire within 1 hour.</source>
<target state="translated">مشترک‌شدن حساب‌کاربری</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">لیست‌های پخش</target>
@ -12882,67 +12882,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="translated">ورود / خروج از حالت تمام صفحه</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">پخش / مکث ویدئو</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="translated">بی صدا / با صدا کردن ویدیو</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="translated">پرش به جلو به صورت درصدی : عدد 0 همان 0% و 9 همان 90% است</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">افزایش حجم صدا</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">کاهش حجم صدا</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="translated">جستجوی ویدئو به سمت جلو</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="translated">جستجوی ویدئو به سمت عقب</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="translated">افزایش سرعت پخش</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="translated">کاهش سرعت پخش</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="translated">حرکت در ویدئو به فریم قبلی</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="translated">حرکت در ویدئو به فریم بعدی</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="translated">تغییر حالت پخش</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184" datatype="html">
<source>Like the video</source>
<target state="translated">پسندیدن ویدئو</target>

View File

@ -9782,7 +9782,7 @@ The link will expire within 1 hour.</source>
<target>Tilaa käyttäjä</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">SOITTOLISTAT</target>
@ -12881,67 +12881,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="translated">Siirry tai poistu koko ruudun tilasta</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">Toista tai pysäytä video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="translated">Mykistä tai poista mykistys</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="translated">Hyppää prosenttiin videosta: 0 on 0% ja 9 on 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">Lisää äänenvoimakkuutta</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">Alenna äänenvoimakkuutta</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="translated">Kelaa videota eteenpäin</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="translated">Kelaa videota taaksepäin</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="translated">Nopeuta videontoistoa</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="translated">Hidasta videontoistoa</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="translated">Siirry aikaisempaan kehykseen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="translated">Siirry seuraavaan kehykseen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="translated">Teatteritila</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184">
<source>Like the video</source>
<target>Tykkää videosta</target>

View File

@ -9839,7 +9839,7 @@ The link will expire within 1 hour.</source>
<target>S'abonner à ce compte</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">LISTES DE LECTURE</target>
@ -12947,67 +12947,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="translated">Entrer/sortir du plein écran</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">Lecture/Pause de la vidéo</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="translated">Sourdine/reprise du son de la vidéo</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="translated">Passer à un pourcentage de la vidéo : 0 est 0% et 9 est 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">Augmenter le volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">Diminuer le volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="translated">Faire avancer la vidéo</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="translated">Faire reculer la vidéo</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="translated">Augmenter la vitesse de lecture</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="translated">Diminuer la vitesse de lecture</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="translated">Naviguer dans la vidéo jusqu'à l'image précédente</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="translated">Naviguer dans la vidéo jusqu'à l'image suivante</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="translated">Basculer le mode théâtre</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184">
<source>Like the video</source>
<target>Jaime cette vidéo</target>

View File

@ -9774,7 +9774,7 @@ The link will expire within 1 hour.</source>
<target state="translated">Fo-sgrìobh air a chunntas</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">LIOSTAICHEAN-CLUICH</target>
@ -12884,67 +12884,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="translated">Tòisich air/Fàg an làn-sgrìn</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">Cluich/Cuir na stad a video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="translated">Mùch/Dì-mhùch a video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="translated">Geàrr leum gu ceudad a video: Thèid 0 gu 0% s 9 gu 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">Cuir an àirde an fhuaim</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">Lùghdaich àirde na fuaime</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="translated">Sir air adhart sa video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="translated">Sir air ais sa video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="translated">Dèan a chluich nas luaithe</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="translated">Cuir maille air a chluich</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="translated">Seòl sa video dhan fhrèam roimhe</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="translated">Seòl sa video dhan ath-fhrèam</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="translated">Toglaich modh an taighe-chluich</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184" datatype="html">
<source>Like the video</source>
<target state="translated">Comharraich gur toigh leat a video</target>

View File

@ -3282,12 +3282,12 @@ The link will expire within 1 hour.</source>
</trans-unit>
<trans-unit id="5432070253720498105" datatype="html">
<source>Subscribe to all channels</source>
<target state="translated">Subscríbete ós canais</target>
<target state="translated">Subscríbete ás canles</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">11</context></context-group>
</trans-unit>
<trans-unit id="7542242186854344789" datatype="html">
<source>channels subscribed</source>
<target state="translated">subscrita ós canais</target>
<target state="translated">subscrita ás canles</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-subscription/subscribe-button.component.html</context><context context-type="linenumber">13</context></context-group>
</trans-unit>
<trans-unit id="8426539297729416784" datatype="html">
@ -9850,9 +9850,9 @@ The link will expire within 1 hour.</source>
<trans-unit id="1783173774503340906" datatype="html">
<source>Subscribe to the account</source>
<target state="translated">Subscribirse á conta</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">LISTAXES</target>
@ -12941,68 +12941,68 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<trans-unit id="5856931617181450881" datatype="html">
<source>Enter/exit fullscreen</source>
<target state="translated">Activar/desactivar pantalla completa</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">Activar/Pausar o vídeo</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="translated">Activar/Desactivar audio</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="translated">Ir a unha porcentaxe do vídeo: 0 é 0% e 9 é 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">Aumentar volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">Diminuír volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="translated">Avanzar o vídeo</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="translated">Retroceder no vídeo</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="translated">Aumentar taxa de reprodución</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="translated">Diminuír taxa de reprodución</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="translated">Ir ao fotograma anterior no vídeo</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="translated">Ir ao seguinte fotograma no vídeo</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="translated">Activar modo teatro</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184" datatype="html">
<source>Like the video</source>
<target state="translated">Gústame o vídeo</target>

View File

@ -6920,7 +6920,7 @@ The link will expire within 1 hour.</source>
<target state="translated">Pretplatiti se na račun</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">PLAYLISTE</target>
@ -8951,67 +8951,67 @@ The link will expire within 1 hour.</source>
<source>Enter/exit fullscreen</source>
<target state="translated">Pokreni/Prekini cjeloekranski prikaz</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">Pokreni/Zaustavi video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="translated">Isključi/Uključi zvuk videa</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="translated">Preskoči na postotak videa: 0 je 0 %, 9 je 90 %</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">Povećaj glasnoću</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">Smanji glasnoću</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="translated">Premotaj video prema naprijed</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="translated">Premotaj video prema natrag</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="translated">Povećaj brzinu reprodukcije</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="translated">Smanji brzinu reprodukcije</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="translated">Prijeđi na prethodni kadar videa</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="translated">Prijeđi na sljedeći kadar videa</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="translated">Uključi/Isključi kazališni modus</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184" datatype="html">
<source>Like the video</source>
<target state="translated">Označi video da ti se sviđa</target>

View File

@ -9824,7 +9824,7 @@ The link will expire within 1 hour.</source>
<target state="translated">Feliratkozás a fiókra</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">LEJÁTSZÁSI LISTÁK</target>
@ -12931,67 +12931,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="new">Enter/exit fullscreen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="new">Play/Pause the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="new">Mute/unmute the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="new">Increase the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="new">Decrease the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="new">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="new">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="new">Increase playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="new">Decrease playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="new">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="new">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="new">Toggle theater mode</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184" datatype="html">
<source>Like the video</source>
<target state="translated">A videó kedvelése</target>

View File

@ -10549,7 +10549,7 @@
</trans-unit>
<trans-unit id="2159130950882492111" datatype="html">
<source>Cancel</source>
<target>Batal</target>
<target state="needs-translation">Batalkan</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
<context context-type="linenumber">628</context>
@ -16444,7 +16444,7 @@
</trans-unit>
<trans-unit id="8856905278208146821" datatype="html">
<source><x id="ICU" equiv-text="{video.views, plural, =1 {1 viewer} other {{{ video.views | myNumberFormatter }} viewers}} "/> </source>
<target/>
<target state="translated"><x id="ICU" equiv-text="{video.views, plural, =1 {1 viewer} other {{{ video.views | myNumberFormatter }} viewers}} "/> </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context>
<context context-type="linenumber">7,8</context>

View File

@ -8378,7 +8378,7 @@ The link will expire within 1 hour.</source>
<target state="translated">Gerast áskrifandi að aðgangnum</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">SPILUNARLISTAR</target>
@ -10504,67 +10504,67 @@ The link will expire within 1 hour.</source>
<source>Enter/exit fullscreen</source>
<target state="translated">Fara í/Hætta í skjáfylli</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">Spila/Setja myndskeið í bið</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="translated">Þagga/Kveikja á hljóði</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="translated">Hoppa yfir á prósentu myndskeiðsins: 0 er 0% og 9 er 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">Auka hljóðstyrk</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">Minnka hljóðstyrk</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="translated">Leita áfram í myndskeiðinu</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="translated">Leita afturábak í myndskeiðinu</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="translated">Auka afspilunarhraða</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="translated">Minnka afspilunarhraða</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="translated">Fara á fyrri ramma í myndskeiðinu</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="translated">Fara á næsta ramma í myndskeiðinu</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="translated">Víxla bíóham af/á</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="7627544798203088407" datatype="html">
<source>Discover</source>
<target state="translated">Uppgötva</target>

View File

@ -9815,7 +9815,7 @@ The link will expire within 1 hour.</source>
<target>Iscriversi all'account</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="new">PLAYLISTS</target>
@ -12891,67 +12891,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="new">Enter/exit fullscreen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="new">Play/Pause the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="new">Mute/unmute the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="new">Increase the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="new">Decrease the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="new">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="new">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="new">Increase playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="new">Decrease playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="new">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="new">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="new">Toggle theater mode</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184">
<source>Like the video</source>
<target>Mi piace</target>

View File

@ -9814,9 +9814,9 @@ The link will expire within 1 hour.</source>
<trans-unit id="1783173774503340906">
<source>Subscribe to the account</source>
<target state="translated">アカウントを購読</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">プレイリスト</target>
@ -12939,68 +12939,68 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<trans-unit id="5856931617181450881" datatype="html">
<source>Enter/exit fullscreen</source>
<target state="translated">全画面モードを切り替える</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">動画の再生・停止</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="translated">動画のミュート・ミュート解除</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="translated">パーセンテージを指定してスキップします。0 は 0%、9 は 90% のことを指します</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">音量を上げる</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">音量を下げる</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="translated">動画を早送りする</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="translated">動画を巻き戻す</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="translated">再生速度を速くする</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="translated">再生速度を遅くする</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="translated">動画の前のフレームへ移動する</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="translated">動画の次のフレームへ移動する</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="translated">シアターモードにする</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184">
<source>Like the video</source>
<target>動画を高評価</target>

View File

@ -8728,7 +8728,7 @@ The link will expire within 1 hour.</target>
<target>jersi pe'a le pilno</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit><trans-unit id="3131904093925601441" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit><trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source><target state="new">PLAYLISTS</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">90</context></context-group></trans-unit><trans-unit id="1593265243494758679" datatype="html">
@ -11421,43 +11421,43 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<trans-unit id="5856931617181450881" datatype="html">
<source>Enter/exit fullscreen</source><target state="new">Enter/exit fullscreen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit><trans-unit id="2971009377468404076" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit><trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source><target state="new">Play/Pause the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="4147087312411482964" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit><trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source><target state="new">Mute/unmute the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit><trans-unit id="4791956574676305640" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source><target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit><trans-unit id="3887762369650091344" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit><trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source><target state="new">Increase the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="1363382131573461910" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit><trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source><target state="new">Decrease the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit><trans-unit id="2541031516422557760" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit><trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source><target state="new">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit><trans-unit id="8813023402019364882" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source><target state="new">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit><trans-unit id="581757752202843950" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit><trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source><target state="new">Increase playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit><trans-unit id="5467642834854681120" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit><trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source><target state="new">Decrease playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit><trans-unit id="3860402955823859506" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit><trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source><target state="new">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit><trans-unit id="8232494782895420700" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit><trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source><target state="new">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="8223917068580581095" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit><trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source><target state="new">Toggle theater mode</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>

View File

@ -9190,7 +9190,7 @@ The link will expire within 1 hour.</source>
<target state="translated">Multeɣ ɣer umiḍan</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">TIBDARIN N TΓURI</target>
@ -12083,67 +12083,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="new">Enter/exit fullscreen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="new">Play/Pause the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="new">Mute/unmute the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="new">Increase the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="new">Decrease the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="new">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="new">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="new">Increase playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="new">Decrease playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="new">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="new">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="new">Toggle theater mode</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184" datatype="html">
<source>Like the video</source>
<target state="translated">Teεǧeb-iyi tavidyut</target>

View File

@ -10153,7 +10153,7 @@ The link will expire within 1 hour.</target>
<target state="new">Subscribe to the account</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="new">PLAYLISTS</target>
@ -13296,67 +13296,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="new">Enter/exit fullscreen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="new">Play/Pause the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="new">Mute/unmute the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="new">Increase the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="new">Decrease the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="new">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="new">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="new">Increase playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="new">Decrease playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="new">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="new">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="new">Toggle theater mode</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184" datatype="html">
<source>Like the video</source>
<target state="new">Like the video</target>

View File

@ -8660,7 +8660,7 @@ The link will expire within 1 hour.</target>
<target state="new">Subscribe to the account</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit><trans-unit id="3131904093925601441" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit><trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source><target state="new">PLAYLISTS</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">90</context></context-group></trans-unit><trans-unit id="1593265243494758679" datatype="html">
@ -11349,43 +11349,43 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<trans-unit id="5856931617181450881" datatype="html">
<source>Enter/exit fullscreen</source><target state="new">Enter/exit fullscreen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit><trans-unit id="2971009377468404076" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit><trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source><target state="new">Play/Pause the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="4147087312411482964" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit><trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source><target state="new">Mute/unmute the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit><trans-unit id="4791956574676305640" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source><target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit><trans-unit id="3887762369650091344" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit><trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source><target state="new">Increase the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="1363382131573461910" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit><trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source><target state="new">Decrease the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit><trans-unit id="2541031516422557760" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit><trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source><target state="new">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit><trans-unit id="8813023402019364882" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source><target state="new">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit><trans-unit id="581757752202843950" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit><trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source><target state="new">Increase playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit><trans-unit id="5467642834854681120" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit><trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source><target state="new">Decrease playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit><trans-unit id="3860402955823859506" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit><trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source><target state="new">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit><trans-unit id="8232494782895420700" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit><trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source><target state="new">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="8223917068580581095" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit><trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source><target state="new">Toggle theater mode</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>

View File

@ -9750,7 +9750,7 @@ The link will expire within 1 hour.</source>
<target state="translated">Abonner på kontoen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">SPILLELISTER</target>
@ -12877,67 +12877,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="new">Enter/exit fullscreen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">Spill av/pause videoen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="translated">Slå av/på lyden for videoen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">Øk volumet</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">Reduser volumet</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="new">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="new">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="translated">Øk avspillingshastigheten</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="translated">Reduser avspillingshastigheten</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="new">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="new">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="translated">Veksle kinomodus</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184" datatype="html">
<source>Like the video</source>
<target state="new">Like the video</target>

View File

@ -9822,7 +9822,7 @@ Je kan nu al informatie toevoegen over deze video.
<target>Abonneren op account</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">AFSPEELLIJSTEN</target>
@ -12900,67 +12900,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="translated">Volledig scherm openen/verlaten</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">De video afspelen/pauzeren</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="translated">Dempen/uitzetten van de video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="translated">Ga naar een percentage van de video: 0 is 0% en 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">Verhoog het volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">Verminder het volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="translated">Spoel de video vooruit</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="translated">Spoel de video terug</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="translated">Afspeelsnelheid verhogen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="translated">Verminder afspeelsnelheid</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="translated">Navigeer in de video naar het vorige frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="translated">Navigeer in de video naar het volgende frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="translated">Theatermodus aan- of uitzetten</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184">
<source>Like the video</source>
<target state="translated">De video leuk vinden</target>

View File

@ -6087,7 +6087,7 @@ The link will expire within 1 hour.</source>
<source>Subscribe to the account</source>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target>SPELELISTER</target>
@ -7761,67 +7761,67 @@ The link will expire within 1 hour.</source>
<source>Enter/exit fullscreen</source>
<target state="new">Enter/exit fullscreen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="new">Play/Pause the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="new">Mute/unmute the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="new">Increase the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="new">Decrease the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="new">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="new">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="new">Increase playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="new">Decrease playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="new">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="new">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="new">Toggle theater mode</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184" datatype="html">
<source>Like the video</source>

View File

@ -9978,7 +9978,7 @@ The link will expire within 1 hour.</target>
<target>Sabonar al compte</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="new">PLAYLISTS</target>
@ -13043,67 +13043,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="new">Enter/exit fullscreen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="new">Play/Pause the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="new">Mute/unmute the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="new">Increase the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="new">Decrease the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="new">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="new">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="new">Increase playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="new">Decrease playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="new">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="new">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="new">Toggle theater mode</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184">
<source>Like the video</source>
<target>Aimar la vidèo</target>

View File

@ -9725,7 +9725,7 @@ The link will expire within 1 hour.</source>
<target state="translated">Subskrybuj to konto</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">PLAYLISTY</target>
@ -12800,67 +12800,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="new">Enter/exit fullscreen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">Odtwarzanie/Pauza filmu</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="new">Mute/unmute the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">Zwiększanie głośności</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">Zmniejszanie głośności</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="new">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="new">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="new">Increase playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="new">Decrease playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="new">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="new">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="new">Toggle theater mode</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184" datatype="html">
<source>Like the video</source>
<target state="translated">Zaznacz "Lubię to"</target>

View File

@ -10017,7 +10017,7 @@ The link will expire within 1 hour.</source>
<target>Inscreva-se na conta</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="new">PLAYLISTS</target>
@ -13150,67 +13150,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="new">Enter/exit fullscreen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="new">Play/Pause the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="new">Mute/unmute the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">Aumentar o volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">Diminuir o volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="new">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="new">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="new">Increase playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="new">Decrease playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="new">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="new">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="new">Toggle theater mode</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184">
<source>Like the video</source>
<target>Gostar do vídeo</target>

View File

@ -9347,7 +9347,7 @@ The link will expire within 1 hour.</source>
<target state="new">Subscribe to the account</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="new">PLAYLISTS</target>
@ -12233,67 +12233,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="new">Enter/exit fullscreen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="new">Play/Pause the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="new">Mute/unmute the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="new">Increase the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="new">Decrease the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="new">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="new">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="new">Increase playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="new">Decrease playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="new">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="new">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="new">Toggle theater mode</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184">
<source>Like the video</source>
<target state="new">Like the video</target>

View File

@ -529,7 +529,7 @@
</trans-unit>
<trans-unit id="7539427273132299890">
<source>Unlisted</source>
<target>Скрытый</target>
<target state="translated">Скрытое</target>
<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">7</context></context-group>
</trans-unit>
@ -3211,7 +3211,7 @@ The link will expire within 1 hour.</source>
</trans-unit>
<trans-unit id="8928816882866356838">
<source>Public</source>
<target>Общедоступный</target>
<target state="translated">Общедоступное</target>
<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>
<trans-unit id="4416005356063364306" datatype="html">
@ -3419,7 +3419,7 @@ The link will expire within 1 hour.</source>
</trans-unit>
<trans-unit id="4262297989675590582" datatype="html">
<source>This live has not started yet.</source>
<target state="translated">Трансляция еще не началась.</target>
<target state="translated">Трансляция ещё не началась.</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/shared/information/video-alert.component.html</context><context context-type="linenumber">29</context></context-group>
</trans-unit>
<trans-unit id="4926204350710628499" datatype="html">
@ -7789,7 +7789,7 @@ The link will expire within 1 hour.</source>
</trans-unit>
<trans-unit id="166448092104563965" datatype="html">
<source>Password protected</source>
<target state="translated">Защищен паролем</target>
<target state="translated">Защищено паролем</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-miniature.component.html</context><context context-type="linenumber">9</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">25</context></context-group>
</trans-unit>
@ -9868,9 +9868,9 @@ The link will expire within 1 hour.</source>
<trans-unit id="1783173774503340906">
<source>Subscribe to the account</source>
<target>Подписаться на аккаунт</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">ПЛЕЙЛИСТЫ</target>
@ -12969,68 +12969,68 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<trans-unit id="5856931617181450881" datatype="html">
<source>Enter/exit fullscreen</source>
<target state="translated">Вход/выход из полноэкранного режима</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">Воспроизвести/Приостановить видео</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="translated">Отключить/включить звук видео</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="translated">Перейти к проценту видео: 0 0%, 9 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">Увеличить громкость</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">Уменьшить громкость</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="translated">Перемотать видео вперед</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="translated">Перемотать видео назад</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="translated">Увеличить скорость воспроизведения</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="translated">Уменьшить скорость воспроизведения</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="translated">Перейти к предыдущему кадру</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="translated">Перейти к следующему кадру</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="translated">Переключить режим театра</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184">
<source>Like the video</source>
<target>Мне понравилось</target>

View File

@ -9808,9 +9808,9 @@ The link will expire within 1 hour.</source>
<trans-unit id="1783173774503340906" datatype="html">
<source>Subscribe to the account</source>
<target state="translated">Odoberať účet</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">ZOZNAMY</target>
@ -12927,68 +12927,68 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<trans-unit id="5856931617181450881" datatype="html">
<source>Enter/exit fullscreen</source>
<target state="translated">Zap/Vyp celoobrazovkový režim</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">Spustí/Zastaví video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="translated">Stíši/zapne zvuk</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="translated">Preskočí na percento videa: 0 je 0% a 9 je 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">Zvýši hlasitosť</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">Zníži hlasitosť</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="translated">Prejsť dopredu vo videu</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="translated">Prejsť dozadu vo videu</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="translated">Zvýšiť rýchlosť prehrávania</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="translated">Znížiť rýchlosť prehrávania</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="translated">Prejsť vo videu na predošlý snímok</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="translated">Prejsť vo videu na ďalší snímok</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="translated">Prepnúť režim kina</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184" datatype="html">
<source>Like the video</source>
<target state="translated">Video sa mi páči</target>

View File

@ -9719,7 +9719,7 @@ The link will expire within 1 hour.</target>
<target state="new">Subscribe to the account</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="new">PLAYLISTS</target>
@ -12731,67 +12731,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="new">Enter/exit fullscreen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="new">Play/Pause the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="new">Mute/unmute the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="new">Increase the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="new">Decrease the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="new">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="new">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="new">Increase playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="new">Decrease playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="new">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="new">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="new">Toggle theater mode</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184" datatype="html">
<source>Like the video</source>
<target state="new">Like the video</target>

View File

@ -9743,7 +9743,7 @@ The link will expire within 1 hour.</source>
<target>Prenumerera på kontot</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">SPELLISTOR</target>
@ -12796,67 +12796,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="translated">Öppna/stäng fullskärm</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">Spela/Pausa videon</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="translated">Slå av eller på videons ljud</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="needs-translation">Hoppa till en procentandel av videon: 0 är 0% och 9 är 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">Höj volymen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">Sänk volymen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="translated">Hoppa framåt i videon</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="translated">Hoppa bakåt i videon</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="translated">Öka uppspelningshastigheten</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="translated">Minska uppspelningshastigheten</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="translated">Gå till videons föregående bildruta</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="translated">Gå till videons nästa bildruta</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="translated">Växla teaterläge</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184">
<source>Like the video</source>
<target>Gilla videon</target>

View File

@ -8730,7 +8730,7 @@ The link will expire within 1 hour.</target>
<target state="new">Subscribe to the account</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit><trans-unit id="3131904093925601441" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit><trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source><target state="new">PLAYLISTS</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">90</context></context-group></trans-unit><trans-unit id="1593265243494758679" datatype="html">
@ -11423,43 +11423,43 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<trans-unit id="5856931617181450881" datatype="html">
<source>Enter/exit fullscreen</source><target state="new">Enter/exit fullscreen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit><trans-unit id="2971009377468404076" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit><trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source><target state="new">Play/Pause the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit><trans-unit id="4147087312411482964" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit><trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source><target state="new">Mute/unmute the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit><trans-unit id="4791956574676305640" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source><target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit><trans-unit id="3887762369650091344" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit><trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source><target state="new">Increase the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit><trans-unit id="1363382131573461910" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit><trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source><target state="new">Decrease the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit><trans-unit id="2541031516422557760" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit><trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source><target state="new">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit><trans-unit id="8813023402019364882" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit><trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source><target state="new">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit><trans-unit id="581757752202843950" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit><trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source><target state="new">Increase playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit><trans-unit id="5467642834854681120" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit><trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source><target state="new">Decrease playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit><trans-unit id="3860402955823859506" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit><trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source><target state="new">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit><trans-unit id="8232494782895420700" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit><trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source><target state="new">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit><trans-unit id="8223917068580581095" datatype="html">
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit><trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source><target state="new">Toggle theater mode</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>

View File

@ -9965,7 +9965,7 @@ The link will expire within 1 hour.</source>
<target state="translated">ติดตามบัญชี</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">เพลย์ลิสต์</target>
@ -13069,67 +13069,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="translated">เข้าหรือออกจากโหมดเต็มหน้าจอ</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">เล่นหรือหยุดพักวิดีโอ</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="translated">ปิดหรือเปิดเสียงวิดีโอ</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">เพิ่มระดับเสียง</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">ลดระดับเสียง</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="new">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="new">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="translated">เพิ่มความเร็วการเล่น</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="translated">ลดความเร็วการเล่น</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="new">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="new">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="translated">เปิด-ปิดโหมดโรงภาพยนตร์</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184" datatype="html">
<source>Like the video</source>
<target state="translated">ชอบวิดีโอ</target>

View File

@ -7383,7 +7383,7 @@ The link will expire within 1 hour.</source>
<target>mi wile lukin e sitelen sin tan lipu ni</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target>KULUPU SITELEN</target>
@ -9409,67 +9409,67 @@ The link will expire within 1 hour.</source>
<source>Enter/exit fullscreen</source>
<target>o pana e sitelen lon ale/lili pi ilo mi</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target>o open/pini e tawa</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target>o open/pini e kalama</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target>o tawa kipisi sitelen. 0 la mi tawa open. 9 la mi tawa kipisi nanpa 9 pi kipisi 10</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target>o suli e kalama</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target>o lili e kalama</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target>o tawa tenpo kama</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target>o tawa tenpo pini</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target>o suli e wawa tawa</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target>o lili e wawa tawa</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target>o tawa sitelen pini pi tawa ala</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target>o tawa sitelen kama pi tawa ala</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target>o suli e sitelen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="7627544798203088407" datatype="html">
<source>Discover</source>
<target>kulupu</target>

View File

@ -9989,7 +9989,7 @@ The link will expire within 1 hour.</source>
<target state="translated">Hesaba abone olundu</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="new">PLAYLISTS</target>
@ -13105,67 +13105,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="new">Enter/exit fullscreen</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="new">Play/Pause the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="new">Mute/unmute the video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="new">Skip to a percentage of the video: 0 is 0% and 9 is 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="new">Increase the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="new">Decrease the volume</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="new">Seek the video forward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="new">Seek the video backward</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="new">Increase playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="new">Decrease playback rate</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="new">Navigate in the video to the previous frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="new">Navigate in the video to the next frame</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="new">Toggle theater mode</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184" datatype="html">
<source>Like the video</source>
<target state="translated">Videoyu beğen</target>

View File

@ -9838,9 +9838,9 @@ The link will expire within 1 hour.</source>
<trans-unit id="1783173774503340906" datatype="html">
<source>Subscribe to the account</source>
<target state="translated">Підписатися на обліковий запис</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">ДОБІРКИ</target>
@ -12929,68 +12929,68 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<trans-unit id="5856931617181450881" datatype="html">
<source>Enter/exit fullscreen</source>
<target state="translated">Вхід/вихід у повноекранний режим</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">Відтворити/призупинити відео</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="translated">Вимкнути/увімкнути звук відео</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="translated">Перейти до відсотка відео: 0 — це 0%, а 9 — це 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">Підвищити гучність</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">Понизити гучність</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="translated">Перемотати відео вперед</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="translated">Перемотати відео назад</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="translated">Підвищити швидкість відтворення</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="translated">Знизити швидкість відтворення</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="translated">Перехід до попереднього кадру відео</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="translated">Перехід до наступного кадру відео</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="translated">Перемкнути режим театру</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184" datatype="html">
<source>Like the video</source>
<target state="translated">Вподобати відео</target>

View File

@ -9822,9 +9822,9 @@ The link will expire within 1 hour.</source>
<trans-unit id="1783173774503340906" datatype="html">
<source>Subscribe to the account</source>
<target state="translated">Theo dõi tài khoản này</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">DANH SÁCH PHÁT</target>
@ -12949,68 +12949,68 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<trans-unit id="5856931617181450881" datatype="html">
<source>Enter/exit fullscreen</source>
<target state="translated">Vào/thoát toàn màn hình</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">Phát/Ngừng video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="translated">Ẩn/Bỏ ẩn video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="translated">Tua nhanh thời lượng video: 0 là 0% và 9 là 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">Tăng âm lượng</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">Giảm âm lượng</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="translated">Tua tới video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="translated">Tua lùi video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="translated">Tăng tốc độ video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="translated">Giảm tốc độ video</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="translated">Điều hướng video tới khung trước đó</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="translated">Điều hướng video tới khung kế tiếp</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="translated">Chế độ rạp chiếu</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184">
<source>Like the video</source>
<target>Thích video</target>

View File

@ -10553,7 +10553,7 @@ The link will expire within 1 hour.</source>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
<context context-type="linenumber">907</context>
<context context-type="linenumber">909</context>
</context-group>
</trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
@ -12922,91 +12922,91 @@ The link will expire within 1 hour.</source>
<source>Enter/exit fullscreen</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
<context context-type="linenumber">870</context>
<context context-type="linenumber">872</context>
</context-group>
</trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
<context context-type="linenumber">871</context>
<context context-type="linenumber">873</context>
</context-group>
</trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
<context context-type="linenumber">872</context>
<context context-type="linenumber">874</context>
</context-group>
</trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
<context context-type="linenumber">874</context>
<context context-type="linenumber">876</context>
</context-group>
</trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
<context context-type="linenumber">875</context>
<context context-type="linenumber">877</context>
</context-group>
</trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
<context context-type="linenumber">880</context>
<context context-type="linenumber">882</context>
</context-group>
</trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
<context context-type="linenumber">887</context>
<context context-type="linenumber">889</context>
</context-group>
</trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
<context context-type="linenumber">889</context>
<context context-type="linenumber">891</context>
</context-group>
</trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
<context context-type="linenumber">890</context>
<context context-type="linenumber">892</context>
</context-group>
</trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
<context context-type="linenumber">892</context>
<context context-type="linenumber">894</context>
</context-group>
</trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
<context context-type="linenumber">893</context>
<context context-type="linenumber">895</context>
</context-group>
</trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
<context context-type="linenumber">895</context>
<context context-type="linenumber">897</context>
</context-group>
</trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
<context context-type="linenumber">896</context>
<context context-type="linenumber">898</context>
</context-group>
</trans-unit>
<trans-unit id="7627544798203088407" datatype="html">

View File

@ -9795,7 +9795,7 @@ The link will expire within 1 hour.</source>
<target>订阅此帐户</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">播放列表</target>
@ -12920,67 +12920,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<source>Enter/exit fullscreen</source>
<target state="translated">进入/退出全屏</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">播放/暂停视频</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="translated">静音/取消静音视频</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="translated">跳到视频的百分比处0 为 0%9 为 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">增加音量</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">降低音量</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="translated">快进视频</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="translated">快退视频</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="translated">提高播放速度</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="translated">降低播放速度</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="translated">转到视频的上一帧</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="translated">转到视频的下一帧</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="translated">切换影院模式</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group></trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184">
<source>Like the video</source>
<target state="translated">喜欢此视频</target>

View File

@ -4993,7 +4993,7 @@ The link will expire within 1 hour.</source>
</trans-unit>
<trans-unit id="5862227717871131052" datatype="html">
<source>Prefer author display name in video miniature</source>
<target state="translated">偏好影片縮中的作者顯示名稱</target>
<target state="translated">偏好影片縮中的作者顯示名稱</target>
<context-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>
<trans-unit id="5444889468197427724" datatype="html">
@ -5325,7 +5325,7 @@ The link will expire within 1 hour.</source>
</trans-unit>
<trans-unit id="1206277798664538171" datatype="html">
<source>Signup requires approval by moderators</source>
<target state="translated">註冊需要調解員核准</target>
<target state="translated">註冊需要審查員核准</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/config/edit-custom-config/edit-basic-configuration.component.html</context><context context-type="linenumber">174</context></context-group>
</trans-unit>
<trans-unit id="1718269478813020014">
@ -9868,9 +9868,9 @@ The link will expire within 1 hour.</source>
<trans-unit id="1783173774503340906">
<source>Subscribe to the account</source>
<target>訂閱帳號</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">907</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-channels/video-channels.component.ts</context><context context-type="linenumber">84</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">909</context></context-group></trans-unit>
<trans-unit id="3131904093925601441" datatype="html">
<source>PLAYLISTS</source>
<target state="translated">播放清單</target>
@ -12971,68 +12971,68 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
<trans-unit id="5856931617181450881" datatype="html">
<source>Enter/exit fullscreen</source>
<target state="translated">進入/離開全螢幕</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">870</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group></trans-unit>
<trans-unit id="2971009377468404076" datatype="html">
<source>Play/Pause the video</source>
<target state="translated">播放/暫停影片</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">871</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">873</context></context-group></trans-unit>
<trans-unit id="4147087312411482964" datatype="html">
<source>Mute/unmute the video</source>
<target state="translated">靜音/取消靜音影片</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">872</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group></trans-unit>
<trans-unit id="4791956574676305640" datatype="html">
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
<target state="translated">跳至影片的百分比0 為 0%9 為 90%</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">887</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group></trans-unit>
<trans-unit id="3887762369650091344" datatype="html">
<source>Increase the volume</source>
<target state="translated">增加音量</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">874</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">876</context></context-group></trans-unit>
<trans-unit id="1363382131573461910" datatype="html">
<source>Decrease the volume</source>
<target state="translated">降低音量</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">875</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">877</context></context-group></trans-unit>
<trans-unit id="2541031516422557760" datatype="html">
<source>Seek the video forward</source>
<target state="translated">向前快轉</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">889</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">891</context></context-group></trans-unit>
<trans-unit id="8813023402019364882" datatype="html">
<source>Seek the video backward</source>
<target state="translated">向後快轉</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">890</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group></trans-unit>
<trans-unit id="581757752202843950" datatype="html">
<source>Increase playback rate</source>
<target state="translated">提高播放速度</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">892</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">894</context></context-group></trans-unit>
<trans-unit id="5467642834854681120" datatype="html">
<source>Decrease playback rate</source>
<target state="translated">降低播放速度</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">893</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group></trans-unit>
<trans-unit id="3860402955823859506" datatype="html">
<source>Navigate in the video to the previous frame</source>
<target state="translated">在影片中跳至上一個畫面</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">895</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">897</context></context-group></trans-unit>
<trans-unit id="8232494782895420700" datatype="html">
<source>Navigate in the video to the next frame</source>
<target state="translated">在影片中跳至下一個畫面</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">896</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">898</context></context-group></trans-unit>
<trans-unit id="8223917068580581095" datatype="html">
<source>Toggle theater mode</source>
<target state="translated">切換劇院模式</target>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">880</context></context-group>
</trans-unit>
<context-group purpose="location"><context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context><context context-type="linenumber">882</context></context-group></trans-unit>
<trans-unit id="8025996572234182184">
<source>Like the video</source>
<target>喜歡此影片</target>

View File

@ -56,6 +56,7 @@
"Cancel": "إلغاء",
"Up Next": "Up Next",
"Autoplay is suspended": "التشغيل التلقائي معلق",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "مشغل الصوت",
"Video Player": "مشغل الفيديو",
"Play": "شغل",

View File

@ -56,6 +56,7 @@
"Cancel": "Cancel",
"Up Next": "Up Next",
"Autoplay is suspended": "Autoplay is suspended",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Reproductor d'àudio",
"Video Player": "Reproductor de vídeo",
"Play": "Reproduir",

View File

@ -56,6 +56,7 @@
"Cancel": "Cancel",
"Up Next": "Up Next",
"Autoplay is suspended": "Autoplay is suspended",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Hudební přehrávač",
"Video Player": "Videopřehrávač",
"Play": "Přehrát",

View File

@ -56,6 +56,7 @@
"Cancel": "Abbrechen",
"Up Next": "Up Next",
"Autoplay is suspended": "Autoplay ist unterbrochen",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Audio-Player",
"Video Player": "Video-Player",
"Play": "Wiedergeben",

View File

@ -56,6 +56,7 @@
"Cancel": "Ακύρωση",
"Up Next": "Up Next",
"Autoplay is suspended": "Η αυτόματη αναπαραγωγή έχει ανασταλεί",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Αναπαραγωγή Ήχου",
"Video Player": "Αναπαραγωγή Βίντεο",
"Play": "Αναπαραγωγή",

View File

@ -56,6 +56,7 @@
"Cancel": "Cancel",
"Up Next": "Up Next",
"Autoplay is suspended": "Autoplay is suspended",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Audio Player",
"Video Player": "Video Player",
"Play": "Play",

View File

@ -56,6 +56,7 @@
"Cancel": "Cancel",
"Up Next": "Up Next",
"Autoplay is suspended": "Autoplay is suspended",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Sonludilo",
"Video Player": "Filmludilo",
"Play": "Ludi",

View File

@ -56,6 +56,7 @@
"Cancel": "Cancel",
"Up Next": "Up Next",
"Autoplay is suspended": "Autoplay is suspended",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Reproductor de audio",
"Video Player": "Reproductor de vídeo",
"Play": "Reproducir",

View File

@ -56,6 +56,7 @@
"Cancel": "Utzi",
"Up Next": "Up Next",
"Autoplay is suspended": "Erreprodukzio automatikoa desgaituta dago",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Audio erreproduzigailua",
"Video Player": "Bideo erreproduzigailua",
"Play": "Erreproduzitu",

View File

@ -56,6 +56,7 @@
"Cancel": "Cancel",
"Up Next": "Up Next",
"Autoplay is suspended": "Autoplay is suspended",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "پخش‌کننده‌ی صدا",
"Video Player": "پخش‌کننده‌ی ویدئو",
"Play": "پخش",

View File

@ -56,6 +56,7 @@
"Cancel": "Peruuta",
"Up Next": "Seuraavaksi",
"Autoplay is suspended": "Autoplay keskeytetty",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Audiosoitin",
"Video Player": "Videosoitin",
"Play": "Toista",

View File

@ -56,6 +56,7 @@
"Cancel": "Cancel",
"Up Next": "Up Next",
"Autoplay is suspended": "Autoplay is suspended",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Lecteur audio",
"Video Player": "Lecteur vidéo",
"Play": "Lecture",

View File

@ -56,6 +56,7 @@
"Cancel": "Sguir dheth",
"Up Next": "Up Next",
"Autoplay is suspended": "Chaidh a chluiche fhèin-obrachail a chur à rèim",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Cluicheadair fuaime",
"Video Player": "Cluicheadair video",
"Play": "Cluich",

View File

@ -56,6 +56,7 @@
"Cancel": "Cancel",
"Up Next": "Up Next",
"Autoplay is suspended": "Autoplay is suspended",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Reprodutor de audio",
"Video Player": "Reprodutor de vídeo",
"Play": "Reproducir",

View File

@ -56,6 +56,7 @@
"Cancel": "Odustani",
"Up Next": "Sljedeći",
"Autoplay is suspended": "Automatska reprodukcija je obustavljena",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Audio player",
"Video Player": "Video player",
"Play": "Pokreni",

View File

@ -56,6 +56,7 @@
"Cancel": "Cancel",
"Up Next": "Up Next",
"Autoplay is suspended": "Autoplay is suspended",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Hanglejátszó",
"Video Player": "Videólejátszó",
"Play": "Lejátszás",

View File

@ -26,7 +26,7 @@
"Current Time": "Waktu Saat Ini",
"Duration": "Durasi",
"Remaining Time": "Waktu yang Tersisa",
"Stream Type": "Tipe Pemutaran",
"Stream Type": "Tipe Pemutar",
"LIVE": "LANGSUNG",
"Loaded": "Dimuat",
"Progress": "Progres",
@ -100,5 +100,5 @@
"Caption Settings Dialog": "Dialog Pengaturan Keterangan",
"Beginning of dialog window. Escape will cancel and close the window.": "Awal bilah. Escape akan membatalkan dan menutup jendela.",
"End of dialog window.": "Akhir bilah.",
"{1} is loading.": "{1} sedang dimuat."
"{1} is loading.": "{1} sedang loading"
}

View File

@ -56,6 +56,7 @@
"Cancel": "Cancel",
"Up Next": "Up Next",
"Autoplay is suspended": "Autoplay is suspended",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Tónlistarspilari",
"Video Player": "Myndbandsspilari",
"Play": "Afspilun",

View File

@ -56,6 +56,7 @@
"Cancel": "Cancel",
"Up Next": "Up Next",
"Autoplay is suspended": "Autoplay is suspended",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Riproduttore Audio",
"Video Player": "Riproduttore Video",
"Play": "Riproduci",

View File

@ -56,6 +56,7 @@
"Cancel": "キャンセル",
"Up Next": "Up Next",
"Autoplay is suspended": "自動再生は停止中です",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "音楽プレーヤー",
"Video Player": "動画プレーヤー",
"Play": "再生",

View File

@ -56,6 +56,7 @@
"Cancel": "Cancel",
"Up Next": "Up Next",
"Autoplay is suspended": "Autoplay is suspended",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Imeɣri n imesli",
"Video Player": "Imeɣri n uvidyu",
"Play": "Urar",

View File

@ -56,6 +56,7 @@
"Cancel": "Cancel",
"Up Next": "Up Next",
"Autoplay is suspended": "Autoplay is suspended",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Lydspiller",
"Video Player": "Videospiller",
"Play": "Spill av",

View File

@ -56,6 +56,7 @@
"Cancel": "Cancel",
"Up Next": "Up Next",
"Autoplay is suspended": "Autoplay is suspended",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Audiospeler",
"Video Player": "Videospeler",
"Play": "Afspelen",

View File

@ -56,6 +56,7 @@
"Cancel": "Cancel",
"Up Next": "Up Next",
"Autoplay is suspended": "Autoplay is suspended",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Lydspelar",
"Video Player": "Videospelar",
"Play": "Spel av",

View File

@ -56,6 +56,7 @@
"Cancel": "Cancel",
"Up Next": "Up Next",
"Autoplay is suspended": "Autoplay is suspended",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Lector àudio",
"Video Player": "Lector vidèo",
"Play": "Lectura",

View File

@ -56,6 +56,7 @@
"Cancel": "Cancel",
"Up Next": "Up Next",
"Autoplay is suspended": "Autoplay is suspended",
"{1} (from edge: {2})": "{1} (from edge: {2})",
"Audio Player": "Odtwarzacz audio",
"Video Player": "Odtwarzacz wideo",
"Play": "Odtwórz",

Some files were not shown because too many files have changed in this diff Show More