Merge branch 'Chocobozzz:develop' into feature/Remember-user-table-pagination-in-admin
This commit is contained in:
commit
5373280b64
|
@ -87,7 +87,7 @@ export class LoginPage {
|
||||||
await logout.click()
|
await logout.click()
|
||||||
|
|
||||||
await browser.waitUntil(() => {
|
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())
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -128,7 +128,8 @@ export class MyAccountPage {
|
||||||
await selectCustomSelect('privacy', privacy)
|
await selectCustomSelect('privacy', privacy)
|
||||||
|
|
||||||
const submit = await $('form input[type=submit]')
|
const submit = await $('form input[type=submit]')
|
||||||
submit.waitForClickable()
|
await submit.waitForClickable()
|
||||||
|
await submit.scrollIntoView()
|
||||||
await submit.click()
|
await submit.click()
|
||||||
|
|
||||||
return browser.waitUntil(async () => {
|
return browser.waitUntil(async () => {
|
||||||
|
|
|
@ -40,7 +40,7 @@ export class PlayerPage {
|
||||||
|
|
||||||
await browser.waitUntil(async () => {
|
await browser.waitUntil(async () => {
|
||||||
return (await this.getWatchVideoPlayerCurrentTime()) >= waitUntilSec
|
return (await this.getWatchVideoPlayerCurrentTime()) >= waitUntilSec
|
||||||
})
|
}, { timeout: waitUntilSec * 2 * 1000 })
|
||||||
|
|
||||||
// Pause video
|
// Pause video
|
||||||
await $('div.video-js').click()
|
await $('div.video-js').click()
|
||||||
|
|
|
@ -2,7 +2,7 @@ export class VideoSearchPage {
|
||||||
|
|
||||||
async search (search: string) {
|
async search (search: string) {
|
||||||
await $('#search-video').setValue(search)
|
await $('#search-video').setValue(search)
|
||||||
await $('my-header .icon-search').click()
|
await $('.search-button').click()
|
||||||
|
|
||||||
await browser.waitUntil(() => {
|
await browser.waitUntil(() => {
|
||||||
return $('my-video-miniature').isDisplayed()
|
return $('my-video-miniature').isDisplayed()
|
||||||
|
|
|
@ -68,6 +68,7 @@ export class VideoUploadPage {
|
||||||
selectCustomSelect('privacy', 'Password protected')
|
selectCustomSelect('privacy', 'Password protected')
|
||||||
|
|
||||||
const videoPasswordInput = $('input#videoPassword')
|
const videoPasswordInput = $('input#videoPassword')
|
||||||
|
await videoPasswordInput.waitForClickable()
|
||||||
await videoPasswordInput.clearValue()
|
await videoPasswordInput.clearValue()
|
||||||
|
|
||||||
return videoPasswordInput.setValue(videoPassword)
|
return videoPasswordInput.setValue(videoPassword)
|
||||||
|
|
|
@ -151,13 +151,13 @@ export class VideoWatchPage {
|
||||||
}
|
}
|
||||||
|
|
||||||
async fillVideoPassword (videoPassword: string) {
|
async fillVideoPassword (videoPassword: string) {
|
||||||
const videoPasswordInput = $('input#confirmInput')
|
const videoPasswordInput = await $('input#confirmInput')
|
||||||
const confirmButton = await $('input[value="Confirm"]')
|
await videoPasswordInput.waitForClickable()
|
||||||
|
|
||||||
await videoPasswordInput.clearValue()
|
await videoPasswordInput.clearValue()
|
||||||
await videoPasswordInput.setValue(videoPassword)
|
await videoPasswordInput.setValue(videoPassword)
|
||||||
await confirmButton.waitForClickable()
|
|
||||||
|
|
||||||
|
const confirmButton = await $('input[value="Confirm"]')
|
||||||
|
await confirmButton.waitForClickable()
|
||||||
return confirmButton.click()
|
return confirmButton.click()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -188,6 +188,7 @@ export class VideoWatchPage {
|
||||||
|
|
||||||
async createThread (comment: string) {
|
async createThread (comment: string) {
|
||||||
const textarea = await $('my-video-comment-add textarea')
|
const textarea = await $('my-video-comment-add textarea')
|
||||||
|
await textarea.waitForClickable()
|
||||||
|
|
||||||
await textarea.setValue(comment)
|
await textarea.setValue(comment)
|
||||||
|
|
||||||
|
@ -202,10 +203,12 @@ export class VideoWatchPage {
|
||||||
|
|
||||||
async createReply (comment: string) {
|
async createReply (comment: string) {
|
||||||
const replyButton = await $('button.comment-action-reply')
|
const replyButton = await $('button.comment-action-reply')
|
||||||
|
await replyButton.waitForClickable()
|
||||||
|
await replyButton.scrollIntoView()
|
||||||
await replyButton.click()
|
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)
|
await textarea.setValue(comment)
|
||||||
|
|
||||||
const confirmButton = await $('my-video-comment .comment-buttons .orange-button')
|
const confirmButton = await $('my-video-comment .comment-buttons .orange-button')
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { LoginPage } from '../po/login.po'
|
import { LoginPage } from '../po/login.po'
|
||||||
import { VideoUploadPage } from '../po/video-upload.po'
|
import { VideoUploadPage } from '../po/video-upload.po'
|
||||||
import { VideoWatchPage } from '../po/video-watch.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', () => {
|
describe('Custom server defaults', () => {
|
||||||
let videoUploadPage: VideoUploadPage
|
let videoUploadPage: VideoUploadPage
|
||||||
|
@ -83,4 +83,8 @@ describe('Custom server defaults', () => {
|
||||||
await checkP2P(false)
|
await checkP2P(false)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
after(async () => {
|
||||||
|
await browser.saveScreenshot(getScreenshotPath('after-test.png'))
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { SignupPage } from '../po/signup.po'
|
||||||
import { PlayerPage } from '../po/player.po'
|
import { PlayerPage } from '../po/player.po'
|
||||||
import { VideoUploadPage } from '../po/video-upload.po'
|
import { VideoUploadPage } from '../po/video-upload.po'
|
||||||
import { VideoWatchPage } from '../po/video-watch.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'
|
import { MyAccountPage } from '../po/my-account.po'
|
||||||
|
|
||||||
describe('Password protected videos', () => {
|
describe('Password protected videos', () => {
|
||||||
|
@ -153,6 +153,7 @@ describe('Password protected videos', () => {
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('Regular users', function () {
|
describe('Regular users', function () {
|
||||||
|
|
||||||
before(async () => {
|
before(async () => {
|
||||||
await signupPage.fullSignup({
|
await signupPage.fullSignup({
|
||||||
accountInfo: {
|
accountInfo: {
|
||||||
|
@ -221,4 +222,8 @@ describe('Password protected videos', () => {
|
||||||
await videoWatchPage.waitUntilVideoName(publicVideoName2, 40 * 1000)
|
await videoWatchPage.waitUntilVideoName(publicVideoName2, 40 * 1000)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
after(async () => {
|
||||||
|
await browser.saveScreenshot(getScreenshotPath('after-test.png'))
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
|
@ -93,5 +93,14 @@ function buildConfig (suiteFile: string = undefined) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (filename === 'video-password.e2e-spec.ts') {
|
||||||
|
return {
|
||||||
|
signup: {
|
||||||
|
enabled: true,
|
||||||
|
limit: -1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return {}
|
return {}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,8 @@ import { join, resolve } from 'path'
|
||||||
|
|
||||||
function runServer (appInstance: number, config: any = {}) {
|
function runServer (appInstance: number, config: any = {}) {
|
||||||
const env = Object.create(process.env)
|
const env = Object.create(process.env)
|
||||||
|
|
||||||
|
env['NODE_OPTIONS'] = ''
|
||||||
env['NODE_ENV'] = 'test'
|
env['NODE_ENV'] = 'test'
|
||||||
env['NODE_APP_INSTANCE'] = appInstance + ''
|
env['NODE_APP_INSTANCE'] = appInstance + ''
|
||||||
|
|
||||||
|
@ -43,7 +45,10 @@ function runServer (appInstance: number, config: any = {}) {
|
||||||
|
|
||||||
function runCommand (command: string) {
|
function runCommand (command: string) {
|
||||||
return new Promise<void>((res, rej) => {
|
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.stderr.on('data', data => console.error(data.toString()))
|
||||||
p.on('error', err => rej(err))
|
p.on('error', err => rej(err))
|
||||||
|
|
|
@ -43,7 +43,7 @@ module.exports = {
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
services: [ 'chromedriver', 'geckodriver', 'shared-store' ],
|
services: [ 'shared-store' ],
|
||||||
|
|
||||||
beforeSession: beforeLocalSession,
|
beforeSession: beforeLocalSession,
|
||||||
beforeSuite: beforeLocalSuite,
|
beforeSuite: beforeLocalSuite,
|
||||||
|
|
|
@ -22,6 +22,7 @@ module.exports = {
|
||||||
{
|
{
|
||||||
'browserName': 'chrome',
|
'browserName': 'chrome',
|
||||||
'goog:chromeOptions': {
|
'goog:chromeOptions': {
|
||||||
|
binary: '/usr/bin/google-chrome-stable',
|
||||||
args: [ '--headless', '--disable-gpu', windowSizeArg ],
|
args: [ '--headless', '--disable-gpu', windowSizeArg ],
|
||||||
prefs
|
prefs
|
||||||
}
|
}
|
||||||
|
@ -37,7 +38,7 @@ module.exports = {
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
services: [ 'chromedriver', 'geckodriver', 'shared-store' ],
|
services: [ 'shared-store' ],
|
||||||
|
|
||||||
beforeSession: beforeLocalSession,
|
beforeSession: beforeLocalSession,
|
||||||
beforeSuite: beforeLocalSuite,
|
beforeSuite: beforeLocalSuite,
|
||||||
|
|
|
@ -90,7 +90,6 @@
|
||||||
"buffer": "^6.0.3",
|
"buffer": "^6.0.3",
|
||||||
"chart.js": "^4.3.0",
|
"chart.js": "^4.3.0",
|
||||||
"chartjs-plugin-zoom": "~2.0.1",
|
"chartjs-plugin-zoom": "~2.0.1",
|
||||||
"chromedriver": "^117.0.3",
|
|
||||||
"core-js": "^3.22.8",
|
"core-js": "^3.22.8",
|
||||||
"css-loader": "^6.2.0",
|
"css-loader": "^6.2.0",
|
||||||
"debug": "^4.3.1",
|
"debug": "^4.3.1",
|
||||||
|
@ -100,7 +99,6 @@
|
||||||
"eslint-plugin-prefer-arrow": "latest",
|
"eslint-plugin-prefer-arrow": "latest",
|
||||||
"expect-webdriverio": "^4.2.3",
|
"expect-webdriverio": "^4.2.3",
|
||||||
"focus-visible": "^5.0.2",
|
"focus-visible": "^5.0.2",
|
||||||
"geckodriver": "^4.0.0",
|
|
||||||
"hls.js": "~1.3",
|
"hls.js": "~1.3",
|
||||||
"html-loader": "^4.1.0",
|
"html-loader": "^4.1.0",
|
||||||
"html-webpack-plugin": "^5.3.1",
|
"html-webpack-plugin": "^5.3.1",
|
||||||
|
@ -130,8 +128,6 @@
|
||||||
"tslib": "^2.4.0",
|
"tslib": "^2.4.0",
|
||||||
"typescript": "~5.1.0",
|
"typescript": "~5.1.0",
|
||||||
"video.js": "^7.19.2",
|
"video.js": "^7.19.2",
|
||||||
"wdio-chromedriver-service": "^8.1.1",
|
|
||||||
"wdio-geckodriver-service": "^5.0.1",
|
|
||||||
"webpack": "^5.73.0",
|
"webpack": "^5.73.0",
|
||||||
"webpack-bundle-analyzer": "^4.4.2",
|
"webpack-bundle-analyzer": "^4.4.2",
|
||||||
"webpack-cli": "^5.0.1",
|
"webpack-cli": "^5.0.1",
|
||||||
|
|
|
@ -527,7 +527,7 @@ export class VideoStatsComponent implements OnInit {
|
||||||
|
|
||||||
const date = new Date(label)
|
const date = new Date(label)
|
||||||
|
|
||||||
if (data.groupInterval.match(/ month?$/)) {
|
if (data.groupInterval.match(/ months?$/)) {
|
||||||
return date.toLocaleDateString([], { year: '2-digit', month: 'numeric' })
|
return date.toLocaleDateString([], { year: '2-digit', month: 'numeric' })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -48,6 +48,7 @@ export class RecentVideosRecommendationService implements RecommendationService
|
||||||
: undefined
|
: undefined
|
||||||
|
|
||||||
const defaultSubscription = this.videos.getVideos({
|
const defaultSubscription = this.videos.getVideos({
|
||||||
|
skipCount: true,
|
||||||
videoPagination: pagination,
|
videoPagination: pagination,
|
||||||
sort: '-publishedAt',
|
sort: '-publishedAt',
|
||||||
nsfw
|
nsfw
|
||||||
|
@ -61,6 +62,7 @@ export class RecentVideosRecommendationService implements RecommendationService
|
||||||
return this.searchService.searchVideos({
|
return this.searchService.searchVideos({
|
||||||
search: '',
|
search: '',
|
||||||
componentPagination: pagination,
|
componentPagination: pagination,
|
||||||
|
skipCount: true,
|
||||||
advancedSearch: new AdvancedSearch({
|
advancedSearch: new AdvancedSearch({
|
||||||
tagsOneOf: recommendation.tags.join(','),
|
tagsOneOf: recommendation.tags.join(','),
|
||||||
sort: '-publishedAt',
|
sort: '-publishedAt',
|
||||||
|
|
|
@ -695,6 +695,8 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
|
||||||
}
|
}
|
||||||
|
|
||||||
const getStartTime = () => {
|
const getStartTime = () => {
|
||||||
|
if (video.isLive) return undefined
|
||||||
|
|
||||||
const byUrl = urlOptions.startTime !== undefined
|
const byUrl = urlOptions.startTime !== undefined
|
||||||
const byHistory = video.userHistory && (!this.playlist || urlOptions.resume !== undefined)
|
const byHistory = video.userHistory && (!this.playlist || urlOptions.resume !== undefined)
|
||||||
const byLocalStorage = getStoredVideoWatchHistory(video.uuid)
|
const byLocalStorage = getStoredVideoWatchHistory(video.uuid)
|
||||||
|
|
|
@ -23,7 +23,7 @@ export class CustomPageService {
|
||||||
return of({ content: '' })
|
return of({ content: '' })
|
||||||
}
|
}
|
||||||
|
|
||||||
this.restExtractor.handleError(err)
|
return this.restExtractor.handleError(err)
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
@ -395,7 +395,7 @@ export class VideoService {
|
||||||
return of([])
|
return of([])
|
||||||
}
|
}
|
||||||
|
|
||||||
this.restExtractor.handleError(err)
|
return this.restExtractor.handleError(err)
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -411,7 +411,7 @@ export class VideoService {
|
||||||
return of(undefined)
|
return of(undefined)
|
||||||
}
|
}
|
||||||
|
|
||||||
this.restExtractor.handleError(err)
|
return this.restExtractor.handleError(err)
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,8 +31,9 @@ export class SearchService {
|
||||||
componentPagination?: ComponentPaginationLight
|
componentPagination?: ComponentPaginationLight
|
||||||
advancedSearch?: AdvancedSearch
|
advancedSearch?: AdvancedSearch
|
||||||
uuids?: string[]
|
uuids?: string[]
|
||||||
|
skipCount?: boolean
|
||||||
}): Observable<ResultList<Video>> {
|
}): Observable<ResultList<Video>> {
|
||||||
const { search, uuids, componentPagination, advancedSearch } = parameters
|
const { search, uuids, componentPagination, advancedSearch, skipCount } = parameters
|
||||||
|
|
||||||
if (advancedSearch?.resultType !== undefined && advancedSearch.resultType !== 'videos') {
|
if (advancedSearch?.resultType !== undefined && advancedSearch.resultType !== 'videos') {
|
||||||
return of({ total: 0, data: [] })
|
return of({ total: 0, data: [] })
|
||||||
|
@ -49,6 +50,7 @@ export class SearchService {
|
||||||
params = this.restService.addRestGetParams(params, pagination)
|
params = this.restService.addRestGetParams(params, pagination)
|
||||||
|
|
||||||
if (search) params = params.append('search', search)
|
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 (uuids) params = this.restService.addArrayParams(params, 'uuids', uuids)
|
||||||
|
|
||||||
if (advancedSearch) {
|
if (advancedSearch) {
|
||||||
|
|
|
@ -45,7 +45,9 @@ export class LiveStreamInformationComponent {
|
||||||
[LiveVideoError.FFMPEG_ERROR]: $localize`Server error`,
|
[LiveVideoError.FFMPEG_ERROR]: $localize`Server error`,
|
||||||
[LiveVideoError.QUOTA_EXCEEDED]: $localize`Quota exceeded`,
|
[LiveVideoError.QUOTA_EXCEEDED]: $localize`Quota exceeded`,
|
||||||
[LiveVideoError.RUNNER_JOB_CANCEL]: $localize`Runner job cancelled`,
|
[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]
|
return errors[session.error]
|
||||||
|
|
|
@ -37,6 +37,9 @@ my-video-thumbnail,
|
||||||
@include disable-default-a-behaviour;
|
@include disable-default-a-behaviour;
|
||||||
|
|
||||||
color: pvar(--mainForegroundColor);
|
color: pvar(--mainForegroundColor);
|
||||||
|
}
|
||||||
|
|
||||||
|
> a {
|
||||||
display: flex;
|
display: flex;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -125,11 +128,11 @@ my-video-thumbnail,
|
||||||
|
|
||||||
a {
|
a {
|
||||||
width: auto;
|
width: auto;
|
||||||
padding-right: 5px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.pt-badge {
|
.pt-badge {
|
||||||
@include margin-right(5px);
|
margin: 0 5px;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -168,8 +168,7 @@ export class PeerTubePlayer {
|
||||||
const webVideoOptionsBuilder = new WebVideoOptionsBuilder(pick(this.currentLoadOptions, [
|
const webVideoOptionsBuilder = new WebVideoOptionsBuilder(pick(this.currentLoadOptions, [
|
||||||
'videoFileToken',
|
'videoFileToken',
|
||||||
'webVideo',
|
'webVideo',
|
||||||
'hls',
|
'hls'
|
||||||
'startTime'
|
|
||||||
]))
|
]))
|
||||||
|
|
||||||
this.player.webVideo(webVideoOptionsBuilder.getPluginOptions())
|
this.player.webVideo(webVideoOptionsBuilder.getPluginOptions())
|
||||||
|
|
|
@ -4,13 +4,19 @@ import videojs, { VideoJsPlayer } from 'video.js'
|
||||||
const TimeToolTip = videojs.getComponent('TimeTooltip') as any // FIXME: typings don't have write method
|
const TimeToolTip = videojs.getComponent('TimeTooltip') as any // FIXME: typings don't have write method
|
||||||
|
|
||||||
class TimeTooltip extends TimeToolTip {
|
class TimeTooltip extends TimeToolTip {
|
||||||
|
private currentTimecode: string
|
||||||
|
private currentChapterTitle: string
|
||||||
|
|
||||||
write (timecode: string) {
|
write (timecode: string) {
|
||||||
const player: VideoJsPlayer = this.player()
|
const player: VideoJsPlayer = this.player()
|
||||||
|
|
||||||
if (player.usingPlugin('chapters')) {
|
if (player.usingPlugin('chapters')) {
|
||||||
const chapterTitle = player.chapters().getChapter(timeToInt(timecode))
|
if (timecode === this.currentTimecode) return
|
||||||
if (chapterTitle) return super.write(chapterTitle + '\r\n' + timecode)
|
|
||||||
|
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)
|
return super.write(timecode)
|
||||||
|
|
|
@ -87,16 +87,26 @@ class P2pMediaLoaderPlugin extends Plugin {
|
||||||
super.dispose()
|
super.dispose()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ---------------------------------------------------------------------------
|
||||||
|
|
||||||
getCurrentLevel () {
|
getCurrentLevel () {
|
||||||
if (!this.hlsjs) return undefined
|
if (!this.hlsjs) return undefined
|
||||||
|
|
||||||
return this.hlsjs.levels[this.hlsjs.currentLevel]
|
return this.hlsjs.levels[this.hlsjs.currentLevel]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ---------------------------------------------------------------------------
|
||||||
|
|
||||||
getLiveLatency () {
|
getLiveLatency () {
|
||||||
return Math.round(this.hlsjs.latency)
|
return Math.round(this.hlsjs.latency)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getLiveLatencyFromEdge () {
|
||||||
|
return Math.round(this.hlsjs.latency - this.hlsjs.targetLatency)
|
||||||
|
}
|
||||||
|
|
||||||
|
// ---------------------------------------------------------------------------
|
||||||
|
|
||||||
getHLSJS () {
|
getHLSJS () {
|
||||||
return this.hlsjs
|
return this.hlsjs
|
||||||
}
|
}
|
||||||
|
|
|
@ -409,10 +409,12 @@ class PeerTubePlugin extends Plugin {
|
||||||
|
|
||||||
// Prefer canplaythrough instead of canplay because Chrome has issues with the second one
|
// Prefer canplaythrough instead of canplay because Chrome has issues with the second one
|
||||||
this.player.one('canplaythrough', () => {
|
this.player.one('canplaythrough', () => {
|
||||||
if (this.options.startTime()) {
|
const startTime = this.options.startTime()
|
||||||
debugLogger('Start the video at ' + 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()) {
|
if (this.options.stopTime()) {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { PeerTubePlayerLoadOptions, WebVideoPluginOptions } from '../../types'
|
import { PeerTubePlayerLoadOptions, WebVideoPluginOptions } from '../../types'
|
||||||
|
|
||||||
type ConstructorOptions = Pick<PeerTubePlayerLoadOptions, 'videoFileToken' | 'webVideo' | 'hls' | 'startTime'>
|
type ConstructorOptions = Pick<PeerTubePlayerLoadOptions, 'videoFileToken' | 'webVideo' | 'hls'>
|
||||||
|
|
||||||
export class WebVideoOptionsBuilder {
|
export class WebVideoOptionsBuilder {
|
||||||
|
|
||||||
|
@ -14,9 +14,7 @@ export class WebVideoOptionsBuilder {
|
||||||
|
|
||||||
videoFiles: this.options.webVideo.videoFiles.length !== 0
|
videoFiles: this.options.webVideo.videoFiles.length !== 0
|
||||||
? this.options.webVideo.videoFiles
|
? this.options.webVideo.videoFiles
|
||||||
: this.options?.hls.videoFiles || [],
|
: this.options?.hls.videoFiles || []
|
||||||
|
|
||||||
startTime: this.options.startTime
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -163,9 +163,11 @@ class StatsCard extends Component {
|
||||||
|
|
||||||
let progress: number
|
let progress: number
|
||||||
let latency: string
|
let latency: string
|
||||||
|
let latencyFromEdge: string
|
||||||
|
|
||||||
if (this.options_.videoIsLive) {
|
if (this.options_.videoIsLive) {
|
||||||
latency = secondsToTime(p2pMediaLoader.getLiveLatency())
|
latency = secondsToTime(p2pMediaLoader.getLiveLatency())
|
||||||
|
latencyFromEdge = secondsToTime(p2pMediaLoader.getLiveLatencyFromEdge())
|
||||||
} else {
|
} else {
|
||||||
progress = this.player().bufferedPercent()
|
progress = this.player().bufferedPercent()
|
||||||
}
|
}
|
||||||
|
@ -176,6 +178,7 @@ class StatsCard extends Component {
|
||||||
codecs,
|
codecs,
|
||||||
buffer,
|
buffer,
|
||||||
latency,
|
latency,
|
||||||
|
latencyFromEdge,
|
||||||
progress
|
progress
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -261,9 +264,10 @@ class StatsCard extends Component {
|
||||||
buffer: string
|
buffer: string
|
||||||
|
|
||||||
latency?: string
|
latency?: string
|
||||||
|
latencyFromEdge?: string
|
||||||
colorSpace?: 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 { downloadedFromServer, downloadedFromPeers } = playerNetworkInfo
|
||||||
|
|
||||||
const player = this.player()
|
const player = this.player()
|
||||||
|
@ -311,16 +315,18 @@ class StatsCard extends Component {
|
||||||
this.setInfoValue(this.volume, volume)
|
this.setInfoValue(this.volume, volume)
|
||||||
this.setInfoValue(this.codecs, codecs)
|
this.setInfoValue(this.codecs, codecs)
|
||||||
this.setInfoValue(this.color, colorSpace)
|
this.setInfoValue(this.color, colorSpace)
|
||||||
|
this.setInfoValue(this.transferred, totalTransferred)
|
||||||
this.setInfoValue(this.connection, playerNetworkInfo.averageBandwidth)
|
this.setInfoValue(this.connection, playerNetworkInfo.averageBandwidth)
|
||||||
|
|
||||||
this.setInfoValue(this.network, networkActivity)
|
this.setInfoValue(this.network, networkActivity)
|
||||||
this.setInfoValue(this.transferred, totalTransferred)
|
|
||||||
this.setInfoValue(this.download, downloadBreakdown)
|
this.setInfoValue(this.download, downloadBreakdown)
|
||||||
|
|
||||||
this.setInfoValue(this.bufferProgress, bufferProgress)
|
this.setInfoValue(this.bufferProgress, bufferProgress)
|
||||||
this.setInfoValue(this.bufferState, buffer)
|
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) {
|
private setInfoValue (el: InfoElement, value: string) {
|
||||||
|
|
|
@ -191,7 +191,6 @@ type TheaterButtonOptions = {
|
||||||
|
|
||||||
type WebVideoPluginOptions = {
|
type WebVideoPluginOptions = {
|
||||||
videoFiles: VideoFile[]
|
videoFiles: VideoFile[]
|
||||||
startTime: number | string
|
|
||||||
videoFileToken: () => string
|
videoFileToken: () => string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -9862,7 +9862,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target state="new">Subscribe to the account</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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="new">PLAYLISTS</target>
|
<target state="new">PLAYLISTS</target>
|
||||||
|
@ -12927,67 +12927,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="new">Enter/exit fullscreen</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="new">Play/Pause the video</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="new">Mute/unmute the video</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="new">Increase the volume</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="new">Decrease the volume</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="new">Seek the video forward</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="new">Seek the video backward</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="new">Increase playback rate</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="new">Decrease playback rate</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="new">Navigate in the video to the previous frame</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="new">Navigate in the video to the next frame</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="new">Toggle theater mode</target>
|
<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">
|
<trans-unit id="8025996572234182184" datatype="html">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target state="new">Like the video</target>
|
<target state="new">Like the video</target>
|
||||||
|
|
|
@ -9792,7 +9792,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target>Odebírat účet</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">PLAYLISTY</target>
|
<target state="translated">PLAYLISTY</target>
|
||||||
|
@ -12912,67 +12912,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="translated">Vstup/výstup na celoobrazovkový režim</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">Přehrát / Zastavit video</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="translated">Ztišit / zrušit ztišení videa</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">Zvýšit hlasitost</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">Snížit hlasitost</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="translated">Procházení videa dopředu</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="translated">Procházení videa dozadu</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="translated">Zvýšení rychlosti přehrávání</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="translated">Snížení rychlosti přehrávání</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="translated">Přejít ve videu na předchozí snímek</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="translated">Přejít ve videu na další snímek</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="translated">Přepnutí režimu kina</target>
|
<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">
|
<trans-unit id="8025996572234182184">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target>To se mi líbí</target>
|
<target>To se mi líbí</target>
|
||||||
|
|
|
@ -9228,7 +9228,7 @@ The link will expire within 1 hour.</target>
|
||||||
<target state="new">Subscribe to the account</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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="new">PLAYLISTS</target>
|
<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">
|
<trans-unit id="5856931617181450881" datatype="html">
|
||||||
<source>Enter/exit fullscreen</source><target state="new">Enter/exit fullscreen</target>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -9842,7 +9842,7 @@ Hilf mit PeerTube zu übersetzen!</target>
|
||||||
<target>Diesen Account abonnieren</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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">WIEDERGABELISTEN</target>
|
<target state="translated">WIEDERGABELISTEN</target>
|
||||||
|
@ -12950,67 +12950,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="translated">Vollbildmodus aufrufen/verlassen</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">Abspielen/Pausieren des Videos</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="translated">Video stummschalten/auf laut schalten</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">Erhöhen der Lautstärke</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">Verringern der Lautstärke</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="translated">Das Video vorwärts spulen</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="translated">Das Video rückwärts spulen</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="translated">Wiedergaberate erhöhen</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="translated">Wiedergaberate verringern</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="translated">Im Video zum vorherigen Frame navigieren</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="translated">Im Video zum nächsten Frame navigieren</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="translated">Kinomodus umschalten</target>
|
<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">
|
<trans-unit id="8025996572234182184">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target>Das Video gefällt mir</target>
|
<target>Das Video gefällt mir</target>
|
||||||
|
|
|
@ -10075,7 +10075,7 @@ The link will expire within 1 hour.</target>
|
||||||
<target>Συνδρομή στον λογαριασμό</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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="new">PLAYLISTS</target>
|
<target state="new">PLAYLISTS</target>
|
||||||
|
@ -13217,67 +13217,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="new">Enter/exit fullscreen</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="new">Play/Pause the video</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="new">Mute/unmute the video</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="new">Increase the volume</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="new">Decrease the volume</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="new">Seek the video forward</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="new">Seek the video backward</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="new">Increase playback rate</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="new">Decrease playback rate</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="new">Navigate in the video to the previous frame</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="new">Navigate in the video to the next frame</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="new">Toggle theater mode</target>
|
<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">
|
<trans-unit id="8025996572234182184">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target>Σας αρέσει το βίντεο</target>
|
<target>Σας αρέσει το βίντεο</target>
|
||||||
|
|
|
@ -8676,7 +8676,7 @@ The link will expire within 1 hour.</target>
|
||||||
<target>Subscribe to the account</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>
|
<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">
|
<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">
|
<trans-unit id="5856931617181450881" datatype="html">
|
||||||
<source>Enter/exit fullscreen</source><target state="new">Enter/exit fullscreen</target>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -8339,7 +8339,7 @@ The link will expire within 1 hour.</target>
|
||||||
<target state="final">Subscribe to the account</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>
|
<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">
|
<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">
|
<trans-unit id="5856931617181450881" datatype="html">
|
||||||
<source>Enter/exit fullscreen</source><target state="final">Enter/exit fullscreen</target>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -9831,7 +9831,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target>Aboni la konton</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="new">PLAYLISTS</target>
|
<target state="new">PLAYLISTS</target>
|
||||||
|
@ -12921,67 +12921,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="new">Enter/exit fullscreen</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="new">Play/Pause the video</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="new">Mute/unmute the video</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="new">Increase the volume</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="new">Decrease the volume</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="new">Seek the video forward</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="new">Seek the video backward</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="new">Increase playback rate</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="new">Decrease playback rate</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="new">Navigate in the video to the previous frame</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="new">Navigate in the video to the next frame</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="new">Toggle theater mode</target>
|
<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">
|
<trans-unit id="8025996572234182184">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target>Ŝati la filmon</target>
|
<target>Ŝati la filmon</target>
|
||||||
|
|
|
@ -9807,7 +9807,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target>Suscribirse a la cuenta</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">LISTAS DE REPRODUCCIÓN</target>
|
<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>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="translated">Entrar/salir de pantalla completa</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">Reproducir/Pausar el video</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="translated">Silenciar/activar sonido del video</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">Aumentar el volumen</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">Disminuir el volumen</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="translated">Buscar el video adelante</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="translated">Buscar el video hacia atrás</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="translated">Aumentar la tasa de reproducción</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="translated">Disminuir la velocidad de reproducción</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="translated">Navegar en el video al cuadro anterior</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="translated">Navegar en el video al siguiente cuadro</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="translated">Alternar el modo teatro</target>
|
<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">
|
<trans-unit id="8025996572234182184">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target>Colocar Me gusta a este vídeo</target>
|
<target>Colocar Me gusta a este vídeo</target>
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -9772,7 +9772,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target state="translated">مشترکشدن حسابکاربری</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">لیستهای پخش</target>
|
<target state="translated">لیستهای پخش</target>
|
||||||
|
@ -12882,67 +12882,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="translated">ورود / خروج از حالت تمام صفحه</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">پخش / مکث ویدئو</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="translated">بی صدا / با صدا کردن ویدیو</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
||||||
<target state="translated">پرش به جلو به صورت درصدی : عدد 0 همان 0% و 9 همان 90% است</target>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">افزایش حجم صدا</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">کاهش حجم صدا</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="translated">جستجوی ویدئو به سمت جلو</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="translated">جستجوی ویدئو به سمت عقب</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="translated">افزایش سرعت پخش</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="translated">کاهش سرعت پخش</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="translated">حرکت در ویدئو به فریم قبلی</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="translated">حرکت در ویدئو به فریم بعدی</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="translated">تغییر حالت پخش</target>
|
<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">
|
<trans-unit id="8025996572234182184" datatype="html">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target state="translated">پسندیدن ویدئو</target>
|
<target state="translated">پسندیدن ویدئو</target>
|
||||||
|
|
|
@ -9782,7 +9782,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target>Tilaa käyttäjä</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">SOITTOLISTAT</target>
|
<target state="translated">SOITTOLISTAT</target>
|
||||||
|
@ -12881,67 +12881,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="translated">Siirry tai poistu koko ruudun tilasta</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">Toista tai pysäytä video</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="translated">Mykistä tai poista mykistys</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">Lisää äänenvoimakkuutta</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">Alenna äänenvoimakkuutta</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="translated">Kelaa videota eteenpäin</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="translated">Kelaa videota taaksepäin</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="translated">Nopeuta videontoistoa</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="translated">Hidasta videontoistoa</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="translated">Siirry aikaisempaan kehykseen</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="translated">Siirry seuraavaan kehykseen</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="translated">Teatteritila</target>
|
<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">
|
<trans-unit id="8025996572234182184">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target>Tykkää videosta</target>
|
<target>Tykkää videosta</target>
|
||||||
|
|
|
@ -9839,7 +9839,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target>S'abonner à ce compte</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">LISTES DE LECTURE</target>
|
<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>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="translated">Entrer/sortir du plein écran</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">Lecture/Pause de la vidéo</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="translated">Sourdine/reprise du son de la vidéo</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">Augmenter le volume</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">Diminuer le volume</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="translated">Faire avancer la vidéo</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="translated">Faire reculer la vidéo</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="translated">Augmenter la vitesse de lecture</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="translated">Diminuer la vitesse de lecture</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<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>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="translated">Naviguer dans la vidéo jusqu'à l'image suivante</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="translated">Basculer le mode théâtre</target>
|
<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">
|
<trans-unit id="8025996572234182184">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target>J’aime cette vidéo</target>
|
<target>J’aime cette vidéo</target>
|
||||||
|
|
|
@ -9774,7 +9774,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target state="translated">Fo-sgrìobh air a’ chunntas</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">LIOSTAICHEAN-CLUICH</target>
|
<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>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="translated">Tòisich air/Fàg an làn-sgrìn</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">Cluich/Cuir ’na stad a’ video</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="translated">Mùch/Dì-mhùch a’ video</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">Cuir an àirde an fhuaim</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">Lùghdaich àirde na fuaime</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="translated">Sir air adhart sa video</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="translated">Sir air ais sa video</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="translated">Dèan a’ chluich nas luaithe</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="translated">Cuir maille air a’ chluich</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="translated">Seòl sa video dhan fhrèam roimhe</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="translated">Seòl sa video dhan ath-fhrèam</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="translated">Toglaich modh an taighe-chluich</target>
|
<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">
|
<trans-unit id="8025996572234182184" datatype="html">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target state="translated">Comharraich gur toigh leat a’ video</target>
|
<target state="translated">Comharraich gur toigh leat a’ video</target>
|
||||||
|
|
|
@ -3282,12 +3282,12 @@ The link will expire within 1 hour.</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5432070253720498105" datatype="html">
|
<trans-unit id="5432070253720498105" datatype="html">
|
||||||
<source>Subscribe to all channels</source>
|
<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>
|
<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>
|
||||||
<trans-unit id="7542242186854344789" datatype="html">
|
<trans-unit id="7542242186854344789" datatype="html">
|
||||||
<source>channels subscribed</source>
|
<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>
|
<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>
|
||||||
<trans-unit id="8426539297729416784" datatype="html">
|
<trans-unit id="8426539297729416784" datatype="html">
|
||||||
|
@ -9850,9 +9850,9 @@ The link will expire within 1 hour.</source>
|
||||||
<trans-unit id="1783173774503340906" datatype="html">
|
<trans-unit id="1783173774503340906" datatype="html">
|
||||||
<source>Subscribe to the account</source>
|
<source>Subscribe to the account</source>
|
||||||
<target state="translated">Subscribirse á conta</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">LISTAXES</target>
|
<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">
|
<trans-unit id="5856931617181450881" datatype="html">
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="translated">Activar/desactivar pantalla completa</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">Activar/Pausar o vídeo</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="translated">Activar/Desactivar audio</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">Aumentar volume</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">Diminuír volume</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="translated">Avanzar o vídeo</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="translated">Retroceder no vídeo</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="translated">Aumentar taxa de reprodución</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="translated">Diminuír taxa de reprodución</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="translated">Ir ao fotograma anterior no vídeo</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="translated">Ir ao seguinte fotograma no vídeo</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="translated">Activar modo teatro</target>
|
<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">
|
<trans-unit id="8025996572234182184" datatype="html">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target state="translated">Gústame o vídeo</target>
|
<target state="translated">Gústame o vídeo</target>
|
||||||
|
|
|
@ -6920,7 +6920,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target state="translated">Pretplatiti se na račun</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">PLAYLISTE</target>
|
<target state="translated">PLAYLISTE</target>
|
||||||
|
@ -8951,67 +8951,67 @@ The link will expire within 1 hour.</source>
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="translated">Pokreni/Prekini cjeloekranski prikaz</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">Pokreni/Zaustavi video</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="translated">Isključi/Uključi zvuk videa</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">Povećaj glasnoću</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">Smanji glasnoću</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="translated">Premotaj video prema naprijed</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="translated">Premotaj video prema natrag</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="translated">Povećaj brzinu reprodukcije</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="translated">Smanji brzinu reprodukcije</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="translated">Prijeđi na prethodni kadar videa</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="translated">Prijeđi na sljedeći kadar videa</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="translated">Uključi/Isključi kazališni modus</target>
|
<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">
|
<trans-unit id="8025996572234182184" datatype="html">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target state="translated">Označi video da ti se sviđa</target>
|
<target state="translated">Označi video da ti se sviđa</target>
|
||||||
|
|
|
@ -9824,7 +9824,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target state="translated">Feliratkozás a fiókra</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">LEJÁTSZÁSI LISTÁK</target>
|
<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>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="new">Enter/exit fullscreen</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="new">Play/Pause the video</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="new">Mute/unmute the video</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="new">Increase the volume</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="new">Decrease the volume</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="new">Seek the video forward</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="new">Seek the video backward</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="new">Increase playback rate</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="new">Decrease playback rate</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="new">Navigate in the video to the previous frame</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="new">Navigate in the video to the next frame</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="new">Toggle theater mode</target>
|
<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">
|
<trans-unit id="8025996572234182184" datatype="html">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target state="translated">A videó kedvelése</target>
|
<target state="translated">A videó kedvelése</target>
|
||||||
|
|
|
@ -10549,7 +10549,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2159130950882492111" datatype="html">
|
<trans-unit id="2159130950882492111" datatype="html">
|
||||||
<source>Cancel</source>
|
<source>Cancel</source>
|
||||||
<target>Batal</target>
|
<target state="needs-translation">Batalkan</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
|
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
|
||||||
<context context-type="linenumber">628</context>
|
<context context-type="linenumber">628</context>
|
||||||
|
@ -16444,7 +16444,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8856905278208146821" datatype="html">
|
<trans-unit id="8856905278208146821" datatype="html">
|
||||||
<source><x id="ICU" equiv-text="{video.views, plural, =1 {1 viewer} other {{{ video.views | myNumberFormatter }} viewers}} "/> </source>
|
<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-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context>
|
<context context-type="sourcefile">src/app/shared/shared-video/video-views-counter.component.html</context>
|
||||||
<context context-type="linenumber">7,8</context>
|
<context context-type="linenumber">7,8</context>
|
||||||
|
|
|
@ -8378,7 +8378,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target state="translated">Gerast áskrifandi að aðgangnum</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">SPILUNARLISTAR</target>
|
<target state="translated">SPILUNARLISTAR</target>
|
||||||
|
@ -10504,67 +10504,67 @@ The link will expire within 1 hour.</source>
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="translated">Fara í/Hætta í skjáfylli</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">Spila/Setja myndskeið í bið</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="translated">Þagga/Kveikja á hljóði</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">Auka hljóðstyrk</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">Minnka hljóðstyrk</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="translated">Leita áfram í myndskeiðinu</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="translated">Leita afturábak í myndskeiðinu</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="translated">Auka afspilunarhraða</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="translated">Minnka afspilunarhraða</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="translated">Fara á fyrri ramma í myndskeiðinu</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="translated">Fara á næsta ramma í myndskeiðinu</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="translated">Víxla bíóham af/á</target>
|
<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">
|
<trans-unit id="7627544798203088407" datatype="html">
|
||||||
<source>Discover</source>
|
<source>Discover</source>
|
||||||
<target state="translated">Uppgötva</target>
|
<target state="translated">Uppgötva</target>
|
||||||
|
|
|
@ -9815,7 +9815,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target>Iscriversi all'account</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="new">PLAYLISTS</target>
|
<target state="new">PLAYLISTS</target>
|
||||||
|
@ -12891,67 +12891,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="new">Enter/exit fullscreen</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="new">Play/Pause the video</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="new">Mute/unmute the video</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="new">Increase the volume</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="new">Decrease the volume</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="new">Seek the video forward</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="new">Seek the video backward</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="new">Increase playback rate</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="new">Decrease playback rate</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="new">Navigate in the video to the previous frame</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="new">Navigate in the video to the next frame</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="new">Toggle theater mode</target>
|
<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">
|
<trans-unit id="8025996572234182184">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target>Mi piace</target>
|
<target>Mi piace</target>
|
||||||
|
|
|
@ -9814,9 +9814,9 @@ The link will expire within 1 hour.</source>
|
||||||
<trans-unit id="1783173774503340906">
|
<trans-unit id="1783173774503340906">
|
||||||
<source>Subscribe to the account</source>
|
<source>Subscribe to the account</source>
|
||||||
<target state="translated">アカウントを購読</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">プレイリスト</target>
|
<target state="translated">プレイリスト</target>
|
||||||
|
@ -12939,68 +12939,68 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<trans-unit id="5856931617181450881" datatype="html">
|
<trans-unit id="5856931617181450881" datatype="html">
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="translated">全画面モードを切り替える</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">動画の再生・停止</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="translated">動画のミュート・ミュート解除</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
||||||
<target state="translated">パーセンテージを指定してスキップします。0 は 0%、9 は 90% のことを指します</target>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">音量を上げる</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">音量を下げる</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="translated">動画を早送りする</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="translated">動画を巻き戻す</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="translated">再生速度を速くする</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="translated">再生速度を遅くする</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="translated">動画の前のフレームへ移動する</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="translated">動画の次のフレームへ移動する</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="translated">シアターモードにする</target>
|
<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">
|
<trans-unit id="8025996572234182184">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target>動画を高評価</target>
|
<target>動画を高評価</target>
|
||||||
|
|
|
@ -8728,7 +8728,7 @@ The link will expire within 1 hour.</target>
|
||||||
<target>jersi pe'a le pilno</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>
|
<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">
|
<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">
|
<trans-unit id="5856931617181450881" datatype="html">
|
||||||
<source>Enter/exit fullscreen</source><target state="new">Enter/exit fullscreen</target>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -9190,7 +9190,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target state="translated">Multeɣ ɣer umiḍan</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">TIBDARIN N TΓURI</target>
|
<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>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="new">Enter/exit fullscreen</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="new">Play/Pause the video</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="new">Mute/unmute the video</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="new">Increase the volume</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="new">Decrease the volume</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="new">Seek the video forward</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="new">Seek the video backward</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="new">Increase playback rate</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="new">Decrease playback rate</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="new">Navigate in the video to the previous frame</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="new">Navigate in the video to the next frame</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="new">Toggle theater mode</target>
|
<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">
|
<trans-unit id="8025996572234182184" datatype="html">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target state="translated">Teεǧeb-iyi tavidyut</target>
|
<target state="translated">Teεǧeb-iyi tavidyut</target>
|
||||||
|
|
|
@ -10153,7 +10153,7 @@ The link will expire within 1 hour.</target>
|
||||||
<target state="new">Subscribe to the account</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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="new">PLAYLISTS</target>
|
<target state="new">PLAYLISTS</target>
|
||||||
|
@ -13296,67 +13296,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="new">Enter/exit fullscreen</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="new">Play/Pause the video</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="new">Mute/unmute the video</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="new">Increase the volume</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="new">Decrease the volume</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="new">Seek the video forward</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="new">Seek the video backward</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="new">Increase playback rate</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="new">Decrease playback rate</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="new">Navigate in the video to the previous frame</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="new">Navigate in the video to the next frame</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="new">Toggle theater mode</target>
|
<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">
|
<trans-unit id="8025996572234182184" datatype="html">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target state="new">Like the video</target>
|
<target state="new">Like the video</target>
|
||||||
|
|
|
@ -8660,7 +8660,7 @@ The link will expire within 1 hour.</target>
|
||||||
<target state="new">Subscribe to the account</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>
|
<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">
|
<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">
|
<trans-unit id="5856931617181450881" datatype="html">
|
||||||
<source>Enter/exit fullscreen</source><target state="new">Enter/exit fullscreen</target>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -9750,7 +9750,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target state="translated">Abonner på kontoen</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">SPILLELISTER</target>
|
<target state="translated">SPILLELISTER</target>
|
||||||
|
@ -12877,67 +12877,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="new">Enter/exit fullscreen</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">Spill av/pause videoen</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="translated">Slå av/på lyden for videoen</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">Øk volumet</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">Reduser volumet</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="new">Seek the video forward</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="new">Seek the video backward</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="translated">Øk avspillingshastigheten</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="translated">Reduser avspillingshastigheten</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="new">Navigate in the video to the previous frame</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="new">Navigate in the video to the next frame</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="translated">Veksle kinomodus</target>
|
<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">
|
<trans-unit id="8025996572234182184" datatype="html">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target state="new">Like the video</target>
|
<target state="new">Like the video</target>
|
||||||
|
|
|
@ -9822,7 +9822,7 @@ Je kan nu al informatie toevoegen over deze video.
|
||||||
<target>Abonneren op account</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">AFSPEELLIJSTEN</target>
|
<target state="translated">AFSPEELLIJSTEN</target>
|
||||||
|
@ -12900,67 +12900,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="translated">Volledig scherm openen/verlaten</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">De video afspelen/pauzeren</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="translated">Dempen/uitzetten van de video</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">Verhoog het volume</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">Verminder het volume</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="translated">Spoel de video vooruit</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="translated">Spoel de video terug</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="translated">Afspeelsnelheid verhogen</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="translated">Verminder afspeelsnelheid</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="translated">Navigeer in de video naar het vorige frame</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="translated">Navigeer in de video naar het volgende frame</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="translated">Theatermodus aan- of uitzetten</target>
|
<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">
|
<trans-unit id="8025996572234182184">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target state="translated">De video leuk vinden</target>
|
<target state="translated">De video leuk vinden</target>
|
||||||
|
|
|
@ -6087,7 +6087,7 @@ The link will expire within 1 hour.</source>
|
||||||
<source>Subscribe to the account</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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target>SPELELISTER</target>
|
<target>SPELELISTER</target>
|
||||||
|
@ -7761,67 +7761,67 @@ The link will expire within 1 hour.</source>
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="new">Enter/exit fullscreen</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="new">Play/Pause the video</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="new">Mute/unmute the video</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="new">Increase the volume</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="new">Decrease the volume</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="new">Seek the video forward</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="new">Seek the video backward</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="new">Increase playback rate</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="new">Decrease playback rate</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="new">Navigate in the video to the previous frame</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="new">Navigate in the video to the next frame</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="new">Toggle theater mode</target>
|
<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">
|
<trans-unit id="8025996572234182184" datatype="html">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
|
|
||||||
|
|
|
@ -9978,7 +9978,7 @@ The link will expire within 1 hour.</target>
|
||||||
<target>S’abonar al compte</target>
|
<target>S’abonar 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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="new">PLAYLISTS</target>
|
<target state="new">PLAYLISTS</target>
|
||||||
|
@ -13043,67 +13043,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="new">Enter/exit fullscreen</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="new">Play/Pause the video</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="new">Mute/unmute the video</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="new">Increase the volume</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="new">Decrease the volume</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="new">Seek the video forward</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="new">Seek the video backward</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="new">Increase playback rate</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="new">Decrease playback rate</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="new">Navigate in the video to the previous frame</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="new">Navigate in the video to the next frame</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="new">Toggle theater mode</target>
|
<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">
|
<trans-unit id="8025996572234182184">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target>Aimar la vidèo</target>
|
<target>Aimar la vidèo</target>
|
||||||
|
|
|
@ -9725,7 +9725,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target state="translated">Subskrybuj to konto</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">PLAYLISTY</target>
|
<target state="translated">PLAYLISTY</target>
|
||||||
|
@ -12800,67 +12800,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="new">Enter/exit fullscreen</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">Odtwarzanie/Pauza filmu</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="new">Mute/unmute the video</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">Zwiększanie głośności</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">Zmniejszanie głośności</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="new">Seek the video forward</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="new">Seek the video backward</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="new">Increase playback rate</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="new">Decrease playback rate</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="new">Navigate in the video to the previous frame</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="new">Navigate in the video to the next frame</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="new">Toggle theater mode</target>
|
<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">
|
<trans-unit id="8025996572234182184" datatype="html">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target state="translated">Zaznacz "Lubię to"</target>
|
<target state="translated">Zaznacz "Lubię to"</target>
|
||||||
|
|
|
@ -10017,7 +10017,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target>Inscreva-se na conta</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="new">PLAYLISTS</target>
|
<target state="new">PLAYLISTS</target>
|
||||||
|
@ -13150,67 +13150,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="new">Enter/exit fullscreen</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="new">Play/Pause the video</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="new">Mute/unmute the video</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">Aumentar o volume</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">Diminuir o volume</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="new">Seek the video forward</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="new">Seek the video backward</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="new">Increase playback rate</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="new">Decrease playback rate</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="new">Navigate in the video to the previous frame</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="new">Navigate in the video to the next frame</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="new">Toggle theater mode</target>
|
<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">
|
<trans-unit id="8025996572234182184">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target>Gostar do vídeo</target>
|
<target>Gostar do vídeo</target>
|
||||||
|
|
|
@ -9347,7 +9347,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target state="new">Subscribe to the account</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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="new">PLAYLISTS</target>
|
<target state="new">PLAYLISTS</target>
|
||||||
|
@ -12233,67 +12233,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="new">Enter/exit fullscreen</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="new">Play/Pause the video</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="new">Mute/unmute the video</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="new">Increase the volume</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="new">Decrease the volume</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="new">Seek the video forward</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="new">Seek the video backward</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="new">Increase playback rate</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="new">Decrease playback rate</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="new">Navigate in the video to the previous frame</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="new">Navigate in the video to the next frame</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="new">Toggle theater mode</target>
|
<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">
|
<trans-unit id="8025996572234182184">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target state="new">Like the video</target>
|
<target state="new">Like the video</target>
|
||||||
|
|
|
@ -529,7 +529,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7539427273132299890">
|
<trans-unit id="7539427273132299890">
|
||||||
<source>Unlisted</source>
|
<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/+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>
|
<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>
|
</trans-unit>
|
||||||
|
@ -3211,7 +3211,7 @@ The link will expire within 1 hour.</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8928816882866356838">
|
<trans-unit id="8928816882866356838">
|
||||||
<source>Public</source>
|
<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>
|
<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>
|
||||||
<trans-unit id="4416005356063364306" datatype="html">
|
<trans-unit id="4416005356063364306" datatype="html">
|
||||||
|
@ -3419,7 +3419,7 @@ The link will expire within 1 hour.</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4262297989675590582" datatype="html">
|
<trans-unit id="4262297989675590582" datatype="html">
|
||||||
<source>This live has not started yet.</source>
|
<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>
|
<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>
|
||||||
<trans-unit id="4926204350710628499" datatype="html">
|
<trans-unit id="4926204350710628499" datatype="html">
|
||||||
|
@ -7789,7 +7789,7 @@ The link will expire within 1 hour.</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="166448092104563965" datatype="html">
|
<trans-unit id="166448092104563965" datatype="html">
|
||||||
<source>Password protected</source>
|
<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-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>
|
<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>
|
</trans-unit>
|
||||||
|
@ -9868,9 +9868,9 @@ The link will expire within 1 hour.</source>
|
||||||
<trans-unit id="1783173774503340906">
|
<trans-unit id="1783173774503340906">
|
||||||
<source>Subscribe to the account</source>
|
<source>Subscribe to the account</source>
|
||||||
<target>Подписаться на аккаунт</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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">ПЛЕЙЛИСТЫ</target>
|
<target state="translated">ПЛЕЙЛИСТЫ</target>
|
||||||
|
@ -12969,68 +12969,68 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<trans-unit id="5856931617181450881" datatype="html">
|
<trans-unit id="5856931617181450881" datatype="html">
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="translated">Вход/выход из полноэкранного режима</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">Воспроизвести/Приостановить видео</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="translated">Отключить/включить звук видео</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
||||||
<target state="translated">Перейти к проценту видео: 0 – 0%, 9 – 90%</target>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">Увеличить громкость</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">Уменьшить громкость</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="translated">Перемотать видео вперед</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="translated">Перемотать видео назад</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="translated">Увеличить скорость воспроизведения</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="translated">Уменьшить скорость воспроизведения</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="translated">Перейти к предыдущему кадру</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="translated">Перейти к следующему кадру</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="translated">Переключить режим театра</target>
|
<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">
|
<trans-unit id="8025996572234182184">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target>Мне понравилось</target>
|
<target>Мне понравилось</target>
|
||||||
|
|
|
@ -9808,9 +9808,9 @@ The link will expire within 1 hour.</source>
|
||||||
<trans-unit id="1783173774503340906" datatype="html">
|
<trans-unit id="1783173774503340906" datatype="html">
|
||||||
<source>Subscribe to the account</source>
|
<source>Subscribe to the account</source>
|
||||||
<target state="translated">Odoberať účet</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">ZOZNAMY</target>
|
<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">
|
<trans-unit id="5856931617181450881" datatype="html">
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="translated">Zap/Vyp celoobrazovkový režim</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">Spustí/Zastaví video</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="translated">Stíši/zapne zvuk</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">Zvýši hlasitosť</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">Zníži hlasitosť</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="translated">Prejsť dopredu vo videu</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="translated">Prejsť dozadu vo videu</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="translated">Zvýšiť rýchlosť prehrávania</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="translated">Znížiť rýchlosť prehrávania</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="translated">Prejsť vo videu na predošlý snímok</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="translated">Prejsť vo videu na ďalší snímok</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="translated">Prepnúť režim kina</target>
|
<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">
|
<trans-unit id="8025996572234182184" datatype="html">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target state="translated">Video sa mi páči</target>
|
<target state="translated">Video sa mi páči</target>
|
||||||
|
|
|
@ -9719,7 +9719,7 @@ The link will expire within 1 hour.</target>
|
||||||
<target state="new">Subscribe to the account</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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="new">PLAYLISTS</target>
|
<target state="new">PLAYLISTS</target>
|
||||||
|
@ -12731,67 +12731,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="new">Enter/exit fullscreen</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="new">Play/Pause the video</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="new">Mute/unmute the video</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="new">Increase the volume</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="new">Decrease the volume</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="new">Seek the video forward</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="new">Seek the video backward</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="new">Increase playback rate</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="new">Decrease playback rate</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="new">Navigate in the video to the previous frame</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="new">Navigate in the video to the next frame</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="new">Toggle theater mode</target>
|
<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">
|
<trans-unit id="8025996572234182184" datatype="html">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target state="new">Like the video</target>
|
<target state="new">Like the video</target>
|
||||||
|
|
|
@ -9743,7 +9743,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target>Prenumerera på kontot</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">SPELLISTOR</target>
|
<target state="translated">SPELLISTOR</target>
|
||||||
|
@ -12796,67 +12796,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="translated">Öppna/stäng fullskärm</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">Spela/Pausa videon</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="translated">Slå av eller på videons ljud</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">Höj volymen</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">Sänk volymen</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="translated">Hoppa framåt i videon</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="translated">Hoppa bakåt i videon</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="translated">Öka uppspelningshastigheten</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="translated">Minska uppspelningshastigheten</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="translated">Gå till videons föregående bildruta</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="translated">Gå till videons nästa bildruta</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="translated">Växla teaterläge</target>
|
<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">
|
<trans-unit id="8025996572234182184">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target>Gilla videon</target>
|
<target>Gilla videon</target>
|
||||||
|
|
|
@ -8730,7 +8730,7 @@ The link will expire within 1 hour.</target>
|
||||||
<target state="new">Subscribe to the account</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>
|
<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">
|
<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">
|
<trans-unit id="5856931617181450881" datatype="html">
|
||||||
<source>Enter/exit fullscreen</source><target state="new">Enter/exit fullscreen</target>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
<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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -9965,7 +9965,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target state="translated">ติดตามบัญชี</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">เพลย์ลิสต์</target>
|
<target state="translated">เพลย์ลิสต์</target>
|
||||||
|
@ -13069,67 +13069,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="translated">เข้าหรือออกจากโหมดเต็มหน้าจอ</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">เล่นหรือหยุดพักวิดีโอ</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="translated">ปิดหรือเปิดเสียงวิดีโอ</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">เพิ่มระดับเสียง</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">ลดระดับเสียง</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="new">Seek the video forward</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="new">Seek the video backward</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="translated">เพิ่มความเร็วการเล่น</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="translated">ลดความเร็วการเล่น</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="new">Navigate in the video to the previous frame</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="new">Navigate in the video to the next frame</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="translated">เปิด-ปิดโหมดโรงภาพยนตร์</target>
|
<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">
|
<trans-unit id="8025996572234182184" datatype="html">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target state="translated">ชอบวิดีโอ</target>
|
<target state="translated">ชอบวิดีโอ</target>
|
||||||
|
|
|
@ -7383,7 +7383,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target>mi wile lukin e sitelen sin tan lipu ni</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target>KULUPU SITELEN</target>
|
<target>KULUPU SITELEN</target>
|
||||||
|
@ -9409,67 +9409,67 @@ The link will expire within 1 hour.</source>
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target>o pana e sitelen lon ale/lili pi ilo mi</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target>o open/pini e tawa</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target>o open/pini e kalama</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target>o suli e kalama</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target>o lili e kalama</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target>o tawa tenpo kama</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target>o tawa tenpo pini</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target>o suli e wawa tawa</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target>o lili e wawa tawa</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target>o tawa sitelen pini pi tawa ala</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target>o tawa sitelen kama pi tawa ala</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target>o suli e sitelen</target>
|
<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">
|
<trans-unit id="7627544798203088407" datatype="html">
|
||||||
<source>Discover</source>
|
<source>Discover</source>
|
||||||
<target>kulupu</target>
|
<target>kulupu</target>
|
||||||
|
|
|
@ -9989,7 +9989,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target state="translated">Hesaba abone olundu</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="new">PLAYLISTS</target>
|
<target state="new">PLAYLISTS</target>
|
||||||
|
@ -13105,67 +13105,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="new">Enter/exit fullscreen</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="new">Play/Pause the video</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="new">Mute/unmute the video</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="new">Increase the volume</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="new">Decrease the volume</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="new">Seek the video forward</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="new">Seek the video backward</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="new">Increase playback rate</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="new">Decrease playback rate</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="new">Navigate in the video to the previous frame</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="new">Navigate in the video to the next frame</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="new">Toggle theater mode</target>
|
<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">
|
<trans-unit id="8025996572234182184" datatype="html">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target state="translated">Videoyu beğen</target>
|
<target state="translated">Videoyu beğen</target>
|
||||||
|
|
|
@ -9838,9 +9838,9 @@ The link will expire within 1 hour.</source>
|
||||||
<trans-unit id="1783173774503340906" datatype="html">
|
<trans-unit id="1783173774503340906" datatype="html">
|
||||||
<source>Subscribe to the account</source>
|
<source>Subscribe to the account</source>
|
||||||
<target state="translated">Підписатися на обліковий запис</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">ДОБІРКИ</target>
|
<target state="translated">ДОБІРКИ</target>
|
||||||
|
@ -12929,68 +12929,68 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<trans-unit id="5856931617181450881" datatype="html">
|
<trans-unit id="5856931617181450881" datatype="html">
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="translated">Вхід/вихід у повноекранний режим</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">Відтворити/призупинити відео</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="translated">Вимкнути/увімкнути звук відео</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
||||||
<target state="translated">Перейти до відсотка відео: 0 — це 0%, а 9 — це 90%</target>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">Підвищити гучність</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">Понизити гучність</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="translated">Перемотати відео вперед</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="translated">Перемотати відео назад</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="translated">Підвищити швидкість відтворення</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="translated">Знизити швидкість відтворення</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="translated">Перехід до попереднього кадру відео</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="translated">Перехід до наступного кадру відео</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="translated">Перемкнути режим театру</target>
|
<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">
|
<trans-unit id="8025996572234182184" datatype="html">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target state="translated">Вподобати відео</target>
|
<target state="translated">Вподобати відео</target>
|
||||||
|
|
|
@ -9822,9 +9822,9 @@ The link will expire within 1 hour.</source>
|
||||||
<trans-unit id="1783173774503340906" datatype="html">
|
<trans-unit id="1783173774503340906" datatype="html">
|
||||||
<source>Subscribe to the account</source>
|
<source>Subscribe to the account</source>
|
||||||
<target state="translated">Theo dõi tài khoản này</target>
|
<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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">DANH SÁCH PHÁT</target>
|
<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">
|
<trans-unit id="5856931617181450881" datatype="html">
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="translated">Vào/thoát toàn màn hình</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">Phát/Ngừng video</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="translated">Ẩn/Bỏ ẩn video</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<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>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">Tăng âm lượng</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">Giảm âm lượng</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="translated">Tua tới video</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="translated">Tua lùi video</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="translated">Tăng tốc độ video</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="translated">Giảm tốc độ video</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="translated">Điều hướng video tới khung trước đó</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<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>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="translated">Chế độ rạp chiếu</target>
|
<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">
|
<trans-unit id="8025996572234182184">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target>Thích video</target>
|
<target>Thích video</target>
|
||||||
|
|
|
@ -10553,7 +10553,7 @@ The link will expire within 1 hour.</source>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
|
<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>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3131904093925601441" datatype="html">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
|
@ -12922,91 +12922,91 @@ The link will expire within 1 hour.</source>
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
|
<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>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2971009377468404076" datatype="html">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
|
<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>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4147087312411482964" datatype="html">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
|
<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>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3887762369650091344" datatype="html">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
|
<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>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1363382131573461910" datatype="html">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
|
<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>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8223917068580581095" datatype="html">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
|
<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>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4791956574676305640" datatype="html">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
|
<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>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2541031516422557760" datatype="html">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
|
<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>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8813023402019364882" datatype="html">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
|
<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>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="581757752202843950" datatype="html">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
|
<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>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5467642834854681120" datatype="html">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
|
<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>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="3860402955823859506" datatype="html">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
|
<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>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8232494782895420700" datatype="html">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/+videos/+video-watch/video-watch.component.ts</context>
|
<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>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7627544798203088407" datatype="html">
|
<trans-unit id="7627544798203088407" datatype="html">
|
||||||
|
|
|
@ -9795,7 +9795,7 @@ The link will expire within 1 hour.</source>
|
||||||
<target>订阅此帐户</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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">播放列表</target>
|
<target state="translated">播放列表</target>
|
||||||
|
@ -12920,67 +12920,67 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="translated">进入/退出全屏</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">播放/暂停视频</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="translated">静音/取消静音视频</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
||||||
<target state="translated">跳到视频的百分比处:0 为 0%,9 为 90%</target>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">增加音量</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">降低音量</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="translated">快进视频</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="translated">快退视频</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="translated">提高播放速度</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="translated">降低播放速度</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="translated">转到视频的上一帧</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="translated">转到视频的下一帧</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="translated">切换影院模式</target>
|
<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">
|
<trans-unit id="8025996572234182184">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target state="translated">喜欢此视频</target>
|
<target state="translated">喜欢此视频</target>
|
||||||
|
|
|
@ -4993,7 +4993,7 @@ The link will expire within 1 hour.</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5862227717871131052" datatype="html">
|
<trans-unit id="5862227717871131052" datatype="html">
|
||||||
<source>Prefer author display name in video miniature</source>
|
<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>
|
<context-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>
|
||||||
<trans-unit id="5444889468197427724" datatype="html">
|
<trans-unit id="5444889468197427724" datatype="html">
|
||||||
|
@ -5325,7 +5325,7 @@ The link will expire within 1 hour.</source>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1206277798664538171" datatype="html">
|
<trans-unit id="1206277798664538171" datatype="html">
|
||||||
<source>Signup requires approval by moderators</source>
|
<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>
|
<context-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>
|
||||||
<trans-unit id="1718269478813020014">
|
<trans-unit id="1718269478813020014">
|
||||||
|
@ -9868,9 +9868,9 @@ The link will expire within 1 hour.</source>
|
||||||
<trans-unit id="1783173774503340906">
|
<trans-unit id="1783173774503340906">
|
||||||
<source>Subscribe to the account</source>
|
<source>Subscribe to the account</source>
|
||||||
<target>訂閱帳號</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">
|
<trans-unit id="3131904093925601441" datatype="html">
|
||||||
<source>PLAYLISTS</source>
|
<source>PLAYLISTS</source>
|
||||||
<target state="translated">播放清單</target>
|
<target state="translated">播放清單</target>
|
||||||
|
@ -12971,68 +12971,68 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||||
<trans-unit id="5856931617181450881" datatype="html">
|
<trans-unit id="5856931617181450881" datatype="html">
|
||||||
<source>Enter/exit fullscreen</source>
|
<source>Enter/exit fullscreen</source>
|
||||||
<target state="translated">進入/離開全螢幕</target>
|
<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">
|
<trans-unit id="2971009377468404076" datatype="html">
|
||||||
<source>Play/Pause the video</source>
|
<source>Play/Pause the video</source>
|
||||||
<target state="translated">播放/暫停影片</target>
|
<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">
|
<trans-unit id="4147087312411482964" datatype="html">
|
||||||
<source>Mute/unmute the video</source>
|
<source>Mute/unmute the video</source>
|
||||||
<target state="translated">靜音/取消靜音影片</target>
|
<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">
|
<trans-unit id="4791956574676305640" datatype="html">
|
||||||
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
<source>Skip to a percentage of the video: 0 is 0% and 9 is 90%</source>
|
||||||
<target state="translated">跳至影片的百分比:0 為 0%,9 為 90%</target>
|
<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">
|
<trans-unit id="3887762369650091344" datatype="html">
|
||||||
<source>Increase the volume</source>
|
<source>Increase the volume</source>
|
||||||
<target state="translated">增加音量</target>
|
<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">
|
<trans-unit id="1363382131573461910" datatype="html">
|
||||||
<source>Decrease the volume</source>
|
<source>Decrease the volume</source>
|
||||||
<target state="translated">降低音量</target>
|
<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">
|
<trans-unit id="2541031516422557760" datatype="html">
|
||||||
<source>Seek the video forward</source>
|
<source>Seek the video forward</source>
|
||||||
<target state="translated">向前快轉</target>
|
<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">
|
<trans-unit id="8813023402019364882" datatype="html">
|
||||||
<source>Seek the video backward</source>
|
<source>Seek the video backward</source>
|
||||||
<target state="translated">向後快轉</target>
|
<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">
|
<trans-unit id="581757752202843950" datatype="html">
|
||||||
<source>Increase playback rate</source>
|
<source>Increase playback rate</source>
|
||||||
<target state="translated">提高播放速度</target>
|
<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">
|
<trans-unit id="5467642834854681120" datatype="html">
|
||||||
<source>Decrease playback rate</source>
|
<source>Decrease playback rate</source>
|
||||||
<target state="translated">降低播放速度</target>
|
<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">
|
<trans-unit id="3860402955823859506" datatype="html">
|
||||||
<source>Navigate in the video to the previous frame</source>
|
<source>Navigate in the video to the previous frame</source>
|
||||||
<target state="translated">在影片中跳至上一個畫面</target>
|
<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">
|
<trans-unit id="8232494782895420700" datatype="html">
|
||||||
<source>Navigate in the video to the next frame</source>
|
<source>Navigate in the video to the next frame</source>
|
||||||
<target state="translated">在影片中跳至下一個畫面</target>
|
<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">
|
<trans-unit id="8223917068580581095" datatype="html">
|
||||||
<source>Toggle theater mode</source>
|
<source>Toggle theater mode</source>
|
||||||
<target state="translated">切換劇院模式</target>
|
<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">
|
<trans-unit id="8025996572234182184">
|
||||||
<source>Like the video</source>
|
<source>Like the video</source>
|
||||||
<target>喜歡此影片</target>
|
<target>喜歡此影片</target>
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "إلغاء",
|
"Cancel": "إلغاء",
|
||||||
"Up Next": "Up Next",
|
"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": "شغل",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Cancel",
|
"Cancel": "Cancel",
|
||||||
"Up Next": "Up Next",
|
"Up Next": "Up Next",
|
||||||
"Autoplay is suspended": "Autoplay is suspended",
|
"Autoplay is suspended": "Autoplay is suspended",
|
||||||
|
"{1} (from edge: {2})": "{1} (from edge: {2})",
|
||||||
"Audio Player": "Reproductor d'àudio",
|
"Audio Player": "Reproductor d'àudio",
|
||||||
"Video Player": "Reproductor de vídeo",
|
"Video Player": "Reproductor de vídeo",
|
||||||
"Play": "Reproduir",
|
"Play": "Reproduir",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Cancel",
|
"Cancel": "Cancel",
|
||||||
"Up Next": "Up Next",
|
"Up Next": "Up Next",
|
||||||
"Autoplay is suspended": "Autoplay is suspended",
|
"Autoplay is suspended": "Autoplay is suspended",
|
||||||
|
"{1} (from edge: {2})": "{1} (from edge: {2})",
|
||||||
"Audio Player": "Hudební přehrávač",
|
"Audio Player": "Hudební přehrávač",
|
||||||
"Video Player": "Videopřehrávač",
|
"Video Player": "Videopřehrávač",
|
||||||
"Play": "Přehrát",
|
"Play": "Přehrát",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Abbrechen",
|
"Cancel": "Abbrechen",
|
||||||
"Up Next": "Up Next",
|
"Up Next": "Up Next",
|
||||||
"Autoplay is suspended": "Autoplay ist unterbrochen",
|
"Autoplay is suspended": "Autoplay ist unterbrochen",
|
||||||
|
"{1} (from edge: {2})": "{1} (from edge: {2})",
|
||||||
"Audio Player": "Audio-Player",
|
"Audio Player": "Audio-Player",
|
||||||
"Video Player": "Video-Player",
|
"Video Player": "Video-Player",
|
||||||
"Play": "Wiedergeben",
|
"Play": "Wiedergeben",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Ακύρωση",
|
"Cancel": "Ακύρωση",
|
||||||
"Up Next": "Up Next",
|
"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": "Αναπαραγωγή",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Cancel",
|
"Cancel": "Cancel",
|
||||||
"Up Next": "Up Next",
|
"Up Next": "Up Next",
|
||||||
"Autoplay is suspended": "Autoplay is suspended",
|
"Autoplay is suspended": "Autoplay is suspended",
|
||||||
|
"{1} (from edge: {2})": "{1} (from edge: {2})",
|
||||||
"Audio Player": "Audio Player",
|
"Audio Player": "Audio Player",
|
||||||
"Video Player": "Video Player",
|
"Video Player": "Video Player",
|
||||||
"Play": "Play",
|
"Play": "Play",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Cancel",
|
"Cancel": "Cancel",
|
||||||
"Up Next": "Up Next",
|
"Up Next": "Up Next",
|
||||||
"Autoplay is suspended": "Autoplay is suspended",
|
"Autoplay is suspended": "Autoplay is suspended",
|
||||||
|
"{1} (from edge: {2})": "{1} (from edge: {2})",
|
||||||
"Audio Player": "Sonludilo",
|
"Audio Player": "Sonludilo",
|
||||||
"Video Player": "Filmludilo",
|
"Video Player": "Filmludilo",
|
||||||
"Play": "Ludi",
|
"Play": "Ludi",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Cancel",
|
"Cancel": "Cancel",
|
||||||
"Up Next": "Up Next",
|
"Up Next": "Up Next",
|
||||||
"Autoplay is suspended": "Autoplay is suspended",
|
"Autoplay is suspended": "Autoplay is suspended",
|
||||||
|
"{1} (from edge: {2})": "{1} (from edge: {2})",
|
||||||
"Audio Player": "Reproductor de audio",
|
"Audio Player": "Reproductor de audio",
|
||||||
"Video Player": "Reproductor de vídeo",
|
"Video Player": "Reproductor de vídeo",
|
||||||
"Play": "Reproducir",
|
"Play": "Reproducir",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Utzi",
|
"Cancel": "Utzi",
|
||||||
"Up Next": "Up Next",
|
"Up Next": "Up Next",
|
||||||
"Autoplay is suspended": "Erreprodukzio automatikoa desgaituta dago",
|
"Autoplay is suspended": "Erreprodukzio automatikoa desgaituta dago",
|
||||||
|
"{1} (from edge: {2})": "{1} (from edge: {2})",
|
||||||
"Audio Player": "Audio erreproduzigailua",
|
"Audio Player": "Audio erreproduzigailua",
|
||||||
"Video Player": "Bideo erreproduzigailua",
|
"Video Player": "Bideo erreproduzigailua",
|
||||||
"Play": "Erreproduzitu",
|
"Play": "Erreproduzitu",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Cancel",
|
"Cancel": "Cancel",
|
||||||
"Up Next": "Up Next",
|
"Up Next": "Up Next",
|
||||||
"Autoplay is suspended": "Autoplay is suspended",
|
"Autoplay is suspended": "Autoplay is suspended",
|
||||||
|
"{1} (from edge: {2})": "{1} (from edge: {2})",
|
||||||
"Audio Player": "پخشکنندهی صدا",
|
"Audio Player": "پخشکنندهی صدا",
|
||||||
"Video Player": "پخشکنندهی ویدئو",
|
"Video Player": "پخشکنندهی ویدئو",
|
||||||
"Play": "پخش",
|
"Play": "پخش",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Peruuta",
|
"Cancel": "Peruuta",
|
||||||
"Up Next": "Seuraavaksi",
|
"Up Next": "Seuraavaksi",
|
||||||
"Autoplay is suspended": "Autoplay keskeytetty",
|
"Autoplay is suspended": "Autoplay keskeytetty",
|
||||||
|
"{1} (from edge: {2})": "{1} (from edge: {2})",
|
||||||
"Audio Player": "Audiosoitin",
|
"Audio Player": "Audiosoitin",
|
||||||
"Video Player": "Videosoitin",
|
"Video Player": "Videosoitin",
|
||||||
"Play": "Toista",
|
"Play": "Toista",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Cancel",
|
"Cancel": "Cancel",
|
||||||
"Up Next": "Up Next",
|
"Up Next": "Up Next",
|
||||||
"Autoplay is suspended": "Autoplay is suspended",
|
"Autoplay is suspended": "Autoplay is suspended",
|
||||||
|
"{1} (from edge: {2})": "{1} (from edge: {2})",
|
||||||
"Audio Player": "Lecteur audio",
|
"Audio Player": "Lecteur audio",
|
||||||
"Video Player": "Lecteur vidéo",
|
"Video Player": "Lecteur vidéo",
|
||||||
"Play": "Lecture",
|
"Play": "Lecture",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Sguir dheth",
|
"Cancel": "Sguir dheth",
|
||||||
"Up Next": "Up Next",
|
"Up Next": "Up Next",
|
||||||
"Autoplay is suspended": "Chaidh a’ chluiche fhèin-obrachail a chur à rèim",
|
"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",
|
"Audio Player": "Cluicheadair fuaime",
|
||||||
"Video Player": "Cluicheadair video",
|
"Video Player": "Cluicheadair video",
|
||||||
"Play": "Cluich",
|
"Play": "Cluich",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Cancel",
|
"Cancel": "Cancel",
|
||||||
"Up Next": "Up Next",
|
"Up Next": "Up Next",
|
||||||
"Autoplay is suspended": "Autoplay is suspended",
|
"Autoplay is suspended": "Autoplay is suspended",
|
||||||
|
"{1} (from edge: {2})": "{1} (from edge: {2})",
|
||||||
"Audio Player": "Reprodutor de audio",
|
"Audio Player": "Reprodutor de audio",
|
||||||
"Video Player": "Reprodutor de vídeo",
|
"Video Player": "Reprodutor de vídeo",
|
||||||
"Play": "Reproducir",
|
"Play": "Reproducir",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Odustani",
|
"Cancel": "Odustani",
|
||||||
"Up Next": "Sljedeći",
|
"Up Next": "Sljedeći",
|
||||||
"Autoplay is suspended": "Automatska reprodukcija je obustavljena",
|
"Autoplay is suspended": "Automatska reprodukcija je obustavljena",
|
||||||
|
"{1} (from edge: {2})": "{1} (from edge: {2})",
|
||||||
"Audio Player": "Audio player",
|
"Audio Player": "Audio player",
|
||||||
"Video Player": "Video player",
|
"Video Player": "Video player",
|
||||||
"Play": "Pokreni",
|
"Play": "Pokreni",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Cancel",
|
"Cancel": "Cancel",
|
||||||
"Up Next": "Up Next",
|
"Up Next": "Up Next",
|
||||||
"Autoplay is suspended": "Autoplay is suspended",
|
"Autoplay is suspended": "Autoplay is suspended",
|
||||||
|
"{1} (from edge: {2})": "{1} (from edge: {2})",
|
||||||
"Audio Player": "Hanglejátszó",
|
"Audio Player": "Hanglejátszó",
|
||||||
"Video Player": "Videólejátszó",
|
"Video Player": "Videólejátszó",
|
||||||
"Play": "Lejátszás",
|
"Play": "Lejátszás",
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
"Current Time": "Waktu Saat Ini",
|
"Current Time": "Waktu Saat Ini",
|
||||||
"Duration": "Durasi",
|
"Duration": "Durasi",
|
||||||
"Remaining Time": "Waktu yang Tersisa",
|
"Remaining Time": "Waktu yang Tersisa",
|
||||||
"Stream Type": "Tipe Pemutaran",
|
"Stream Type": "Tipe Pemutar",
|
||||||
"LIVE": "LANGSUNG",
|
"LIVE": "LANGSUNG",
|
||||||
"Loaded": "Dimuat",
|
"Loaded": "Dimuat",
|
||||||
"Progress": "Progres",
|
"Progress": "Progres",
|
||||||
|
@ -100,5 +100,5 @@
|
||||||
"Caption Settings Dialog": "Dialog Pengaturan Keterangan",
|
"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.",
|
"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.",
|
"End of dialog window.": "Akhir bilah.",
|
||||||
"{1} is loading.": "{1} sedang dimuat."
|
"{1} is loading.": "{1} sedang loading"
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Cancel",
|
"Cancel": "Cancel",
|
||||||
"Up Next": "Up Next",
|
"Up Next": "Up Next",
|
||||||
"Autoplay is suspended": "Autoplay is suspended",
|
"Autoplay is suspended": "Autoplay is suspended",
|
||||||
|
"{1} (from edge: {2})": "{1} (from edge: {2})",
|
||||||
"Audio Player": "Tónlistarspilari",
|
"Audio Player": "Tónlistarspilari",
|
||||||
"Video Player": "Myndbandsspilari",
|
"Video Player": "Myndbandsspilari",
|
||||||
"Play": "Afspilun",
|
"Play": "Afspilun",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Cancel",
|
"Cancel": "Cancel",
|
||||||
"Up Next": "Up Next",
|
"Up Next": "Up Next",
|
||||||
"Autoplay is suspended": "Autoplay is suspended",
|
"Autoplay is suspended": "Autoplay is suspended",
|
||||||
|
"{1} (from edge: {2})": "{1} (from edge: {2})",
|
||||||
"Audio Player": "Riproduttore Audio",
|
"Audio Player": "Riproduttore Audio",
|
||||||
"Video Player": "Riproduttore Video",
|
"Video Player": "Riproduttore Video",
|
||||||
"Play": "Riproduci",
|
"Play": "Riproduci",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "キャンセル",
|
"Cancel": "キャンセル",
|
||||||
"Up Next": "Up Next",
|
"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": "再生",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Cancel",
|
"Cancel": "Cancel",
|
||||||
"Up Next": "Up Next",
|
"Up Next": "Up Next",
|
||||||
"Autoplay is suspended": "Autoplay is suspended",
|
"Autoplay is suspended": "Autoplay is suspended",
|
||||||
|
"{1} (from edge: {2})": "{1} (from edge: {2})",
|
||||||
"Audio Player": "Imeɣri n imesli",
|
"Audio Player": "Imeɣri n imesli",
|
||||||
"Video Player": "Imeɣri n uvidyu",
|
"Video Player": "Imeɣri n uvidyu",
|
||||||
"Play": "Urar",
|
"Play": "Urar",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Cancel",
|
"Cancel": "Cancel",
|
||||||
"Up Next": "Up Next",
|
"Up Next": "Up Next",
|
||||||
"Autoplay is suspended": "Autoplay is suspended",
|
"Autoplay is suspended": "Autoplay is suspended",
|
||||||
|
"{1} (from edge: {2})": "{1} (from edge: {2})",
|
||||||
"Audio Player": "Lydspiller",
|
"Audio Player": "Lydspiller",
|
||||||
"Video Player": "Videospiller",
|
"Video Player": "Videospiller",
|
||||||
"Play": "Spill av",
|
"Play": "Spill av",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Cancel",
|
"Cancel": "Cancel",
|
||||||
"Up Next": "Up Next",
|
"Up Next": "Up Next",
|
||||||
"Autoplay is suspended": "Autoplay is suspended",
|
"Autoplay is suspended": "Autoplay is suspended",
|
||||||
|
"{1} (from edge: {2})": "{1} (from edge: {2})",
|
||||||
"Audio Player": "Audiospeler",
|
"Audio Player": "Audiospeler",
|
||||||
"Video Player": "Videospeler",
|
"Video Player": "Videospeler",
|
||||||
"Play": "Afspelen",
|
"Play": "Afspelen",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Cancel",
|
"Cancel": "Cancel",
|
||||||
"Up Next": "Up Next",
|
"Up Next": "Up Next",
|
||||||
"Autoplay is suspended": "Autoplay is suspended",
|
"Autoplay is suspended": "Autoplay is suspended",
|
||||||
|
"{1} (from edge: {2})": "{1} (from edge: {2})",
|
||||||
"Audio Player": "Lydspelar",
|
"Audio Player": "Lydspelar",
|
||||||
"Video Player": "Videospelar",
|
"Video Player": "Videospelar",
|
||||||
"Play": "Spel av",
|
"Play": "Spel av",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Cancel",
|
"Cancel": "Cancel",
|
||||||
"Up Next": "Up Next",
|
"Up Next": "Up Next",
|
||||||
"Autoplay is suspended": "Autoplay is suspended",
|
"Autoplay is suspended": "Autoplay is suspended",
|
||||||
|
"{1} (from edge: {2})": "{1} (from edge: {2})",
|
||||||
"Audio Player": "Lector àudio",
|
"Audio Player": "Lector àudio",
|
||||||
"Video Player": "Lector vidèo",
|
"Video Player": "Lector vidèo",
|
||||||
"Play": "Lectura",
|
"Play": "Lectura",
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
"Cancel": "Cancel",
|
"Cancel": "Cancel",
|
||||||
"Up Next": "Up Next",
|
"Up Next": "Up Next",
|
||||||
"Autoplay is suspended": "Autoplay is suspended",
|
"Autoplay is suspended": "Autoplay is suspended",
|
||||||
|
"{1} (from edge: {2})": "{1} (from edge: {2})",
|
||||||
"Audio Player": "Odtwarzacz audio",
|
"Audio Player": "Odtwarzacz audio",
|
||||||
"Video Player": "Odtwarzacz wideo",
|
"Video Player": "Odtwarzacz wideo",
|
||||||
"Play": "Odtwórz",
|
"Play": "Odtwórz",
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user